Posted by TodayRatha in
on
-
Create Array
var myArray:Array = new Array("A", "B", "C");
Using element of an Array
trace(myArray[2]);
output is: C
Adding element to array
1- myArray[3] = "D"; // create element at 3th site of the array
2- myArray.push("D"); //create element after the last site of the array
Changing element of the array
myArray[3] = "Changed D"
(to be continue)
Category List
- Actionscript 3 (2)
- Digital Painting (1)
- Life style (1)
- Photoshop (1)
- Sencha Touch (1)
Blog Archive
-
▼
2010
(50)
-
▼
January
(8)
- AS3 Flash | Give result to XML variable
- AS3 Flash | Load External XML with urlLoader
- AS3 Flash | Load External XML with urlLoader
- AS3 Flash | Dispatchevent
- AS3 Flash | Automatically Action using Timer Class
- AS3 Flash | Coding Object have shadow effect
- AS3 | Array
- AS3 Flash | Dynamic Textfield autoSize
-
▼
January
(8)