A Flash Developer Resource Site














Internet Commerce

Partners & Affiliates














Developer Channel

internet.com


Featured Flash FLA
Gallery Downloads 11336 Flash Movies | 2 New Flash Movies Added
What's New | Top 100

Featured FLA

» Author: Surjit Dhami
» Title: Book
» Description: Book
» More by Surjit Dhami


Random FLAs | Add Flash Movie
Featured Flash Site
Gallery Downloads 5848 Flash Sites | 0 New Flash Links
What's New | Top 100 Flash Site

Featured Site

» Posted in the Flash Kit Links section
» Title: All-American Rejects
» Description: Get to know this great band by exploring their "practice room".


Random Links | Add your own Flash Related Links
Flash Tutorials 1277 Tutorials 7 New Tutorials Added!
What's New | Top100

» Create xml slideshow with free template
» How to Insert a Multilingual Subtitle Into Your Flash Video Studio
» How to Create Cool Halloween Slideshow
» Debugging flash using the Firebug console
» Create Flash Slideshow on Blogger
» FLASH TRICKS IN WEB ADVERTISING: FLASH BANNERS
» HTML Photo Gallery Tutorial
» Create your first flash site – PART 1
» How to Make a Flash Photo Gallery
» Unknown Tag: Title10
Random Tutorial | Add Site

Sr Instructional Designer D2L-Moodle,Clearance
WSI Nationwide, Inc.
US-NJ-Fort Monmouth

Justtechjobs.com Post A Job | Post A Resume


Tutorials Home What's New Top Rated Submit myTutes Random!

Search Tutorials


Tutorials Tutorials » Actionscripting/Basic

Categories Actionscript for Flash 5 dummies - Creating radio buttons
Author: Patrick Mineault

 
Page 5
«prev 1 2 3 4 5 6 next»

Step 4: Putting it all together

All right, we've got plenty of pretty radio buttons now, but the problem is, they don't do anything! Let's determine what our parent radio button group must be able to do.

First, it must be able to respond properly to the reportClick() function we defined earlier. This function must be able to select the clicked radio button, if it's not selected already.

We also need to be able to select a radio button by default. Finally, our parent clip should be able to tell us which radio button is selected.

Let's see how this all translates into actionscript. The old parts of the script are grayed out:

onClipEvent(load){
 labels = new Array();
 labels[0] = "potato";
 labels[1] = "potato";
 labels[2] = "potato";
 labels[3] = "Zimbabwe";
 numButtons = labels.length;
 vSpacing = 20;
 default = 3;
	for(i = 0; i < numButtons; i++){
 if(i != 0){
 radioButton0.duplicateMovieClip("radioButton" add i, i);
 this["radioButton" add i]._y += i*vspacing;
 }
 this["radioButton" add i].label = labels[i];
 }

 select(default);
 function reportClick(clicked){
 if(clicked != selected){
 select(clicked);
 }
 }
 function select(clicked){
 for(i = 0; i < numButtons; i++){
 this["radioButton" add i].gotoAndStop(1);
 }
 this["radioButton" add clicked].gotoAndStop(2);
 selected = clicked;
 }
 function getSelectedNum(){
 return selected;
 }
 function getSelectedLabel(){
 return labels[selected];
 }
}

Let's concentrate on the new parts of the script. We start off by defining the default selected option, in this case radio button #2. Moving down a bit, we make a call to the select function in order to select this default option.

What this function does, as you can see, is that it first loops through all of the radio buttons and unselects them one by one by sending them to their first frame. Next, it simply selects the appropriate radio button by moving it to its second frame, and makes sure to remember which radio button is selected by placing its number in the selected variable.

Our reportClick() function also uses the select() function. It simply checks if the radio button that called it was already clicked, and it not, it asks the select() function to select it.

Finally, we added two extra functions, getSelectedNum() and getSelectedLabel(), in order to retrieve information from our radio button group, that is, the number of the selected radio button and its label.

In the sample movie at the top, I named my group of radio buttons "groupOfRB", and simply made a call to groupOfRB.getSelectedNum() and groupOfRB.getSelectedLabel() in order to know what option you had selected. Knowing this, I produced appropriate feedback for the selected options.

«prev 1 2 3 4 5 6 next»

» Level Intermediate

Added: : 2001-12-05
Rating: 7.42 Votes: 29
Hits: 3397
» Author
Patrick is a bored, bored 19 year old guy in desperate need of a girlfriend. He enjoys Flash, helping other people by writing tutorials, and has an almost creepy affection for blue squares. Come on girls, what are you waiting for?
» Download
Download the files used in this tutorial.
Download (18 kb)
Get conversion and unzipping tools for PC and Mac here!

» Forums
More help? Search our boards for quick answers!

Please rate this tutorial, 10 is the top rating, you can also click the comments link to read/write a review.
10 9 8 7 6 5 4 3 2 1
Read or Post Comments
 
   
 

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs