Featured
-
No Featured Found!
Tags
Cloning of array in ActionScript3
For the cloning of array in ActionScript there are no built in methods. Thus the cloning is done basically using two methods namely clone( ) or slice( ). For the shallow copy of the array these methods are used without any arguments. If in the or...
Load And Parse XML in Action script
It is very easy to load and parse XML in Action Script 3.0
Suppose we have xml like this -
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <images>
<image>
<url>"first.jpg"</url>
</image>
&l...