Hi everyone,
I am trying to handle the passed arguments when I launch the app from command line but I could not get it working.
I created MyTestApp.app with new Mac Os X exporting feature.
I am launching it with the following command on a Mac Terminal:
open -a MyTestApp.app --args test=123
It launches perfectly.
In my main.lua for MyTestApp.app, I tried to handle it as follows :
local launchArgs = ...
launchArgs are always nil.
Any ideas?