Flex深拷贝

通常我们需要深拷贝flex对象的时候 我们会google到这样的信息


		public function DeepClone( target : Object ) : *
		{
			var myBA:ByteArray = new ByteArray();  
			
			myBA.writeObject( target );  
			myBA.position = 0;  
			
			return( myBA.readObject() );  
		}


这个用来拷贝Array或者其他一些数据类的时候 我们发现他是OK的


但是如果要深拷贝DisplayObject的时候这个函数就会发生运行时错误


在网上发现这么一篇文章


http://www.dannyburbol.com/2009/01/movieclip-clone-flash-as3/


直接跳到Answer5吧 看看怎么复制DisplayObject

		public function duplicateDisplayObject(
			source:DisplayObject, 
			autoAdd:Boolean = false
		):DisplayObject
		{
			// create duplicate
			var sourceClass:Class = Object(source).constructor;
			var duplicate:DisplayObject = new sourceClass();
			
			// duplicate properties
			duplicate.transform = source.transform;
			duplicate.filters = source.filters;
			duplicate.cacheAsBitmap = source.cacheAsBitmap;
			duplicate.opaqueBackground = source.opaqueBackground;
			if (source.scale9Grid) {
				var rect:Rectangle = source.scale9Grid;
				// WAS Flash 9 bug where returned scale9Grid is 20x larger than assigned
				// rect.x /= 20, rect.y /= 20, rect.width /= 20, rect.height /= 20;
				duplicate.scale9Grid = rect;
			}
			
			// add to source parent's display list
			// if autoAdd was provided as true
			if (autoAdd && source.parent) {
				source.parent.addChild(duplicate);
			}
			return duplicate;
		} 


好了..搞定



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值