varlist=[{'src' : '//xxx/song1.mp3',},{'src' : '//xxx/song2.mp3',},{'src' : '//xxx/song3.mp3',},{'src' : '//xxx/song4.mp3',},{'src' : '//xxx/song5.mp3',}];varplayer=newXAudio(list);// get list lengthplayer.listLength();// 5// orplayer.__list.length;// 5// play the 4th audio in the playlistplayer.index(3).play();// orplayer.play(3);// get current indexplayer.index();// 3// switch play mode [1:list,2:single,3:random]player.mode(3);// jump to 30%player.progress(30);// jump to 65splayer.currentTime(65);// get current timeplayer.currentTime();// 65// muteplayer.muted(true);// unmuteplayer.muted(false);// play nextplayer.next();// and more examples is on the way