Post
RE: Macros & Variable Handling
to my understanding:
You can see the difference between Cmd() and CmdIndirect() in the system monitor
Cmd('Fixture Thru')
-> LUA [timestamp] OK: Fixture Thru
CmdIndirect('Fixture Thru')
-> MainTask [timestamp] OK: Fixture Thru
When/why does is matter in which thread the commandline syntax is executed?
Cmd('Login')
-> LUA [timestamp] Attempt to call a UI function from a non-UI thread (LUA)
-> LUA [timestamp] Failed: Login
CmdIndirect('Login')
-> Login dialog is displayed
-> MainTask [timestamp] OK:…
You can see the difference between Cmd() and CmdIndirect() in the system monitor
Cmd('Fixture Thru')
-> LUA [timestamp] OK: Fixture Thru
CmdIndirect('Fixture Thru')
-> MainTask [timestamp] OK: Fixture Thru
When/why does is matter in which thread the commandline syntax is executed?
Cmd('Login')
-> LUA [timestamp] Attempt to call a UI function from a non-UI thread (LUA)
-> LUA [timestamp] Failed: Login
CmdIndirect('Login')
-> Login dialog is displayed
-> MainTask [timestamp] OK:…