Fullscreen Flash projector on Mac
Out of context: Reply #5
- Started
- Last post
- 5 Responses
- vitonet0
I found the answer here: http://livedocs.adobe.com/flash/…
Basically you need to put this in instead of the plain displayState used above:
function applyFullScreen(){
stage.displayState = StageDisplayState.FULL_SCREEN;
}
setTimeout(applyFullScreen, 100);This sort of creates a timer to refresh the screen into full screen, which makes the title bar go away like it is supposed to. The post uses a timeout of 100, but that didn't really work for me. I think that must be too short of a time for the show to get up and running and I'm running this on an older Mac. I had to increase it to somewhere in the neighborhood of 800 to get it to work well on my system. You'll just have to play with the numbers a little to get it to work well for your system.