Resetting Value on Timer

Hello,
I am trying to figure out how to reset the Value on the Timer Component when Running is false. I am binding Running to a tag. Just need help trying to reset.
Any help will be greatly appreciated

Put a script on the timers propertyChange function

if event.propertyName=='running' and not event.source.running:
	event.source.value=0
3 Likes