ActionScript 3删除对象函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3删除对象函数相关的知识,希望对你有一定的参考价值。
This function will delete and object and mark it for deletion with gc.
/** * _deleteObject function * Removes the specified object from the parent object and nulls the object. * * @param obj:Object The specific object to remove */ private function _deleteObject(obj:Object):void { if (obj.parent) obj.parent.removeChild(obj); obj = null; }
以上是关于ActionScript 3删除对象函数的主要内容,如果未能解决你的问题,请参考以下文章
Actionscript 3:当元素是对象/类实例时,识别要删除的数组元素
ActionScript 3 删除对象,iPhone App样式
ActionScript 3 从TextFlow中删除所有FlowElement对象