Sign In:     


Forum: VirtualDJ Technical Support

Topic: Onint Script
I want to have all four decks active with EQ10 and all four deck to have volume of fifty percent when I open VDJ. I have been using the script: deck all volume 0.50 & deck master effect_active "EQ10". Suddenly this is not working. What has changed, and how do I change with it?
 

Posted 3 days ago @ 2:06 am
you're calling eq10 toggle for master, after a "deck all"
What it's really doing in the script engine is this
[imagine eq10 for master is inactive at this point]

( deck 1 level 0.5 & deck master effect_active "EQ10" ) & ( deck 2 level 0.5 & deck master effect_active "EQ10" ) & ( deck 3 level 0.5 & deck master effect_active "EQ10" ) & ( deck 4 level 0.5 & deck master effect_active "EQ10" )

so first thread for deck 1 turns the master fx on, 2nd thread for deck 2 turns master fx off.
I covered this is script school topic "deck all"

do this instead
( deck all volume 0.50 ) & deck master effect_active "EQ10" on
deck all is contained in brackets to prevent later script being triggered 4 times
 

Thanks, that worked! The explanation is very helpful.