Quote:
Originally Posted by oliveros_daryl
I need to make a combo box so that when u select one of the labels it takes you to other frame
|
Hi,
you need to add a listener to your combo box and from there call the frame label with the same name as the value choosen
Example:
Code:
var myListener:Object=new Object(); // a new listener
cb_name.addEventListener("change", myListener); //add listener to combobox
myListener.change=function(){ //function called
_root.gotoAndStop(cb_name.value); //go to the frame label based on the value of the item of the cb. Change the _root part as needed
}