Re: [Flashcoders] hardcoding xml

2006-09-08 Thread aaron smith
ber 08, 2006 11:18 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] hardcoding xml coding it in as a string doesn't seem to work.. EX:: var s:String = "" + ""+ ""+ ""+ ""+ ""+ ""; var x:XML = new XML( s );

RE: [Flashcoders] hardcoding xml

2006-09-08 Thread Lori Hutchek
Actually all it did was parse it into an xml array which is normal -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of aaron smith Sent: Friday, September 08, 2006 11:18 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] hardcoding xml coding it

Re: [Flashcoders] hardcoding xml

2006-09-08 Thread aaron smith
coding it in as a string doesn't seem to work.. EX:: var s:String = "" + ""+ ""+ ""+ ""+ ""+ ""; var x:XML = new XML( s ); when the xml lis parsed it puts comas in where the + symbols are.. it just breaks everything.. On 9/8/06, eric dolecki <[EMAIL PROTECTED]> wrote: just code it in as

Re: [Flashcoders] hardcoding xml

2006-09-08 Thread eric dolecki
just code it in as a string. On 9/8/06, aaron smith <[EMAIL PROTECTED]> wrote: hey, does anyone know of a way to hard code XML into actionscript without the compiler having a fit? it's a pretty big XML file, I need to hard code it for a banner, the vendor has no idea what their doing. the xml f

RE: [Flashcoders] hardcoding xml

2006-09-08 Thread Lori Hutchek
One idea might be to put the xml into a dynamic text field and when needed read the text of it and parse the xml. Lori- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of aaron smith Sent: Friday, September 08, 2006 10:30 AM To: Flashcoders mailing list Sub