I used to be able to pulse a clickable parameter from tscript. How do i call one from python? For example, I’d like to be able to reset the Record CHOP. How do I reset it from python? op(‘record’).par.reset=1 doesn’t work. Also, is there a concept of “pulsing” a parameter in python like there was in tscript?
Thanks,
Michael
Yup!
op(‘opname’).par.parname.pulse(1)
Or sorry, if it’s a button parameter, you can use click() on it instead. Pulse is for integer/float parameters.