hello friends,
I got a problem while making a fullscreen enabled flv player.
I developed a player which will got to fullscreen but the problem comes when the monitor is wide. There comes blanh space left and in the right side of the video.
my code is like this
function goFullScreen() {
Stage[“displayState”] = “fullScreen”;
flvplayer._width = 600;
flvplayer._height = 450;
flvplayer._x = 0;
flvplayer._y = 0;
//------------------------------
_root.fullState = 1;
play();
}
function exitFullScreen() {
Stage[“displayState”] = “normal”;
flvplayer._width = 400;
flvplayer._height = 300;
flvplayer._x = 19.2;
flvplayer._y = 57.1;
//------------------------------
_root.fullState = 0;
gotoAndStop(3);
}
flvplayer is the movieclip which contain the video.
pls help me
regards
harilalkm