11/25/2010 5:47:31 AM
Title:
Button to target f.label 3 levels Up
does anyone Know how to link a button to a frame label that stands three levels Up
im Using this code
button1.addEventListener(MouseEvent.CLICK,play1);
function play1(event:MouseEvent):void{
MovieClip(parent).currentLabel;
gotoAndStop("imazhe1");
11/25/2010 5:49:51 AM
without the MovieClip(parent).currentLabel;
Tx ////
11/25/2010 7:40:29 AM
you can use the reference from root or use parent for every level
root.movieClip1.movieclip2.play()
or
parent.parent.parent.play()