Fullscreen Flash

Hi,

Has anyone had some experience with fullscreen Flash? In one of our projects we want to offer fullscreen flash video, which is possible since FlashPlayer version 9.0.28:

stage.addEventListener(FullScreenEvent.FULL_SCREEN, onFullScreen); 
// 
private function onFullScreen(fse:FullScreenEvent):void { 
    if (fse.fullScreen) { 
        // go fullscreen 
    } else { 
        // go normal 
    } 
}

Just add some parameters to the <object> and <embed> tag and Bob’s your uncle. Normally.
This works on our dev-server, but not online, for some reason. We’ve checked everything, but can’t come up with a valid reason why this wouldn’t work.

If anyone has a tip, it’ll be appreciated :wink: