Is this even possible? I know the code for making a button to do the entire swf full screen, but what if I want a button separate from the flv player that makes only the video go full screen.
Any help appreciate. This is the code I’m using for full screen button right now.
Stage[“displayState”] = “normal”;
_root.fullScreen_butt.gotoAndStop(1);
_root.fullScreen_butt.onRelease = function() {
if (Stage[“displayState”] == “normal”) {
Stage[“displayState”] = “fullScreen”;
_root.fullScreen_butt.gotoAndStop(2);
} else {
Stage["displayState"] = "normal";
_root.fullScreen_butt.gotoAndStop(1);
}
};