Hi, D W,
you can set up a variable (for example var with initial value 0) which will be incremented on each button click. Then there should be action sequence like that, attached to button click event ( _ means tab):
VARIABLE (var, #var+1)
IF (#var==1)
_ DISPLAY (first object)
IF (#var==2)
_ DISPLAY (second object)
and so on.
Hi, D W,
you can set up a variable (for example var with initial value 0) which will be incremented on each button click. Then there should be action sequence like that, attached to button click event ( _ means tab):
VARIABLE (var, #var+1)
IF (#var==1)
_ DISPLAY (first object)
IF (#var==2)
_ DISPLAY (second object)
and so on.