Is there any way to make an "action" happen at the start of any song regardless of whether it has POI's or not?
Inviato Tue 20 Aug 19 @ 9:44 pm
Yes but tell me what to want to happen.
Inviato Tue 20 Aug 19 @ 9:59 pm
I would like the action to "push" an OS2L button at the start of every song.
Inviato Tue 20 Aug 19 @ 10:07 pm
This could be on a custom button to have this automatic behaviour switched.
deck master repeat_start 'rsPulseWatch' ? deck master repeat_stop 'rsPulseWatch' : deck master repeat_start 'rsPulseWatch' 190ms & deck 1 load_pulse ? deck 2 load_pulse ? nothing : actionForDeck2 : actionForDeck1 & deck 2 load_pulse ? nothing : actionForDeck2
Or it could be added to Oninit of your controller/keyboard mapping [but can't be switched
deck master repeat_start 'rsPulseWatch' 190ms & deck 1 load_pulse ? deck 2 load_pulse ? nothing : actionForDeck2 : actionForDeck1 & deck 2 load_pulse ? nothing : actionForDeck2
A repeating script is called every 190ms and looks for load_pulse going false [load_pulse switches to false for 200ms when a deck is loaded], when false it calls the action.
deck master repeat_start 'rsPulseWatch' ? deck master repeat_stop 'rsPulseWatch' : deck master repeat_start 'rsPulseWatch' 190ms & deck 1 load_pulse ? deck 2 load_pulse ? nothing : actionForDeck2 : actionForDeck1 & deck 2 load_pulse ? nothing : actionForDeck2
Or it could be added to Oninit of your controller/keyboard mapping [but can't be switched
deck master repeat_start 'rsPulseWatch' 190ms & deck 1 load_pulse ? deck 2 load_pulse ? nothing : actionForDeck2 : actionForDeck1 & deck 2 load_pulse ? nothing : actionForDeck2
A repeating script is called every 190ms and looks for load_pulse going false [load_pulse switches to false for 200ms when a deck is loaded], when false it calls the action.
Inviato Tue 20 Aug 19 @ 10:11 pm
Thanks! I'm going to give this a try.
Inviato Tue 20 Aug 19 @ 10:18 pm
Good good, if you find that load_pulse doesn't give the results you want there's always, load_pulse_active [same kind of thing but returns true when a loaded track first goes into the mix] the script would have to be juggled with a little but it's the same sort of thing.
Inviato Tue 20 Aug 19 @ 10:37 pm