More problems with FLV playback

Hello,

I am having a problem with stopping flv playback.

I have a simple Mouse over function to play the video which works fine but I also want to add a Mouse Down function which stops it. When I test it on my computer it works fine, but when I load it to my site only the mouse over play function works. The code looks like this:

video.stop()

box.addEventListener(MouseEvent.MOUSE_OVER, player);

function player(e:MouseEvent):void
{
video.play()
}

video.addEventListener(MouseEvent.MOUSE_DOWN, stopper);

function stopper(e:MouseEvent):void
{
video.stop()
}

Any help would be much appreciated.

Thanks muchly.