![]() |
Quake II Help |
Setting command line parameters via AppleScript |
You can set the command line parameters with the "run" command. The syntax for the "run" command is as follows: |
tell application "Quake II" run end tell |
Using the command "run params String" will start the Quake II application with the command line parameters stored in "String". The following example will tell the application to start with the command line parameters "+set game ROGUE". |
tell application "Quake II" run params "+set game ROGUE" end tell |
Tell me more |