Is something like this possible ?
deck 1 plays
custom button:
when deck 1 has reached cue point 7 > automatically start deck 2 at cue point 3
deck 1 plays
custom button:
when deck 1 has reached cue point 7 > automatically start deck 2 at cue point 3
Mensajes Sat 08 Mar 25 @ 5:15 pm
Yes that's pretty much the basis of how the routine padpage works.
Would probably be smarter to just have an action poi as cue 7 with a conditional that the custom button triggers.
poi var $conditional ? deck 2 hot_cue 3 : nothing
custom_button toggle $conditional
Would probably be smarter to just have an action poi as cue 7 with a conditional that the custom button triggers.
poi var $conditional ? deck 2 hot_cue 3 : nothing
custom_button toggle $conditional
Mensajes Sat 08 Mar 25 @ 5:25 pm
hi Locodog, that works very well !!!
But I want to use it alternately for Player 1 and vice versa for Player 2.
What and how do I need to add it ?
But I want to use it alternately for Player 1 and vice versa for Player 2.
What and how do I need to add it ?
Mensajes Sat 08 Mar 25 @ 5:48 pm
poi var $conditional ? action_deck 1 ? deck 2 hot_cue 3 : deck 1 hot_cue 3 : nothing
Mensajes Sat 08 Mar 25 @ 6:09 pm
@Locodog
works very well, how good that we have you !!
works very well, how good that we have you !!
Mensajes Sat 08 Mar 25 @ 6:16 pm
Hi Locodoc, my action poi for cue 7 is now as follows :
var $conditional ? action_deck 1 ? deck 2 hot_cue 3 & play_sync & phrase_sync 16 : deck 1 hot_cue 3 & play_sync & phrase_sync 16 : nothing
That works great !!
now I want to create an action poi for Cue 3 as follows:
deck 1 play ? mute : deck 2 play ? mute
but this only works for Player 1 not for Player 2 (what is wrong)
The new action poi should achieve the following >
when poi cue 7 is reached and poi cue 3 is triggered,
the last playing deck should be muted in poi cue 3 and vice versa.
var $conditional ? action_deck 1 ? deck 2 hot_cue 3 & play_sync & phrase_sync 16 : deck 1 hot_cue 3 & play_sync & phrase_sync 16 : nothing
That works great !!
now I want to create an action poi for Cue 3 as follows:
deck 1 play ? mute : deck 2 play ? mute
but this only works for Player 1 not for Player 2 (what is wrong)
The new action poi should achieve the following >
when poi cue 7 is reached and poi cue 3 is triggered,
the last playing deck should be muted in poi cue 3 and vice versa.
Mensajes Mon 10 Mar 25 @ 3:50 pm
var $conditional ? action_deck 1 ? deck 2 hot_cue 3 & play_sync & phrase_sync 16 & deck 1 mute : deck 1 hot_cue 3 & play_sync & phrase_sync 16 & deck 2 mute : nothing
like that?
Mensajes Mon 10 Mar 25 @ 4:00 pm
no, not like that.
The last playing deck should be muted immediately when the new deck plays, this should be triggered with the additional action poi cue 3
action point cue 3 > deck 1 play ? mute : deck 2 play ? mute
The last playing deck should be muted immediately when the new deck plays, this should be triggered with the additional action poi cue 3
action point cue 3 > deck 1 play ? mute : deck 2 play ? mute
Mensajes Mon 10 Mar 25 @ 4:21 pm
but the original script calls hot_cue 3 so, why not include it in the original script, I don't understand.
but if you want it on hot_cue 3, it could be this
action_deck 1 ? deck 2 mute : deck 1 mute
but if you want it on hot_cue 3, it could be this
action_deck 1 ? deck 2 mute : deck 1 mute
Mensajes Mon 10 Mar 25 @ 4:39 pm
unfortunately doesn't work like that.
I suspect this is due to the "mute" command which is switched on and off with each key click,
so that after playing both decks, both are muted
I suspect this is due to the "mute" command which is switched on and off with each key click,
so that after playing both decks, both are muted
Mensajes Mon 10 Mar 25 @ 5:03 pm
You're not really being clear in what you want.
Mensajes Mon 10 Mar 25 @ 5:11 pm
Sorry if I expressed myself in a misleading way but English is not my native language!
The whole thing is quite difficult to convey but I try to make it clearer.
Player 1 plays and reaches Cue 7 with the action point, at this moment Player 2 starts automatically, now Player 1 should be muted immediately, as soon as Player 2 reaches the action point Cue 7
Player 2 should be muted and so on.
The whole thing is quite difficult to convey but I try to make it clearer.
Player 1 plays and reaches Cue 7 with the action point, at this moment Player 2 starts automatically, now Player 1 should be muted immediately, as soon as Player 2 reaches the action point Cue 7
Player 2 should be muted and so on.
Mensajes Mon 10 Mar 25 @ 5:24 pm
var $conditional ? action_deck 1 ? deck 2 mute off & hot_cue 3 & play_sync & phrase_sync 16 & deck 1 mute on : deck 1 mute off & hot_cue 3 & play_sync & phrase_sync 16 & deck 2 mute on : nothing
like that then?
Mensajes Mon 10 Mar 25 @ 5:29 pm
You are the best, it works !!! thanks
Mensajes Mon 10 Mar 25 @ 5:39 pm