当前位置: 代码迷 >> Web前端 >> 给一个button或text平添链接
  详细解决方案

给一个button或text平添链接

热度:84   发布时间:2012-09-10 22:20:13.0
给一个button或text添加链接
直接上代码,
Button:
<s:Button x="237" y="7" label="按钮" buttonMode="true"  click="linkURL()"/>
Text:
<mx:Text text="aa" x="140" y="10" id="linkUrl" fontSize="13" buttonMode="true"/>

private function linkURL():void {
				var request:URLRequest = new URLRequest("http://www.renrenwei.com");
				navigateToURL(request,"_blank");
			}
			
			private function initApp():void{   
				var str:String = "<a target='_blank' href='http://www.renrenwei.com'>aa</a>";   
				linkUrl.htmlText = str;  }

  相关解决方案