|
|
|
Flash Actionscript Programming Basics
Author: steve happ | Email Website : www.video-animation.com
Advertisement
Arrays
An array is a collection of objects . Individual objects are not named but accessed by its position in the array.
Try this!
var theArray = new Array(5,4,8,2,1);
for(var i = 0;i<5;i++){
trace(theArray[i]);
}
Elements are numbered beginning with "0".
In the above array
theArray[0] = 5
theArray[2] = 8
Length is a property of Array. It tells how many elements are in the array.
So , from above,
theArray.length = 5
We hope the information helped you. If you have any questions
or comments, please don't hesitate to post them on the
Forums section
Submit your Tutorial at Click Here
|
|
|