Quick Sign In:  

Forum: VirtualDJ Technical Support

Topic: POI / Script only executable on specific decks
Hello,

I wanted some POI/Scripts to run only when played on decks 3 or 4, therefore when the track is played in decks 1 or 2 the POI should be ignored. So far I've tried the deck # play ? approach, which kind of works, but it has some flaws if both decks are playing, the POI is executed when deck 1 reach it no matter the position of deck 3 or 4, only when decks 3-4 are stopped the deck 1-2 ignores de POI.

It's even possible? If so, please help me to point me in the right direction. Thanks.
 

Posted Wed 09 Aug 23 @ 3:38 am
would action_deck x ? work for you?

Say, you wanted a 16 beat loop to only occur if the track was being played on deck 3 or deck 4, and nothing when on deck 1 and 2.. then something like.. may work.

action_deck 3 ? loop 16 ? nothing : loop 16 : action_deck 4 ? loop 16 ? nothing : loop 16 : nothing


OR

of the general form:

action_deck 3 ? POI ACTION : action_deck 4 ? POI ACTION : nothing



 

Posted Wed 09 Aug 23 @ 4:06 am
------
 

Posted Wed 09 Aug 23 @ 5:00 am
------
 

Posted Wed 09 Aug 23 @ 5:05 am
This is gold and it's exactly what I was looking for.

Thanks a lot!

Cheers!
 

Posted Wed 09 Aug 23 @ 5:11 am
Hi5 !
 

Posted Wed 09 Aug 23 @ 5:14 am