Re: [flexcoders] determine current function

2006-12-04 Thread Derek Vadneau
How do you get the name from arguments.callee? I've tried using the example from the docs where you assign the value to a property on the function and then use arguments.callee.prop to get the value, but Flex Builder gives me an error saying Access of possibly undefined property prop through a

Re: [flexcoders] determine current function

2006-11-27 Thread Daniel Freiman
take a look at arguments.callee in the top level package. that might be what you're looking for. - Dan On 11/23/06, Ivor [EMAIL PROTECTED] wrote: Hi all I want to determine what the name of the current function in actionscript is. I want to set a string variable equal to the name of that

[flexcoders] determine current function

2006-11-24 Thread Ivor
Hi all I want to determine what the name of the current function in actionscript is. I want to set a string variable equal to the name of that function in the function and then pass it as a parameter. Any ideas how to do that? Ivor