Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I Have 3 Buttons, but1,but2,but3
i want to display these 3 buttons default
when i click but1 i want hide but1,and show the remaining two buttons,
if i click but2, i want to hide but2 and show reamining two buttons.
if cilck clear i want to display 3 buttons.
how to achive this?
regards,
kd
Set a variable, then change it through the button action(s).
Use this as the conditional show of each button.
for example:
let vShowButtons = 3
On click of button1 set vShowbuttons = 2
Set the condition to show the button when vShowbutton = 1 or 3
On click of button2 set vShowbuttons = 1
Set the condition to show the button when vShowbutton = 2 or 3
On click of button2 set vShowbuttons = 3
Set the condition to show the button when vShowbutton = 1, 2 or 3
Button 3 does not need a conditional show, but it's there just in case.
Take a look at the example
See if the attached helps.
Best,
Sunny