ActionScript 3 AS3:我最喜欢的助手功能

Posted

tags:

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

public function SlideShow( ){
     //If you are working locally on your computer, you will load manually load the xml file.  Otherwise you will be receiving the xml file from SWFObject2
     xmlURL = ( getDevelopmentMode() === "Production" ) ? getFlashVars().xml : "./xml/data.xml";

     //Capture where the SWF is living on the live site
     var currentLocationOfSWF:String = getContextPath();
}

private function getFlashVars():Object
{
     return Object( LoaderInfo( this.loaderInfo ).parameters );
}

private function getDevelopmentMode():String
{
	var dev:Boolean = new RegExp("file://").test( this.loaderInfo.loaderURL);

	if( dev ) return "Development";
	else return "Production";
}

private function getContextPath():String
{
	var uri:String = getLoaderURL();
	return uri.substring(0, uri.lastIndexOf("/")) + "/";
}

private function getLoaderURL():String
{
	return this.loaderInfo.loaderURL;
}

以上是关于ActionScript 3 AS3:我最喜欢的助手功能的主要内容,如果未能解决你的问题,请参考以下文章

如何在 ActionScript 中使用 MXML mx.controls.Label

ActionScript 3 AS3 SWFtrospection(as3swf)

ActionScript 3 AS3 TextField和StyleSheet示例(在ActionScript中创建)

[ActionScript 3.0] AS3.0 水面波纹效果

ActionScript 3 AS3:使用SWFObject2和AS3传递变量

ActionScript 3 克隆数组(AS3)