pause/play toggle
private function togglePlayback(event:MouseEvent):void
{
if (this.myVideoDisplay.playing)
{
this.myVideoDisplay.pause();
}
else if (this.myVideoDisplay.source)
{
this.myVideoDisplay.play();
}
}
This method stops playback on the VideoDisplay