Grad student researcher here - completely new to coding and trying to use LiveCode to set up a research experiment.
I'm trying to start with a main menu screen that has a pulldown menu with three items (each corresponding to a different card to jump to) and a confirmation button.
How can I keep the confirmation button disabled until a selection is made? I currently have the confirmation set to disabled and this code in the pulldown menu:
Code: Select all
on menuPick condselected
switch condselected
set the enabled of button "Confirm" to "true"
put condselected in gcondition
end switch
end menuPick