Re: [Flashcoders] Error Instantiating Object

2009-01-27 Thread K-Dawg
I am an idiot! The debug mode did just what I needed! I was trying to add an event listener on a loader the line before doing the loader = new Loader(). Once solved that, now it is running (not correctly but that is another issue!). Thanks for responding so quickly and being so helpful. You ne

Re: [Flashcoders] Error Instantiating Object

2009-01-27 Thread Joel Stransky
Something in your Slide.iinit() function does not exist at the time it is running. On Tue, Jan 27, 2009 at 7:40 PM, K-Dawg wrote: > Hello, > > I am new to Action Script 3. I am used to Java, Perl, & Python. I am > receiving the following error: > > TypeError: Error #1009: Cannot access a prope

Re: [Flashcoders] Error Instantiating Object

2009-01-27 Thread Todd Kerpelman
Hmmm... what's the rest of the Slide constructor? It sounds like maybe that's where the error is... Also, if you try running your Flash file in debug mode (Hit Ctrl-Shift-Enter), the debugger will take control at the moment when you're trying to access a null object, which usually helps you figure

[Flashcoders] Error Instantiating Object

2009-01-27 Thread K-Dawg
Hello, I am new to Action Script 3. I am used to Java, Perl, & Python. I am receiving the following error: TypeError: Error #1009: Cannot access a property or method of a null object reference. at Slide$iinit() at PondoShow$iinit() All I have a PondShow class that extends Sprite. then