OOf - I tried all night to find a way to make the pattern wrap-around on itself with no joy
Its pretty darn hard for a total newb to understand all the programming jargon. Thanks to ndivuyo i'm tantalisingly close to realising the step-sequencer I desire but I need to get this wrap-around business done - desperatley! Hey, i'd be more than happy to pay for someone to help me out on this - I realise that it takes time and effort and brains to be good at this programming lark and i'm failing miserably.
I found this script posted by another Lemur master called Macciza but cannot for the life of me make it work!
Heres a script for shifting
shift(array, val) Manual Trigger
decl len = sizeof(array);
val = val % len;
if(val>0) array={subarray(array,len-val,val),subarray(array,0,len-val)};
if(val<0) array={subarray(array,abs(val),len-abs(val)),subarray(array,0,abs(val))};
return array;