Hi, i'm after an effect that does the same as the SMX1_XF-FX but actually keeps the song in that place so when you stop the effect the song starts from that same spot.
Any help appreciated.
Any help appreciated.
Posted Fri 09 Sep 11 @ 3:02 am
you could use a simple loop. start with a 4 beat loop and than start deviding it in half, so it goes from 4 to 2 to 1 to 0.5 to 0.25 beats loop and so on.
map a button to " loop 50% " without the brackets, or use the on screen control. But with loop 50% you can get smaller loop values than through the on screen control
hope that helps
map a button to " loop 50% " without the brackets, or use the on screen control. But with loop 50% you can get smaller loop values than through the on screen control
hope that helps
Posted Fri 09 Sep 11 @ 10:21 pm
Thanks for the advice mate, have tried that although not quite to that extent but its not quite what im after.
Its hard to explain but basically want to pause the song but hold the momantary sound when you pause the song. I know it can be done its just working out how.
Its hard to explain but basically want to pause the song but hold the momantary sound when you pause the song. I know it can be done its just working out how.
Posted Sat 10 Sep 11 @ 2:04 am
you could try mapping something like this for a momentary loop while pressed
down ? loop 0.0078125 : loop_exit
if the loop size is too big you can continue dividing the number by two and use that number instead... the next number is 0.00380625
down ? loop 0.0078125 : loop_exit
if the loop size is too big you can continue dividing the number by two and use that number instead... the next number is 0.00380625
Posted Sat 10 Sep 11 @ 4:31 am