Is there any possibility of getting the 'fxProcessing' option as a VDJScript boolean?
Essentially it'd be great to map this to a button for easy toggling!
Essentially it'd be great to map this to a button for easy toggling!
发表时间 Sun 09 Sep 18 @ 12:22 am
The scripts are:
setting 'fxProcessing' 'pre-fader'
and
setting 'fxProcessing' 'post-fader'
... or maybe for a toggle:
setting 'fxProcessing' 'post-fader' ? setting 'fxProcessing' 'pre-fader' : setting 'fxProcessing' 'post-fader'
setting 'fxProcessing' 'pre-fader'
and
setting 'fxProcessing' 'post-fader'
... or maybe for a toggle:
setting 'fxProcessing' 'post-fader' ? setting 'fxProcessing' 'pre-fader' : setting 'fxProcessing' 'post-fader'
发表时间 Sun 09 Sep 18 @ 11:05 am
ah great!
didn't realise there was a setting action!
Cheers!
didn't realise there was a setting action!
Cheers!
发表时间 Mon 10 Sep 18 @ 1:21 am
Klausmogensen thanks for that script.
I've tried applying it to one of the default skin custom buttons, and the button light does not toggle on and off - so no way of knowing what state the fxprocessing setting is in... any ideas? :-)
I've tried applying it to one of the default skin custom buttons, and the button light does not toggle on and off - so no way of knowing what state the fxprocessing setting is in... any ideas? :-)
发表时间 Wed 06 Mar 19 @ 12:49 pm
Raniki wrote :
Klausmogensen thanks for that script.
I've tried applying it to one of the default skin custom buttons, and the button light does not toggle on and off - so no way of knowing what state the fxprocessing setting is in... any ideas? :-)
I've tried applying it to one of the default skin custom buttons, and the button light does not toggle on and off - so no way of knowing what state the fxprocessing setting is in... any ideas? :-)
You should be able to do a toggle on a custom button, including light using something like:
setting "fxProcessing" "Post-fader" ? on & setting "fxProcessing" : off & setting "fxProcessing"
发表时间 Wed 06 Mar 19 @ 2:58 pm
... and if you want it on 2 custom buttons, you can do something like
setting "fxProcessing" "Post-fader" ? off & setting "fxProcessing" "Pre-fader" : on
and
setting "fxProcessing" "Pre-fader" ? off & setting "fxProcessing" "Post-fader" : on
setting "fxProcessing" "Post-fader" ? off & setting "fxProcessing" "Pre-fader" : on
and
setting "fxProcessing" "Pre-fader" ? off & setting "fxProcessing" "Post-fader" : on
发表时间 Wed 06 Mar 19 @ 3:02 pm
Great that worked. Thanks Klausmogensen.
I had tried playing around with 'on' scripts etc but hadn't quite got the syntax right!
I had tried playing around with 'on' scripts etc but hadn't quite got the syntax right!
发表时间 Wed 06 Mar 19 @ 10:08 pm