fullscreen

C# : Direct3D in a control, AND fullscreen on a secondary monitor - what's the best way ?

I'm working on a C# application that needs to use Direct3D in a control in a windows form, AND (at the same time) fullscreen on a secondary monitor. Basically, I want a Windows Forms application on one screen with a user-interface to control the graphics, and I'd like to show preview-graphics in a small control, and full-blown superdupe...

entering fullscreen on subclassed NSOpenGLView leaves empty window

hello, i have an application with 2 windows, one is a custom subclassed NSOpenGLView and one is displaying some standard cocoa user interace. making the opengl view go fullscreen (only on one NSScreen) works by calling enterFullScreenMode and exitFullScreenModeWithOptions and supplying the right screen and setting NSFullScreenModeAllS...

Win32: full-screen and hiding taskbar

Hello, I have a window, which I SetWindowPos(window, HWND_TOP, 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN), SWP_FRAMECHANGED); It covers the whole screen, ok, but it takes a while (0.5 sec) to cover the taskbar as well. Is there a way to come over the taskbar immediately? I found that setting HWND_TOPMOST does i...

AS3: How to get fullscreen and keyboard input?

Since flash doesn't allow keyboard input while in fullscreen mode I'm wondering if there is a workaround to that? I have a flash that is going to run fullscreen in a browser and needs different kinds of keyboard input. I have read something about AIR, but I don't fully understand it and would like another way if thats even possible. An...

What is the right way to scale a Flex application up to fullscreen?

Fullscreen mode and I have been battling for a while in this Flex application, and I'm coming up short on Google results to end my woes. I have no problem going into fullscreen mode by doing a Application.application.stage.displayState = StageDisplayState.FULL_SCREEN;, but the rest of the content just sits there in the top, left corner ...

Create semi-transparent overlay to mimic UIAlertView or UIActionSheet?

In the iPhone app that I am currently developing, I present several "alert" views that mimic the behaviour of UIAlertView and UIActionSheet. These views require non-standard elements that are not available in UIAlertView or UIActionSheet. Rather than attempt to subclass either, I have created my own classes so that I can easily customi...

How to fix ComboBox dropdown issue in fullscreen?

Short version: ComboBox's dropdown works and renders properly before fullscreen, but not during or after. I'm not totally sure how to ask this, so I've actually made a page demonstrating the error, with a very simple Flex app, and all three directions you need to experience the problem yourself. For those of you not daring enough to fo...

MacOS. SDL. How to hide fullscreen window

Is this possible to hide fullscreen window (SDL based application)? How can I do this? ...

Keeping an application on top and in focus - always

I am creating a kiosk application and I want to ensure it is always, no matter what, on top of other Windows applications and the Windows task bar. I am already blocking Windows keyboard commands (alt-tab, etc) but there are still situations that could cause an application to launch and steal the screen. Is it possible to hook into Win...

How to do flash fullscreen in facebook application?

Farmvilli can do fullscreen. HappyIsland can do fullscreen. But what is the trick to enable flash fullscreen in facebook application ? Thanks for reading ...

ActionScript shiftKey Not Working In Full Screen Mode?

i've drawn an ellipse sprite and added it to the display list of a container, which is added to the display list of the stage. to move the sprites with the keyboard arrows, it appears that my shiftModifier:Number variable is not working when the stage's display state is set to full screen. shiftModifier works as it should when the stag...

WPF: Displaying two windows simultaneously (extended desktop) in full screen

Hi, I just want to find out how to run two WPF windows (one in extended desktop) while in Full screen mode. ...

MacOS. How to disable Expose

Is it possible to disable Expose programmatically? ...

Custom Monitor Resolution not recognized by Java

My weird monitor's native resolution isn't recognized by Windows, so I have to set a custom resolution for it. The problem is that java doesn't recognize it since it's not on Win7's "approved" list, so full-screen mode gets "stuck". Netbeans comes out of full-screen fine, so there has to be a way around this. Anyone know it? //Edit (3/2...

Exit browser full screen mode when F11 is hit while Flash object is active?

Hey, I have a 100% width and height flash object in my site. Activating and exiting browser full screen mode with F11 only works as long the user didn't click the Flash movie. And I doubt many users know they have to click the address bar to enable F11 after using a (browser) full screen Flash movie. Is there any way I can enable F11 t...

Fullscreen Window in Windows - Remove Border?

Many Windows applications (games, web browsers, some editors, etc.) support fullscreen mode, in which the application's client area covers the entire screen. As a Win32 developer, I have always implemented full-screen by removing the window's frames and title bar, and setting the window's position to (top, left, width, height) = (0, 0...

Flash Slide Presentation full screen

I am building my very first Flash Slide Presentation. However, I would like to enable full screen when the presentation starts. I placed: fscommand("fullscreen", "true"); In the first layer, first frame, of the first slide. And I use a .html file to launch to embed the .swf file. However, when I open the .html, a popup appears sayin...

Flash player freezes in fullscreen mode

A lot of users on one of our online apps complain about the app freezing in the fullscreen mode. I googled and came across many others complaining about this problem for other flash apps. Is it such a common problem, or are there known causes for it? ...

Broken flash movie player! allowFullScreen does not work with anything other than a wmode value of "window" (the default)

I have a flash player on a page which plays videos. I also have modal popups (made out of div elements) which need to be able to display over the top of the flash player when they are opened, etc... I can't change either of these requirements since they are part of the spec I have been given. Flash seems to ignore z-indexes I set on it ...

Using IVMRWindowlessControl to display video in a Winforms Control and allow for full screen toggle

I've recently switched from using the IVideoWindow interface to IVMRWindowlessControl in my custom Winforms control to display video. The reason for this was to allow zoom capabilities on the video within the control. However in switching over, I've found that the FullScreen mode from IVideoWindow is not available and I am currently try...