Startseite › Foren › Deutsches LiveCode-Forum › Livecode Standalone mit Parameter starten › Antwort auf: Livecode Standalone mit Parameter starten
Hi Torsten ,
lies mal den Eintrag “$” (keyword) im Dictionary, da solltest Du fündig werden. Das Wichtigste:
If you start up the application from the command line (on OS X, Unix or Windows systems), the command name is stored in the global variable $0 and any arguments passed on the command line are stored in numbered variables starting with the $ character. For example, if you start the application by typing the following shell command:
…
myrevapp -h name
…
then the global variable $0 contains “myrevapp” (the name of the application), $1 contains “-h”, and $2 contains “name”.
In Deiner Konsolenapp müsstest Du dann wohl diese Variablen direkt -> on startup abfragen und damit tun, was Du tun musst. 🙂
Gruß
Klaus