by admin | Oct 19, 2002 | Blog, Code, Flash MX
When you need to copy only certain properties of one object to another object, this code will be useful. I’ve also given an example on how to use it. take a look at it here
by admin | Oct 17, 2002 | Blog, Code, Flash MX
Many times we need this! We create objects and arrays and modify them through code to get them as we want. Finally the object is ready but every time it is created using the same complex procedure when the SWF runs. This affects the performance to some extent. Also...
by admin | Sep 19, 2002 | Blog, Code, Flash MX
In ActionScript we cannot pass objects by value. It always passes objects by reference. If you need to create a perfect copy of an object you can make use of the following code. I have modified Flash Guru’s clone with support for Array Objects [UPDATE] included...