Turn your Mobile Apps into m-commerce apps – Learn More!

You're Browsing As A Guest! Register Now...
Become an Expert!

Join 414,937 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 2,673 people online right now.Registration is fast and FREE... Join Now!



Radio Buttons.

#1 Dilerious  Icon User is offline

  • D.I.C Regular
  • Icon

Reputation: 1
  • View blog
  • Posts: 277
  • Joined: 30-December 05


Dream Kudos: 365

Share |

Radio Buttons.

Posted 15 September 2006 - 07:49 AM

I'm having coding radio buttons in flash.
I know it would have an If statement but I can't figure it out.
I'm trying to make it.
If the correct radio button is selected and then they click a button it will go to a new frame.
Was This Post Helpful? 0
  • +
  • -


#2 sandro  Icon User is offline

  • New D.I.C Head
  • Pip

Reputation: 1
  • View blog
  • Posts: 19
  • Joined: 01-September 06


Dream Kudos: 0

Re: Radio Buttons.

Posted 15 September 2006 - 03:11 PM

View PostDilerious, on 15 Sep, 2006 - 08:49 AM, said:

I'm having coding radio buttons in flash.
I know it would have an If statement but I can't figure it out.
I'm trying to make it.
If the correct radio button is selected and then they click a button it will go to a new frame.


hi Dilerious,

have a look at the sample attached.
all comments in the file.

//GREEN
green_rb.data = 5;
green_rb.label = "green";
green_rb.groupName = "colors";

//RED
red_rb.data = 6;
red_rb.label = "red";
red_rb.groupName = "colors";

//BLUE
blue_rb.data = 7;
blue_rb.label = "blue";
blue_rb.groupName = "colors";

//YELLOW
yellow_rb.data = 8;
yellow_rb.label = "yellow";
yellow_rb.groupName = "colors";

// THE DATA CORRESPONDS TO THE FRAME WE WANT TO SEND THE PLAYHEAD TO
my_btn.onRelease = function() {
	myFrame = colors.selectedData;
	gotoAndStop(myFrame);
};


good luck
Sandro

Attached File(s)


Was This Post Helpful? 0
  • +
  • -

#3 pioSko  Icon User is offline

  • still.dreaming
  • Icon

Reputation: 18
  • View blog
  • Posts: 1,888
  • Joined: 06-June 03


Dream Kudos: 225

Re: Radio Buttons.

Posted 25 September 2006 - 10:56 PM

Thank you for the reply, Sandro. The attachment did a great job answering Dilerious' question. In the future, try to answer the question in the post, however. That way everybody can see it straight away without the need for downloading and opening Flash.

See you around :)
Was This Post Helpful? 0
  • +
  • -



Fast Reply

  

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users