Question
FLVPlayback component skinAutoHide problem
Hi guys!
I have a problem with FLVPlayback component's skinAutohide property which works poorly when FLVPlayback component is the same size as your stage. The skin only hides when I move my mouse very slowly outside the FLVPlayback component.
Also making the FLVPlayback component smaller isn't an option so what more options are there left?
Is there anyway to hide the skin by yourself?
I allready tried the following code, but I think this is very unreliable (I get some errors when I move my mouse very quickly over and outside the FLVPlayback component):
video.addEventListener(Event.MOUSE_LEAVE, mouseLeaveHandler);
video.addEventListener(MouseEvent.MOUSE_MOVE, mouseMoveHandler);
function mouseLeaveHandler(event:Event):void {
video.skin = "";
}
function mouseMoveHandler(event:Event):void {
video.skin = "SkinOverPlayStopSeekFullVol.swf";
}
I have a problem with FLVPlayback component's skinAutohide property which works poorly when FLVPlayback component is the same size as your stage. The skin only hides when I move my mouse very slowly outside the FLVPlayback component.
Also making the FLVPlayback component smaller isn't an option so what more options are there left?
Is there anyway to hide the skin by yourself?
I allready tried the following code, but I think this is very unreliable (I get some errors when I move my mouse very quickly over and outside the FLVPlayback component):
video.addEventListener(Event.MOUSE_LEAVE, mouseLeaveHandler);
video.addEventListener(MouseEvent.MOUSE_MOVE, mouseMoveHandler);
function mouseLeaveHandler(event:Event):void {
video.skin = "";
}
function mouseMoveHandler(event:Event):void {
video.skin = "SkinOverPlayStopSeekFullVol.swf";
}