I want to use BEATSLICER on my Twitch. I have managed to figure out how to map it to a pad by using this line.
FX_ON: var '$shift' ? BEATSLICER select +1 : effect "BEATSLICER" active
I probably don't need the shift portion but I copied it from elsewhere.
What I want to do is be able to assign each of the loop rolls from BEATSLICER to each pad. So Loop Roll 1is on 1 and so on.
But I cannot for the life of me figure out how to control those.
FX_ON: var '$shift' ? BEATSLICER select +1 : effect "BEATSLICER" active
I probably don't need the shift portion but I copied it from elsewhere.
What I want to do is be able to assign each of the loop rolls from BEATSLICER to each pad. So Loop Roll 1is on 1 and so on.
But I cannot for the life of me figure out how to control those.
Posté Sat 13 Apr 13 @ 5:13 am
you need to map it so you are controlling the button press of the effect eg.
effect 'BEATSLICER' button 1 1 while_pressed
if you want to introduce a slip mode you could do something like this
var 'slipSlice' ? down ? effect 'BEATSLICER' button 1 1 : effect 'BEATSLICER' button 9 1 : effect 'BEATSLICER' button 1 1 while_pressed
then on a separate button map this to enable/disable the slip
toggle 'slipSlice'
if you wanted to you could map this to the effect active button so if you hold the button for half a second then release you will activate the 'slipSlice' mode and make the led blink if the effect is active, if you hold for less than half a second you will activate/deactivate the effect eg..
holding 500ms ? var 'slipSlice' 1 ? set 'slipSlice' 0 & effect 'BEATSLICER' active on ? blink 250ms : off : set 'slipSlice'1 & effect 'BEATSLICER' active on : effect 'BEATSLICER' active & var 'slipSlive' ? effect 'BEATSLICER' active on ? blink 250ms : off : on
effect 'BEATSLICER' button 1 1 while_pressed
if you want to introduce a slip mode you could do something like this
var 'slipSlice' ? down ? effect 'BEATSLICER' button 1 1 : effect 'BEATSLICER' button 9 1 : effect 'BEATSLICER' button 1 1 while_pressed
then on a separate button map this to enable/disable the slip
toggle 'slipSlice'
if you wanted to you could map this to the effect active button so if you hold the button for half a second then release you will activate the 'slipSlice' mode and make the led blink if the effect is active, if you hold for less than half a second you will activate/deactivate the effect eg..
holding 500ms ? var 'slipSlice' 1 ? set 'slipSlice' 0 & effect 'BEATSLICER' active on ? blink 250ms : off : set 'slipSlice'1 & effect 'BEATSLICER' active on : effect 'BEATSLICER' active & var 'slipSlive' ? effect 'BEATSLICER' active on ? blink 250ms : off : on
Posté Sat 13 Apr 13 @ 6:00 am