I have a simple AIR application tha I am developing in Flash
CS3. For some reason the "air" property cannot be used in the
following code. When I take the air property out the code doesn't
work after publishing the AIR file and installing it... any takers
on this - thanks
import air.flash.net;
var request = new air.URLRequest("http://www.drivedigitalmedia.com/thoughts/rss.cfm?mode=full");
var loader = new air.URLLoader();
loader.load(request);
function completeHandler(event)
{
var loader2 = event.target;
air.trace(loader2.data);
}
import air.flash.net;
var request = new air.URLRequest("http://www.drivedigitalmedia.com/thoughts/rss.cfm?mode=full");
var loader = new air.URLLoader();
loader.load(request);
function completeHandler(event)
{
var loader2 = event.target;
air.trace(loader2.data);
}