var obj1:Object = new Object() var obj2:Object = obj1
...whatever changes you make to obj1 also change obj2. How do I stop this from happening? I want obj2 to be the same as obj1 at first, but I don't want future changes to effect both of them. What do I do?