Looping Through an Array : Loop through : Array Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Array » Loop through »

 

Looping Through an Array


 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){


        var letters:Array = ["a""b""c"];
        for (var i:int 0; i < letters.length; i++) {
          trace("Element " + i + ": " + letters[i]);
        }
    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo Array
» Loop through