I am trying to make a simple form in MX04 that controls the timeline.
Basically, the user will make a selection from a list of radio buttons, click submit and will be directed to a place in the timeline depending on his selection.
Could someone PLEASE take the minute to explain this to me …
I have searched the forums and found something that I thought was what I needed, but I’m still dead in the water.
Here is what I’ve got so far:
2 radio buttons on the stage, frame one. Both in group radioGroup. Labeled Yes and No and with data button1 and button2 respectively.
There is a stop(); on frame 1.
On the SUBMIT button I have the following code:
on (release) {
if (radioGroup.selectedData=button1) {
_root.gotoAndStop(2);
}
if (radioGroup.selectedData=button2) {
_root.gotoAndStop(3);
}
}
Please help … obviously I’m missing SOMETHING but for the life of me can’t figure it out. Thanks in advance.