Getting an attached Movieclips name

Hi,
In MX, how can you tell if a movieclip has had another clip attached to it:
I have a number of clips called FeatureMovie1_mc…
and when pressed -

FeatureMovie1_mc.onRelease = function()
{
FeatureMovie1_mc.attachMovie(“L”, “Symbol_mc”, 0);
}

I need to prevent this code being called more than once when the clip gets pressed again, but using _name of valueOf() just
return “FeatureMovie1_mc”.
Does anyone have any ideas?
Much appreciated,
DumbMonkey.

Couldn’t you do somehting like this:


FeatureMovie1_mc.onRelease = function() {
      if(!Check) {
            FeatureMovie1_mc.attachMovie("L", "Symbol_mc", 0);
            Check = true;
      }
}