Hello,
After some more investigation I have found that the buttons not working problem I was having is not a browser malfunction. I have found that when I put the site on a web server all works well regardless of the browser. But when I put the site on a CD a run it from there, all calls to outside sources do not work. All calls to local sources such as url:String = "/Documents/some.pdf" in the below function works just fine. And insight to this problem would be appreciated. function GotoURLAustinMopac(e:MouseEvent):void{ var url:String = "http://maps.google.com/maps?f=q&hl=en&geocode=&q=6836+Austin+Center+Blvd.+A ustin+TX+78731"; var request:URLRequest = new URLRequest(url); try { navigateToURL(request,'_blank'); } catch (e:Error) { //Do Nothing } } _______________________________________________ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders