Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Final Builder 中使用 RunScript Action,但我似乎无法对变量进行任何更改,例如
函数 OnExecute(动作,动作)
FBVariables.TestMyVariable = "42"
我究竟做错了什么?
使用 VBScript,您可以直接设置 FinalBuilder 值。
MyTestVariable = "Hello World"
不需要在它前面加上任何东西。
在 FB 中的 javascript 操作中,您可以执行以下操作:
FBVariables.MyVariable = true; // 管他呢