Button resetOnChange math input and clearOnReset

I want to use resetOnChange for a button in response to two math inputs.

the math inputs are labeled pmi2a and pmi2b
the button is labeled button2ab

Also, is there a way to have the math inputs clearOnReset when they are both connected to the same button?

Could you post a link to your activity and which slide you’re asking for help with?

Also, is there a way to have the math inputs clearOnReset when they are both connected to the same button?

I think you could use resetOnChange for both math inputs and set them to change on button press.

For example putting this in each input CL will clear them when the button is pushed.

resetOnChange: "${button2ab.pressCount}"

Unfortunately, it cleared every time I hit submit with that code as though I was double clicking the button. This did help me figure out how to tie answers to an existing submit button of a different math input. Thanks! :slight_smile:

If you want it to only every other time a button is clicked, I think this should work:

resetOnChange: "${numericValue("\floor(${button2ab.pressCount}/2)")}"

Try ceil instead of floor if it doesn’t change on the click you want.

mod(____,2) would work too, right?

No, that would change back and forth 0, 1, 0, 1… so it would reset every time it was pressed. Floor would be 0, 1, 1, 2, 2, 3, 3, 4, 4… and would only change when the number increases. Ceiling would be 1, 1, 2, 2…

Basically, resetOnChange resets every time your string changes.