Hey guys,
I was wondering if anyone knew if it was possible to declare a function variable like so:
var f:Function = ReferenceToSomeFunctionInClass;
And assign parameters to the function? I was hoping I could do something like:
var f:Function = ReferenceToSomeFunctionInClass;
f.params[0] = "First parameter!";
f();
It’d be very helpful if this was possible; I don’t like resorting to
var f:Function = ReferenceToSomeFunctionInClass;
f.call(this,"First Parameter!");