hello Guys
how assign an Exec Fader in temp in command line or LUA?
regardrs !
hello Guys
how assign an Exec Fader in temp in command line or LUA?
regardrs !
You can use rather Assign FaderTemp at Page x.xxx or Set Page x.xxx property 'Fader' 'Temp'
You can also use "Executor xxx" instead of "Page x.xxx"
For more information about the FaderTemp Keyword click here for the Manual Post!
And for lua simply use the Cmd("") command.
For example:
Cmd("Assign FaderTemp at Page x.xxx")
Thankx But my Script Don"t Work
You Can Help Me ??
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
require("gma3internal_fixtures");
function SimplePop(display_handle)
local NbG= Cmd("SelFix Group " .. TextInput("Numeros de Group?"))
Cmd (" At 100")
Cmd (" Attribute Dimmer")
Cmd (" Delay")
Cmd (" Delay 0.5 Thru 0 Thru 0.5")
local WS = Cmd("Store Executor " .. TextInput("Where Store? - Enter Executor Number"))
Cmd ("Assign FaderTemp At Executor 'WS'")
end
return SimplePo
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
You are mixing apples and flux capacitors.
Since basically all of your lines are Cmd's and given Andreas' Answer you can use the () to ask a directly on the command line and UserVars to store the answer so you can use it more then once, all without the need for lua.
So a macro like:
Should be equivalent (I haven't tested but should work).