Re: [Flashcoders] arguments.caller -- name of this function?

2008-07-16 Thread Hans Wichman
ps this is a very old article, the new reflection package is done, if you are interested let me know On Wed, Jul 16, 2008 at 7:22 PM, Hans Wichman < [EMAIL PROTECTED]> wrote: > http://objectpainters.com/blog/2007/07/16/argumentscallee_name/ > > HTH > JC > > On Wed, Jul 16, 2008 at 6:06 PM, Leo

Re: [Flashcoders] arguments.caller -- name of this function?

2008-07-16 Thread Hans Wichman
http://objectpainters.com/blog/2007/07/16/argumentscallee_name/ HTH JC On Wed, Jul 16, 2008 at 6:06 PM, Leonardo Scattola - New Vision srl < [EMAIL PROTECTED]> wrote: > Hi list! > I apologize in advance if this question has already been asked... it is my > little Wednesday puzzle :D > > Given th

RE: [Flashcoders] arguments.caller -- name of this function?

2008-07-16 Thread Keith Reinfeld
Leonardo, myFunction=function() { // call the second one: trace("Now calling secondFunction"); secondFunction(); trace("End."); } //override the toString() method for myFunction myFunction.toString = function() { return "myFunction"; }; secondFunction=function()