RE: [flexcoders] Newbie: load external xml problem

2006-02-27 Thread Jonathan Miranda
Unless Im missing something, you could use a mx:Model source=xmlFile.xml and use onComplete eventsor if its in a url, use a HttpService to call it in. Heres what Id do: mx:HttpService url="" result=trace(result.toXMLstring());/ _ Jonathan

RE: [flexcoders] Newbie: load external xml problem

2006-02-27 Thread Roger Gonzalez
I think some of the docs are obsolete. It appears to me that lines 4 and 5 aren't actually in a function definition, which means that they are in the static context of the surrounding class (you -are- putting this in a class, right? Flex doesn't support loose code.) In that case, request does

RE: [flexcoders] Newbie: load external xml problem

2006-02-27 Thread Matt Chotin
Check out the HTTPService example in the Flex Explorer. I think you'll find it easier to use that. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of revanisle Sent: Monday, February 27, 2006 11:44 AM To: flexcoders@yahoogroups.com Subject: