Code: Select all
on mouseUp
create button "test"
set the menuMode of it to option
set showName of it to false
set text of it to "hello"&return&"goodbye"
set menuLines of it to 2
end mouseUp
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
on mouseUp
create button "test"
set the menuMode of it to option
set showName of it to false
set text of it to "hello"&return&"goodbye"
set menuLines of it to 2
end mouseUp
Code: Select all
on mouseUp
create button "test"
set the style of it to popup -- add
set the menuMode of it to option
set showName of it to false
set text of it to "hello"&return&"goodbye"
set menuLines of it to 2
end mouseUp
Code: Select all
on mouseUp
set the properties of the templateButton to the properties of btn 2
create btn "xx"
end mouseUp