Quick Sign In:  

Forum: VirtualDJ Technical Support

Topic: effect_disable_all disabling many but not everywhere
NicotuxHome userMember since 2014
"effect_disable_all" disables all effect in active deck
"deck n effect_disable_all" disables all effect in deck n
"deck master effect_disable_all" disables all effect in master deck
"deck all effect_disable_all disables" all effect in decks 1..n

how to disable all effects activated on 'mic' 'aux' and 'sample' (they currently are not affected)
effect_disable_all 'sampler'
effect_disable_all 'mic'
effect_disable_all 'aux'
none are working

not tested with 'release'
 

Posted Sat 25 Jul 20 @ 7:01 pm
Hi, Same issue on VirtualDJ 2023 b7692 PC.
I also tried "deck sampler effect_disable_all" > not working.
Regards,
David
 

Posted Mon 09 Oct 23 @ 6:18 pm
locoDogPRO InfinityModeratorMember since 2013
deck sampler isn't a specifier.

effects on sampler are on slot sampler
effect_active sampler

if you have fx on sampler but off slot you have to bruteforce it
here's a button
repeat_start rsSamplerWorkAround ? on & repeat_stop rsSamplerWorkAround : off & set $returnFX `get_effect_name sampler` & effect_select sampler 1 &
set $firstFX `get_effect_name sampler` & repeat_start rsSamplerWorkAround 25ms -1 & effect_active "sampler" off & effect_select sampler +1 & param_equal `get_var $firstFX` `get_effect_name sampler` ? repeat_stop rsSamplerWorkAround & get_var $returnFX & param_cast & effect_select sampler :


One issue with this button is if you have 2 copies of an fx under the same name then it gets trapped in a effect_select loop and you'll have to manually turn the button off
 

Posted Mon 09 Oct 23 @ 7:29 pm
Perfect, Thanks a lot, you're the best ;) This script works fine for me.
 

Posted Tue 10 Oct 23 @ 1:36 am
locoDogPRO InfinityModeratorMember since 2013
BUILD 7716 (2023-10-16)

-"effect_disable_all mic", "effect_disable_all aux" and "effect_disable_all sampler" scripts added
 

Posted Mon 16 Oct 23 @ 4:09 am