package{ import flash.display.Sprite; public class Main extends Sprite{ public function Main(){ var soundtracks:Array = ["e", "h","p", "a", "c"]; for (var i:int = 0; i < soundtracks.length; i++) { trace("Now examining element: " + i); if (soundtracks[i] == "h") { trace("The location of 'h' is index: " + i); break; } } } }}Now examining element: 0Now examining element: 1The location of 'h' is index: 1
Name (required)
email (will not be published) (required)
Website