RE: [Flashcoders] Simulated load time and preloading XML

2010-03-08 Thread Merrill, Jason
>><> >>How would I do that? package utils { import events.XMLFileLoaderEvent; import flash.events.Event; import flash.events.EventDispatcher; import flash.net.URLLoader; import flash.net.URLRequest; public class XMLFileLoader extends Event

RE: [Flashcoders] Simulated load time and preloading XML

2010-03-08 Thread Lehr, Theodore
ct: Re: [Flashcoders] Simulated load time and preloading XML Theodore Lehr wrote: > Can I put a pre-loader on XML? I'm not sure this is what you're looking for, but yes, you can preload your XML. I've done it often--I load the XML from the server, and when it's done I go about my other

Re: [Flashcoders] Simulated load time and preloading XML

2010-03-08 Thread Kerry Thompson
Theodore Lehr wrote: > Can I put a pre-loader on XML? I'm not sure this is what you're looking for, but yes, you can preload your XML. I've done it often--I load the XML from the server, and when it's done I go about my other business. Often I'll have an XML loader running simultaneously with oth