This content has been marked as final.
Show 5 replies
-
1. Re: identifyMovieClip
Ned Murphy Aug 28, 2013 2:50 PM (in response to Ron Colmen)What does your clicking code look like?
-
2. Re: identifyMovieClip
Ron Colmen Aug 29, 2013 4:34 AM (in response to Ned Murphy)Thanks Ned.
I haven't started on this. I wanted to get some advise, so I can do the design knowing how the 'clicking & identifying' could be achieved.
-
3. Re: identifyMovieClip
Ned Murphy Aug 29, 2013 8:12 AM (in response to Ron Colmen)Here's a fairly simple way based on the code you showed. The same function is assigned to all the mc's and when you click one of them its _name identifies it.
function traceName():Void {
trace(this._name);
}for (i=0; i<5; i++) {
_root.mc1.mc2["color"+i].onRelease = traceName;
} -
4. Re: identifyMovieClip
Ron Colmen Aug 29, 2013 9:56 AM (in response to Ned Murphy)Perfect.
Thanks Ned.
-
5. Re: identifyMovieClip
Ned Murphy Aug 29, 2013 11:35 AM (in response to Ron Colmen)You're welcome Ron



