I am trying to find the URL in which an application is running. Reading the documentation, I get the impression that I can use the "root" property off on any DisplayObject, and then get the loaderInfo from there.
Unfortunately, the root property seems to be null. I must be doing something wrong. Can someone help? <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="{ showRoot(); }"> <mx:Script> <![CDATA[ import mx.controls.Alert; private function showRoot() : void { Alert.show( "root: " + this.root ); } ]]> </mx:Script> </mx:Application> -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

