Is there a way to give actions to movieclip with no instance name?

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

  1. You already named 300 different symbols, what’s 300 instance names?
  2. Why do you need 300 different symbols, seems excessive. Is each one really different?
  3. You should add them all with AS.
  4. If all else fails you can write a JSFL script but I don’t think it should have to come to that.

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)
}