flvplayback autohide, start hidden

1.2k views Asked by At

I have a flash project with an flvplayback component using a flash provided shin and I have it set to auto hide but It always starts the video with the control on and I don't want them to show unless the user hovers over the video.

1

There are 1 answers

0
Justin Pearce On BEST ANSWER

Could do something like this?

onLoad = function(){
    VideoPlayer.skinAutoHide=true;
    VideoPlayer.skinFadeTime=0;
}

...where VideoPlayer is the instance of your FLVPlayback component.