Tag Archives: Action Script

Web

How to Use Addchild in Action Script

ActionScript 3.0 uses a very powerful display list through which objects are displayed in flash. The display list can be applied only to objects that are visual, like shapes, text box and lines. Values and variable are non visual objects and cannot be used by display list. Display list uses two important functions; addChild() actionscript 3 and removeChild(). addChild() actionscript is used to display object to the screen and removeChild() to remove the object from the screen. Let’s look into a simple example to add a circle shape and a text box.


read more »

Web

How to do Action Script Animation

Action Script Animation is one of the most remarkable features of Adobe Flash. These animations can also be created using coding. Codes are written in ActionScript in Flash. In this tutorial, we are going to do motion tweening using just ActionScript. This is the basic of ActionScript. Understanding this can help you better understand flash action scripting.


read more »

Web

Using Arrays in Action Script

Arrays in actionscript are collection of data of same data type. They are ordered information that can be manipulated and sorted. We will take a look at some of the simple functions in actionscript Arrays that can be used in manipulation.


read more »