Come posso, in actionscript, scorrere un Array non ordinata ? Del tipo: array ( 'b' => 'ciao , 'v' => 'lol' ). Con un array ordinata numericamente, si farebbe comodamente con un for:
Come fare con un array diverso ?codice:for ( var i:Number = 0 ; i < n.length ; i++ ) { trace ( n[i] ) ; }