Is there a way to give actions to movieclip with no instance name?
Can I just say _root.movieclipname.gotoAndStop(2);
where movieclipname is the actual name of the movieclip symbol on the stage?
-Line
Is there a way to give actions to movieclip with no instance name?
Can I just say _root.movieclipname.gotoAndStop(2);
where movieclipname is the actual name of the movieclip symbol on the stage?
-Line
No, why?
I have like 300 something movieclips named box1, box2, box3 and I want to make them all change color with hitTest’s but I don’t really want to name all the instance names of all 300 boxes.
-Line
you could put code inside the symbol itself…
otherwise you can use a for…in loop in the timeline in which they exist and check for typeof == “movieclip” and then apply actions to each one you find that way. Of course if you have movie clips you don’t want to give actions to, that could be a problem. You’d have to identify them.
dont they get names like Instance0, Instance1 etc? or can’t you put actions to them?
yeah it does; I put an MC on the frame, place the following in the actions and it works
instance1.a = 1978
trace(instance1.a)
instance1.onPress= function():Void{
trace(this.a)
}
:: Copyright KIRUPA 2024 //--