Hello,
Ok, say I have a bunch of movie clips, and when some action is done to one of those i want something to happen with a coresponding movie clip.
For example I have 2 movie clips, and when the first one is say drag and dropped and then hittetested i want to attach the movieclip that coresponds to the one that i just dragged.
ok say the clip that is dragged has an instance name and linkage of: movieclip
and the one I want attached has an instance name and linkage of: movieclip_on
I was thinking something like:
atmc = this._name+"_on";
this._parent.attachMovie(atmc, atmc, this.getNextHighestDepth(), position);
Buuut I can’t seem to get it to work.
Is it possible to do this and how would I go about it?
-Thx