I want something to switch my images like switching themes, but I want only one button to cycle through choices.
Ive got
global
var frame = 0;
System.start of Layout
color1 set animation speed to 0
then
On button clicked
color1 set animation frame to 1
//subevent
System/frame=1 color set animation frame to 2
System/frame=2 color set animation frame to 3
System/frame=3 color set animation frame to 4
It doesn't really work. It goes from 0,1,4, instead of 0,1,2,3,4
maybe I need an array?
Thanks Anyone.