Hi,
I have a option menu with some options.
How to get the selected option into _selected
Thanks
Ivo
How to get the selected from a option menu
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: How to get the selected from a option menu
Dag Ivo,
one way is to have a "menupick" handler in any "menu" button:
Best
Klaus
one way is to have a "menupick" handler in any "menu" button:
Code: Select all
on menupick tMenuItem
## tMenuItem is the menuitem that the user has selected
switch ctMenuItem
case "whatever"
## do whatever---
break
case "another menutem..."
## ...
break
## etc...
end switch
end menupick
Klaus