Hello guys, does anyone know the expression to trigger play in a CHOP Execute DAT?
Imagine my perform mode starts at frame 1, stopped, and I wanna trigger “Play” from the Perform window.
How to control the entire project with buttons, I mean…
I need one button to press “Play” and the other to press “Pause”
Could I control the “get_state” CHOP inside /local/time? If get_state = 0 the software is paused, if it is 1 the software is playing
I think I gotta set a constant and change that expression?
So when I press Play button on my UI, it triggers 1 on my constant, and when I press Stop button it triggers 0…
I gotta create an expression to change the column highlighted above with 0 or 1 right?
You can control the timeline with Python commands like this:
me.time.play = 0
pauses playback
me.time.play = 1
resumes playback
me.time.frame= 1
rewinds timeline to frame 1
1 Like
That’s it, thanks a lot mate