Hi Prasad,
Try this sample app..
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
<![CDATA[
import mx.managers.CursorManager;
private function hideCursor():void{
Mouse.hide();
}
private function showCursor():void{
Mouse.show();
}
]]>
</mx:Script>
<mx:VideoDisplay source="sample.flv" width="651" height="312" rollOver="hideCursor()" rollOut="showCursor()" x="111" y="73"/>
</mx:Application>
Regards,
Dineshkumar.T