Missing Escape Character
[MA3 1.8.1]
I am trying to use LUA to set a cue command to run LUA code.
For example, I want the command to be:
LUA 'Printf("my name")'
So I run a command:
Set seq x cue y command="LUA 'Printf("my name")'"
This does NOT work, since the " character before "my name", is
regarded as the closing ".
Is there a way to escape this " character?
In lua the escape character is \
But grandMA3 Syntax doesn't respect that.
So this doesn't work.:
set seq x cue y command="LUA 'Printf(\"my name\")'"
When I run it I get a command with the value:
Lua 'Printf(
1) Is there a secret escape character?
2) Is this simply a missing basic feature?