Re: [flexcoders] Help with error

2009-05-08 Thread Tom Chiverton
On Friday 08 May 2009, markgoldin_2000 wrote: TypeError: Error #1009: Cannot access a property or method of a null object reference. D:\projects\sfcs\UFDPortal\src\IFrame.as:353 I mean, I'm just *guessing* ya know, but might something be null around line 353 of your IFrame class ? --

Re: [flexcoders] Help with error message

2008-11-29 Thread gabriel montagné
Hi, markgoldin_2000 wrote: What exaclty this means: TypeError: Error #2007: Parameter antiAliasType must be non-null. at flash.text::TextField/set antiAliasType() Paraphrasing the error message one can defintely say that you have a TextField somewhere for which you're setting the anti alias

Re: [flexcoders] Help with error #1119

2008-09-22 Thread Haykel BEN JEMIA
I think you should be using ciData instead of dp in these function. It's the property that seems to hold the data returned by the service. On Sun, Sep 21, 2008 at 7:43 PM, dmschenk1 [EMAIL PROTECTED] wrote: I have a 1119 error that is giving me fits and I'm sure its probably something simple

Re: [flexcoders] Help on error: Invalid AMFX packet. Content must start with an amfx node

2008-06-20 Thread gnu wolf
From: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com [mailto: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com] On Behalf Of gnu wolf Sent: Wednesday, June 18, 2008 5:14 PM To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com Subject: Re: [flexcoders] Help on error: Invalid

RE: [flexcoders] Help on error: Invalid AMFX packet. Content must start with an amfx node

2008-06-19 Thread Seth Hodgson
@yahoogroups.com Subject: Re: [flexcoders] Help on error: Invalid AMFX packet. Content must start with an amfx node Hey Seth, I'm not getting anything from the response, no headers and no status code. Pretty weird. I had this request headers tho: POST /samples/messagebroker/http HTTP/1.1 Host

RE: [flexcoders] Help on error: Invalid AMFX packet. Content must start with an amfx node

2008-06-18 Thread Seth Hodgson
I think a bit more background on your app would be helpful. It sounds like you're receiving a response from the server that isn't correctly encoded AMFX, meaning that you're using an HTTPChannel to connect the client to the server. What is being invoked on the server specifically? If you monitor

RE: [flexcoders] Help on error: Invalid AMFX packet. Content must start with an amfx node

2008-06-18 Thread gnuwolf
To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Help on error: Invalid AMFX packet. Content must start with an amfx node I think a bit more background on your app would be helpful. It sounds like you're receiving a response from the server that isn't correctly encoded AMFX, meaning that you're

RE: [flexcoders] Help on error: Invalid AMFX packet. Content must start with an amfx node

2008-06-18 Thread Seth Hodgson
target SOAP endpoint. Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gnuwolf Sent: Wednesday, June 18, 2008 10:45 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Help on error: Invalid AMFX packet. Content must start with an amfx node Hi Seth,   Thanks

Re: [flexcoders] Help on error: Invalid AMFX packet. Content must start with an amfx node

2008-06-18 Thread gnu wolf
SOAP endpoint. Seth From: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com [mailto: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com] On Behalf Of gnuwolf Sent: Wednesday, June 18, 2008 10:45 AM To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com Subject: RE: [flexcoders

RE: [flexcoders] Help with error

2007-12-30 Thread Randy Martin
In my experience, that usually means that you have two files named the same, like myInput.mxml and myInput.as. ~randy _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Sunday, December 30, 2007 8:22 AM To: flexcoders@yahoogroups.com

Re: [flexcoders] Help with error

2007-12-30 Thread Ralf Bokelberg
Or it means you have more than one public class declarations in one file. On Dec 30, 2007 7:13 PM, Randy Martin [EMAIL PROTECTED] wrote: In my experience, that usually means that you have two files named the same, like myInput.mxml and myInput.as. ~randy

Re: [flexcoders] Help !!! Getting error when change RowHeight and then Scroll Datagrid

2007-06-07 Thread arpan srivastava
, June 7, 2007 1:20:08 AM Subject: RE: [flexcoders] Help !!! Getting error when change RowHeight and then Scroll Datagrid Try calling invalidateList( ) (not invalidateDisplayLi st()) after you change the font size From: [EMAIL PROTECTED

RE: [flexcoders] Help !!! Getting error when change RowHeight and then Scroll Datagrid

2007-06-07 Thread Alex Harui
AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Help !!! Getting error when change RowHeight and then Scroll Datagrid Hi Alex, I tried to use invalidateList() but it didn't worked out, I also tried out calling updateList() but it was also giving error when i change

RE: [flexcoders] Help !!! Getting error when change RowHeight and then Scroll Datagrid

2007-06-06 Thread Alex Harui
Try calling invalidateList() (not invalidateDisplayList()) after you change the font size From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of arpan srivastava Sent: Wednesday, June 06, 2007 10:07 AM To: Flex Coders Subject: [flexcoders]

RE: [flexcoders] Help with error message ASAP!

2005-10-02 Thread Kelly Roman
You are going to have to break up your file into components. Its a good design practice anyways so get in the habit of it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of delaquae Sent: Sunday, October 02, 2005 6:51 PM To:

RE: [flexcoders] Help with error message ASAP!

2005-10-02 Thread Matt Chotin
And check the faq (linked below) for more info. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Kelly Roman Sent: Sunday, October 02, 2005 4:31 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Help with error message ASAP

Re: [flexcoders] help...geting error when using http service

2005-08-11 Thread Manish Jethani
On 8/11/05, Amit Sanon [EMAIL PROTECTED] wrote: whenever i try to use httpservice tag i get an error --- HTTPService Fault:A start tag had no corresponding end tag --- Just taking a guess, I think your service is returning invalid XML. Set resultFormat=text on your HTTPService element and

RE: [flexcoders] help...geting error when using http service

2005-08-11 Thread Amit Sanon
@yahoogroups.comSubject: Re: [flexcoders] help...geting error when using http serviceOn 8/11/05, Amit Sanon [EMAIL PROTECTED] wrote: whenever i try to use httpservice tag i get an error --- HTTPService Fault:A start tag had no corresponding end tag ---Just taking a guess, I think your