pangoscript for fx flash button

How do I use pangoscript so I can make a flash midi button of the FX slider in beyond.
Have to bring the slider to 100% en then it should bring back to the value that the FX slider had at that moment.

also for the same but for the fx speed

thanks
 
Go to a Midi button,

on pangoscript to MIDI on the "note on" tab you set:

Code:
FXClick 1,1

Where the first 1, is the row, and the second 1 the cue in that row.

on pangoscript to MIDI on the "note off" tab you set:

Code:
FXClick 1,1
 
thank you

I mean:
I have the FX action fader and want to make a flash button that it just goes to 100% and thereafter returned to the value that the fader is on.
 
I've another question but it's related to the question above, so I will ask it in this topic.
When I will make a flashbutton for FX Action (for example fader 1) I use the pangoscript:
Note on: SetFXAction 1, 100
Note off: SetFXAction 1,0

This works only in the first tab mode (Master mode) not in the second (Cue mode) or third (Zone mode).
Is it possible to get it work in the "Zone mode"?
 
try this placing on the line before setfxaction:

Code:
ControlSelZones
SetFXAction 1, 100

This way you only select the current active zones.
 
I made that using these script in a midi controller fader to control fx action:
GLOBALVAR fxa1
fxa1 = ExtValue(0,100)
SetFXAction 1, fxa1

and this script in the midi flash button:
ControlMaster
var bool
bool = ExtValue(0,1)
if (bool=1) SetFXAction 1, 100
if (bool=0) SetFXAction 1, fxa1

The same is applied for a momentary stop in effect and animation speed :)
 
Maybe is the GLOBALVAR something new in beyond 3?

That exact same code is working nice here in version 3.0 build 495, the one avaliable at pangolin website last week :)
 
i do this:

fader of the fx action:
GLOBALVAR fxa1
fxa1 = ExtValue(0,100)
SetFXAction 1, fxa1


and this script in the midi flash button:
ControlMaster
var bool
bool = ExtValue(0,1)
if (bool=1) SetFXAction 1, 100
if (bool=0) SetFXAction 1, fxa1


it works for fx1 but not for the rest
.
example:
i want to set my fader on 45% and than flash to 100% with the button, after a relaise te button i want the fader to take his 45% back.
 
Back
Top