RE: [Flashcoders] very easy question

2008-05-21 Thread Jesse Graupmann
List Subject: Re: [Flashcoders] very easy question ok, when I trace this instead of the text it shows [target.object] it is a html xml formatted page, it is supposed to show in other way right? regards, guatvo On May 20, 2008, at 3:48 PM, Eduardo Omine wrote: Try this: var loader:URLLoader

Re: [Flashcoders] very easy question

2008-05-20 Thread jonathan howe
Gustavo, You can't assume that the file is loaded at the moment you ask for it (the code does not stop and wait). You must add an event listener and wait for it to be triggered. See the Actionscript 3.0 View examples section:

Re: [Flashcoders] very easy question

2008-05-20 Thread Eduardo Omine
Try this: var loader:URLLoader = new URLLoader(); loader.load(new URLRequest(http://leftandrightsolutions.com/txt/whoweare.txt;)); -- Eduardo Omine http://blog.omine.net/ http://www.omine.net/ ___ Flashcoders mailing list

Re: [Flashcoders] very easy question

2008-05-20 Thread Gustavo Duenas
ok, when I trace this instead of the text it shows [target.object] it is a html xml formatted page, it is supposed to show in other way right? regards, guatvo On May 20, 2008, at 3:48 PM, Eduardo Omine wrote: Try this: var loader:URLLoader = new URLLoader(); loader.load(new