On 12/7/12 4:32 PM, J. Landman Gay wrote:
Try:
local sOption
on thisHandler
put the label of btn "myOptiionMenu" into sOption
end test
on otherHandler theta
do "put the" && sOption && "of" && theta
end otherHandler
Or shorter, to avoid the script local variable, read the option button
directly:
on otherHandler theta
do "put the" && the label of btn "myOptionMenu" && "of" && theta
end otherHandler
--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode