<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
 <![CDATA[
  

 private function onClick(event:Event):void{
     var url:String = "http://tw.yahoo.com";
            var request:URLRequest = new URLRequest(url);
            try {
             navigateToURL(request, '_blank');
            } catch (event:Error) {
              trace("Error occurred!");
            }
 }

 ]]>
</mx:Script>
 <mx:Panel x="208" y="59" width="528" height="454" layout="absolute">
  <mx:Button id="btn1" label="Button" x="161.5" y="299" click="onClick(event)"/>
 </mx:Panel>
 
</mx:Application>

arrow
arrow
    全站熱搜

    brandonkhlin 發表在 痞客邦 留言(1) 人氣()