This will help to find out why you need it, because I have a feeling that you really are not doing it. If the method is anonymous, you can associate the 'this' keyword with .apply on the method:
var foo:Function = function(arg:int):void
{
trace(this);
};
var bar:Object = {
toString: function():String { return "bar"; }
};
var baz:Object = {
toString: function():String { return "baz"; }
};
foo.apply(bar);
foo.apply(baz);
, , , , "this" , , , apply. , "this" , .
, . caller arguments, AS3. arguments.callee, , .