ActionScript 3 AS3:安全地从舞台上删除内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3:安全地从舞台上删除内容相关的知识,希望对你有一定的参考价值。

private function removeContent( stg:Stage, childName:String ):void
{
	if( stg.getChildByName( childName ) != null){
		//J. If var transparencyMc has been loaded, test if it's currently visible. If it is, then remove it from the stage
		if( stg.getChildByName( childName ).visible ) stg.removeChild( stg.getChildByName( childName ) );					
	}			  			
}

以上是关于ActionScript 3 AS3:安全地从舞台上删除内容的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3:在舞台实用程序上对齐对象

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

ActionScript 3 - 在舞台上添加和删除孩子

ActionScript 3 访问舞台对象

ActionScript 3 将舞台设置为NoScale

ActionScript 3 使用动作脚本将子项添加到舞台