[Flash8] Setting callback functions on an object methods, the setInterval way

Been doing some actionscript magic lately, done a nice interpolator class. The class, whenever an update occurs, calls a previously specified callback function. Normally, setting a variable of funCallback:Function and calling it works fine. However when I wanted to specify an object’s method as the callback for the interpolator, it apparently called it as if it would be a static method.

And it isn’t.

What I need to do, simply speaking, is to be able to call an object’s public method, having just th object’s reference and function name, just like the second variant of setInterval does ( the one having “object, string” as the first two params, not “function”).

If somebody knows, (and if you’re reading this, you probably do), I’d be very grateful if you could give a tip. Thanks in advance.