oh.l. i get it! ))) i made a movieclip on a higher level with 5 frames in it each containing a different shape object and a this.stop();, left the first frame empty, labeled it toDo, then added this to the second actions frame:
btn_var1.addEventListener( MouseEvent.CLICK, onClicked );function onClicked( e : MouseEvent ):void { //txt_main.text=globals.data.var1; toDo.gotoAndStop(2);}btn_var2.addEventListener( MouseEvent.CLICK, onClicked2 );function onClicked2( e : MouseEvent ):void { //txt_main.text=globals.data.var1; toDo.gotoAndStop(3);}btn_var3.addEventListener( MouseEvent.CLICK, onClicked3 );function onClicked3( e : MouseEvent ):void { //txt_main.text=globals.data.var1; toDo.gotoAndStop(4);}btn_hello.addEventListener( MouseEvent.CLICK, onClicked4 );function onClicked4( e : MouseEvent ):void { //txt_main.text=globals.data.var1; toDo.gotoAndStop(5);}this.stop();
THANKS!