montypython1
Technical User
I need to make a button blink for about 5 to 10 seconds.
Any ideas?
Thanks,
Dave
Any ideas?
Thanks,
Dave
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
with this
.TotalIntervals = .TotalIntervals + 1
if .TotalIntervals > 20 && Change 20 to control time for blinking
.TotalIntervals = 0
.Interval = 0
*!* place code to put button back to normal here (color, font, or whatever you changed to make it blink)
else
*!* place code to make button blink is here
endif
endwith