I'm trying to use the RunScript Action in Final Builder and I can't seem to make any changes to variables e.g.
function OnExecute(Action, Action)
FBVariables.TestMyVariable = "42"
What am I doing wrong?
I'm trying to use the RunScript Action in Final Builder and I can't seem to make any changes to variables e.g.
function OnExecute(Action, Action)
FBVariables.TestMyVariable = "42"
What am I doing wrong?
Using VBScript you can set the FinalBuilder value directly.
MyTestVariable = "Hello World"
No need to prefix it with anything.
In a javascript action in FB, you can do this:
FBVariables.MyVariable = true; // or whatever