Object +--mx.utils.Delegate
The Delegate class creates a function wrapper to let you run a function in the context of the original object, rather than in the context of the second object, when you pass a function from one object to another.
func
__proto__
constructor
prototype
new Delegate()
function Delegate(f:Function)
private func:Function
static function create(obj:Object, func:Function):Function
Creates a functions wrapper for the original function so that it runs in the provided context.
function createDelegate(obj:Object):Function