Re: [Flashcoders] Quickie for xml dynamic text loader in flash

2007-10-22 Thread Radley Marx
Unless there's a significant reason for needing separate XML files for each... keyframe(?)... you can put them all together much more easily and load everything from the beginning into an array of objects. This way you only have to refer to local storage and not have to call to the

Re: [Flashcoders] Quickie for xml dynamic text loader in flash

2007-10-22 Thread Rich Rainbolt
Remove On Oct 19, 2007, at 11:11 AM, Eric Walton wrote: Hello All, Quick question about an xml file I am loading into a dynamic text box. K, I have a dynamic text box/area that loads a simple xml file using the following: var RootNode:XMLNode; var myXML:XML = new XML();

[Flashcoders] Quickie for xml dynamic text loader in flash

2007-10-20 Thread Eric Walton
Hello All, Quick question about an xml file I am loading into a dynamic text box. K, I have a dynamic text box/area that loads a simple xml file using the following: var RootNode:XMLNode; var myXML:XML = new XML(); myXML.ignoreWhite = true; myXML.onLoad = loadNews;