Putting a list into menuitems of a combo box button
Posted: Sun Jul 27, 2008 9:34 pm
Does anyone know what is the syntax for putting a list of menu items into the menuitem of a combo box button?
cheers, Glenn
cheers, Glenn
Questions and answers about the LiveCode platform.
https://www.forums.livecode.com/
Code: Select all
on mouseUp
put "choice1, choice2,choice3" into theList
replace comma with return in theList
set the text of button "name of combo box" to theList
end mouseUp