For example, I have a function in class A:
private function functionA(f:Function):void
{
var objB:B;
objB.f();
}
Is there a way to pass a non-static public member function of class B as a parameter to functionA? (from inside class A, of course) I know such syntax exists in c++, but not sure if you can do this in flex/as3