/ Published in: ActionScript 3
URL: http://blog.tyleregeto.com/
Use this to dynamically copy objects.
Expand |
Embed | Plain Text
my copyFunction(value:Object):Object{ var buffer:ByteArray = new ByteArray(); buffer.writeObject(value); buffer.position = 0; var result:Object = buffer.readObject(); return result; }
You need to login to post a comment.
