attachMovie the duplicate
attachMovie the duplicate
Out of context: Reply #7
- Started
- Last post
- 13 Responses
- Anarchitect0
//an easy way to make a menu.
nav = Array("section1", "section2", "section3");
for(i=0; i < nav.length; i++){
label = nav[i];this.attachMovie["symbol", "symbol"+i, i++, {label:label});
}
//inside your symbol, you could make a textfield that show your label and an onPress event to load your content
textBox.text = label;
this.onPress = function(){
trace(label+".swf");
_root.content.loadMovie(label...
}