Groups | Blog | Home
all groups > flash actionscript > may 2004 >

flash actionscript : Combo Box



rythmikone
5/12/2004 9:22:44 PM
How can I use the ComboBox Component to tell a movie clip to go to a certain
frame when an item is selected from the combo box.

For example if I have a ComboBox with:
Apple Pie
Chocolate Cake
Ice Cream

When someone selects "Chocolate Cake", it tells a movie clip called
"desertsMC" to goto and play frame 2.

Thanks!
N Rohler
5/12/2004 9:38:03 PM
attached code will do

function getDessert():Void {
var selectedItem:Number = desserts_cb.value;
desserts_mc.gotoAndPlay(selectedItem);
}
AddThis Social Bookmark Button