ActionScript 3 AS3中的getURL

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3中的getURL相关的知识,希望对你有一定的参考价值。

package {
	
	import flash.net.URLRequest;
	import flash.net.navigateToURL;
	
	/**
	 * getURL for ActionScript 3.0.  Similar 
	 * to getURL of ActionScript 2.0 in simplicity
	 * and ease. Errors are suppressed and traced
	 * to the output window.
	 */
	public function getURL(url:String, target:String = null){
		
		try {
			navigateToURL(new URLRequest(url), target);
		}catch(error:Error){
			trace("[getURL] "+error);
		}
		
	}
}

以上是关于ActionScript 3 AS3中的getURL的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3中的模糊滤镜

ActionScript 3 跟踪AS3中的对象

ActionScript 3 检查AS3中的连接

ActionScript 3 Flex中的AS3 Sprites

ActionScript 3 AS3中的按钮模板类

如何解决 ActionScript 3 (AS3) 中的关闭问题