Need help with a video player play list...Please

Hello flasher,

I need your advice on this little piece that I am developing. I have developed an XML driven video player (nothing fancy) which works great. So when the player is loaded it shows four thumbnails (acting as buttons). These thumbnails load the video and plays the video. Now I would like to add a play list to the player so when the user clicks on thumbnails, this list gets populated and then user clicks on a PLAY button and videos are played in given sequence by the list.

So I though I should have an empty array and when the user clicks on the thumbnails, I simply add the videos to the array:



var myList:Array = new Array();
myList.push[];


How can I make a list either clickable or draggable? Am I on the right track with an ARRAY?

Thanks for your help.
C:-)