fullscreen

Flash CS3: Textfields distort/disappear in fullscreen mode

I am using Flash CS3 to build a website that uses Flash video. When I have Textfields over the video, they display fine when played "normally" in the browser window. However, when I put the video in fullscreen play, the Textfields either vanish completely or get highly distorted (they get very skinny and tall). Worse, when I hit escape...

Flash: Stage.FullscreenInteractive -> Difference if class or 1st frame

hello, i don't get it! example 1: 1st frame of my app var screenBounds = Screen.mainScreen.bounds; //Bounds of current screen var full:Sprite = new Sprite(); //Sprite Fullscreen //Enter Fullscreen function goFullScreen(e:Event = null) { //myClass.goFullscreen(); full.graphics.clear(); full.graphics.beginFill(0x...

can JGame do fullscreen with dual monitors?

When I run my Java game (based on the JGame framework) in fullscreen mode with dual monitors, it only shows on one. Has anyone worked around this before? ...

How can we prevent popup windows appearing on top of the application?

I have a fullscreen window, and I want to prevent pop up windows that appear at the right bottom corner of my screen. I set the Topmost property to true, but apparently it does not help. I also tried activating the form and giving it the focus once it got deactivated, but that did not help either. What is a way to ignore such windows whi...

Mac OSX fullscreen application problem

My application uses SDL library. For enter to fullscreen mode I use SDL_SetVideoMode and appropriate flag - SDL_FULLSCREEN. Problem: When application is in fullscreen mode, I can't call "force quit" dialog and switching between other applications. After Cmd+Option+ESQ clicking my application is quit instead of "force quit" dialog is app...

[WPF] Borderless window application takes up more space than my screen resolution

Hello All I have created a borderless application in WPF, and it works pretty good. However, when I set the WindowState to full screen, the application takes up more space than my screen resolution, so there are some pixels outside the screen in all directions! (looks like some hard coded negative margins are added to hide the default b...

Switching between fullscreen and windowed in Mac OS X

I have a project in the works with OpenGL and SDL. Users have the option of using a full-screen or windowed mode for the display. I use SDL_SetVideoMode to set up the window, but this solution destroys the original SDL_Surface context (so all my OpenGL textures get cleaned too). How can I correctly switch between full-screen and window...

[iPhone]A zone which user can't interact, why?

Plese refer to below image to get detail of my problem: This maybe relate to Status bar??? *Note: this is a full-screen application. My way to do this: 1. add "Status bar is initially hidden" information property to xxx-Info.plist. 2. In all screen of app: set "Status Bar" to none. ...

disable or change shortcut of fullscreen mode in Firefox 3.6 due to Firebug shortcut conflict

Hi, I am using Firebug with Firefox 3.6 on OSX 10.5.8. Since FF 3.6 there is a shortcut to activate fullscreen mode which is "shift" + "command" + "F". But it is the exact same shortcut of Firebug to launch "Display Element Information". Since i never and don't really need fullscreen mode and use extensively the "Display Element Inform...

Make iPhone status bar disappear when displaying a modal view?

I want to display a modal view, and want it to cover the iPhone's status bar. I tried setting the modal view controller's wantsFullScreenLayout property to YES; I also set its parent's property to YES as well. This doesn't work, presumably because the modal view displays below the main window's content, which includes the status bar. M...

How do utilize the fullscreen in ActionScript?

Does anyone know how to make your website fill the entire screen in ActionScript? ...

How to make a div fullscreen and atop of all other elements with jQuery?

<div style="background-color:grey"> </div> Is there an easy way to do it? ...

FLVPLAYBACK Fullscreen problem with IE/Vista

I'm having a problem making my FlvPlayback go full screen. in FF it works great but in IE (8) it will only work once! the next time, it will flicker and return to normal state. Any ideas? ...

How to prevent a full screen double buffered app from screen freeze when debugging it?

I'm making a full screen app that uses double buffering. The problem is a following: when I debug it and the debugger pauses the process (breakpoint hit or exception thrown), the secondary buffer may got stuck on the screen. In this case I only see the current frame and the mouse pointer and I can interact with the IDE's UI but I don't s...

Prevent exit fullscreen when "ESC" is pressed in Flex

We have a Flex application which goes fullscreen on startup (which is possible when it's a projector .exe). When a user presses ESC, the application exits fullscreen mode. Is there any way to prevent this? This because we want to use the ESC-key for other functionality. Normally all keyboard input is disabled in fullscreen mode, but not...

How to display a Windows Form in full screen on top of the taskbar?

I have a .net windows application that needs to run in full screen. When the application starts however the taskbar is shown on top of the main form and it only disappears when activating the form by clicking on it or using ALT-TAB. The form's current properties are as follow: WindowsState=Normal TopMost=Normal Size=1024,768 (thi...

Embed .swf in webpage and make it fullscreen

Is there a way to embed a .swf file in a webpage and provide a way to make it fullscreen? I'm creating these files with Adobe Captivate, which doesn't seem to provide a way to publish in other usable formats (.avi files are too big, and no .flv is available, to which there seem to have some players around that allow fullscreen). If ther...

Height of div 100%

Hello. I want to make a div 100% height, so basically the full screen. This, so that the background streches over the whole page. I don't want to add the background to the body, since i want it so that if i comment out the wrapper, the page is full width. (which works by the way) So basically my question is: how can i make the wrapper...

Problem with fullscreen OpenGL on the Mac

Hi, programmers! Now I am porting some OpenGL tutorials from win/glut to cocoa/mac os x. In the windowed mode everything works, but when context switches to fullscreen, screen may be empty (only clear colour)! For example: in the first, second, third times cube is, but in the fourth time cube is not. Even if app launches in fullscreen w...

making a java panel fullscreen

hello, how would you make a JComponent (panel, frame, window, etc.) fullscreen so that it also overlaps everything on the screen including the windows startbar? i dont want to change the resolution or anything with the graphics device like bitdepth etc, i just want to overlap everything else. thanks! ...