I am trying to load a spreadsheet formatted in CSV directly from Google Docs. I've published it and get this URL, which works great in a browser, and if I run withing the Flash CS5 IDE. When it's running in a web-browser (locally or online), it just hangs and never loads or give an error.
var request:URLRequest=new URLRequest(file); var loader:URLLoader=new URLLoader(); loader.addEventListener(Event.COMPLETE,onLoadXML); loader.addEventListener(IOErrorEvent.IO_ERROR,onLoadXMLError); loader.load(request);
Any thoughts?