Hi all
How do I split from below array and trace only ´she´ without ´1000´?
var list:Array = new Array();
list[0] = [1000, ‘She’];
list[1] = [2000, ‘born’];
function check() {
if (snd.position>=list[0][0]) {
//trace(list.shift());
// output: 1000,She
tried following methos but didn`t work
//trace(list.split(",", 1));
// output:undefined
//trace(list.toString().split(",", 1));
// output:1000
//trace(list.toString().split(",", 2));
// output:1000,She ?????
thanks
green