RE: [flexcoders] Error #1009 - Problem running swf on production server

2007-06-01 Thread Alex Harui
completes can be really different on a production server. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Flexing... Sent: Thursday, May 31, 2007 8:57 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Error #1009 - Problem running

[flexcoders] Error #1009 - Problem running swf on production server

2007-05-31 Thread sarah_e_boys
I get the following error when I try and run my application on a production server: TypeError: Error #1009: Cannot access a property or method of a null object reference. at samples::MyTreeItemRenderer/set data() The application works fine if I reference it with http://localhost or

Re: [flexcoders] Error #1009 - Problem running swf on production server

2007-05-31 Thread Flexing...
This is basically a null pointer exception. In your itemrenderer you must be trying to access the variable of an object to probably display the value. The object in this case is null. You need to add nullity check in your code. On Jun 1, 2007, at 12:19 AM, sarah_e_boys wrote: I get the