J. Landman Gay wrote:
Charles Szasz wrote:
I have been unable to set the labels of radio buttons in a group from an
Option Menu. I do not understand why the following script does not
work for
two radio buttons, R1, R2, in a group "radio" from a Option Menu button:
on menuPick pChosen
switch
case "choice 1"
set the label of button "R1" of group "radio" to "Hello"
break
case "choice 2"
set the label of button "R2" of group "radio" to "Bye"
break
end switch
end menuPick
Anyone have any suggestions?
Unless the menu items in the button really are "Choice 1" and "Choice 2"
then nothing in that script is going to fire. Replace the "choice"
statements with the actual names of your button's menu items.
Oh, also, I just noticed the syntax is wrong. You can use either of these:
switch pChosen
case "whatever"
break
etc
or this:
switch
case pChosen = "whatever"
break
case pChosen = "whatever2"
--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software | http://www.hyperactivesw.com
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution