New reset parameters / status of click

par.reset.click() doesn’t work anymore.

Is these the recommended replacements?
par.reset.pulse()
par.resetpulse.pulse()

Or more to the point, is use of click() being deprecated for parameters altogether?

Yes, its been replaced with pulse for all parameters.

hello,

how does resetpulse work? i can do this

op('speed1').par.resetpulse = 1

but that sets and holds the resetpulse parameter to 1. i want to cause a behavior , exactly like clicking the reset button.

when i try

op('speed1').par.resetpulse()

i get
TypeError: ‘td.Par’ object is not callable

???

i meant to write

op('speed1').par.resetpulse(1)

gives me

TypeError: ‘td.Par’ object is not callable

oh,

this works

op('speed1').par.reset.pulse(1)

but, i seems like i’m missing something with resetpulse.

i’m just an idiot today,

op('speed1').par.resetpulse.pulse(1)

NOT

op('speed1').par.resetpulse(1)

learning!

1 Like