Put this code underneath a button to divide the current bpm

Code:
exit
OnChange:

if (value>0.5) goto HalfBPM
exit


HalfBPM:

IF ((((int(Master.BPM * 50000)) / 100000)<10))exit
Master.BPM=(int(Master.BPM * 50000))/100000

exit

Put this underneath a button to double the current bpm.

Code:
exit
OnChange:

if (value>0.5) goto BPM2X
exit


BPM2X:

IF ((((int(Master.BPM * 200000)) / 100000)>600)) exit
Master.BPM= (int(Master.BPM * 200000)) / 100000

exit
 
Last edited:
Is there a way to limit it to let's say a dmx signal and not to an fb4 signal that's controlling the lasers? So I can half/double on a dim effect but not on the lasers themselves? I use led pars and moving heads alongside with lasers with beyond and the universe for dmx triggers for those fixtures.
 
Back
Top