On 11/28/05, Nick Griffiths <[EMAIL PROTECTED]> wrote:
> ... but changing the called method to a static member made it work -
> the plot thickens.
Sounds like you haven't instantiated a class, but only calling a
method on an uninstantiated variable. For example:-
var a:Array;
a.push(1);
trace(a.length);
traces undefined. Add a = new Array(); and it works.
But, in answer to you original question, I can't recall experiencing
this problem so no, I can't help out directly.
Chris
--
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
www.flashdev.org.au
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders