Hi

I have a list box of mp3s which populates via xml. When the user clicks on a song I want a "Stop" button to pop up next to the name of that song in the list box. Ideally I want to get the coordinates of the field in the list box that the user has just clicked on.

I set an eventListener like this:

Code:
:
songs_list.addEventListener(Event.CHANGE, playSong);
and then in the function playSong I do things like this:

Code:
e.currentTarget.y; //gives the y coord or the whole component
e.currentTarget.selectedItem.stageX //undefined
e.currentTarget.selectedItem.localX //undefined
e.currentTarget.selectedItem.x //undefined
Can anybody please advise how i can get the x and y coordinates of the selectedItem in the list.

Thanks in advance