how to assign +/- 1 bpm to pad

1.25K viewsCSS Questions
0

Hello,

Is there a reaction to assign :

Pad 1 > +1 bpm
Pad 2 > -1 bpm

Thank you !

admin Changed status to publish
Attached Files:
0

live object model > song > set tempo

Change the ‘number’ param to custom code and enter:
self.song().tempo + 1
or
self.song().tempo – 1

Or the full syntax is:
self.song().tempo = self.song().tempo + 1
self.song().tempo = self.song().tempo – 1

admin Changed status to publish
Attached Files:
You are viewing 1 out of 3 answers, click here to view all answers.