What is the best method to deep clone objects in actionscript?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The best method to do this is by using the ByteArray with the method writeObject. Like this:
More information about this, here: http://www.kirupa.com/forum/showpost.php?p=1897368&postcount;=77 |
|||||||||||||||
|
|
If you are trying to deep clone a display object, this is the only way it worked for me :
Note that this will only copy visually the object.It will not copy methods or properties. I used this when i loaded external images, and used them in multiple places. |
|||
|
|