Quote Originally Posted by PhobiK
I think what he means is that if you have a mc with a name consisting only of a number, is it possible to tell the movie (or a MC) to gotoAndPlay(myInstanceName).
Yeah, it can be done this way:
_root.hitPlace.gotoAndPlay(this._name);
_root.backGround.gotoAndPlay(this._name);

Or to be more precise _root.hitPlace.gotoAndPlay(Number(this._name));
thanks! and sorry to for the vague question