Home | Contact Us | Store

Flash ActionScript Tutorial: Assign Values to Array (1)

This Flash ActionScript tutorial shows how to create new Arrays and how to assign values to Arrays.

Your flash player version is too old to see this video file!

Flash Tutorial Content:

To use the Array, values must be assigned or added to the Array. There are some methods to assign values to an Array. This Flash ActionScript tutorial shows a common method to assign value to an Array

The Flash Movie of this tutorial is shown as above.

Flash ActionScript Codes:

//Create an empty Array with the name trayArray
//You may imagine an Array like a DIY ice cube tray
//We are going to make some ice cubes with different taste
//Five different juices are put into the Array
//Therefore the size of this Array is now 5
//Since this is a DIY ice cub tray, the size can be changed anytime.
var trayArray:Array = new Array("papaya juice", "orange juice", "apple juice", "milk", "coke");

 

//The value of individual element in the Array can be retrieved
//with reference to the element index
//Each element has an element index
//The element index of the first element is 0
//The element index of the second element is 1
//etc...
item1_txt.text = trayArray[0];
item2_txt.text = trayArray[1];
item3_txt.text = trayArray[2];
item4_txt.text = trayArray[3];
item5_txt.text = trayArray[4];

 

//Check the size of testArray
output_txt.text = "The size of trayArray are: " + trayArray.length;

Download Flash Source File:

Flash Source File array-2.fla

Remarks:

This Flash ActionScript tutorial shows how to create and assign values to Array. As you noticed that the values are assigned to the Array when the Array was created. Many flash developer don't like this. They would like to create an empty Array first then assign values to the Array later on. The next Flash ActionScript tutorial will show this method.

Flash ActionScript Tutorial