Hey,

Is there any way to know which instance has called a certain function, without passing tht instance name in the parameters of that function. For example: i have this function on root:

function abc(){
trace("xyz")
}

and I have a movie clip placed on root, instance named 'myClip', and in that movie clip, i have written:

_parent.abc();

Now is there some way that 'abc' could know or provide the instance name 'myClip' without sending/recieving any parameter from 'myClip' or 'abc()' (like _parent.abc(this) or abc(thisClip:MovieClip))

Best Regards