How can i check if a streaming mp3 is playing or not?

hi all:}

i got a STREAMING mp3 file in loaded by mySound.loadSound(“test.mp3”, true).

and we all know that this function will run while sound completes


mySound.onSoundComplete = function(){
trace("Sound Completed")
}

and this one while the sound is FULLY loaded


mySound.onLoad= function(){
trace("Sound Loaded")
}

here is my question… is there such thing as the following??
mySound.onPlay=function(){
trace(“sound started”)
}
well i know there is no such thing… but i think now u get my ideas
is there any alternative way to do the similar thing?
cuz since it’s streaming mp3, the song will be played during the loading progress…so both onLoad and onSoundComplete won’t work…

thanks a lot :love: