Tagged Questions

A fullscreen object occupies the screen entirely.

learn more… | top users | synonyms (1)

43
votes
19answers
49k views

Is there a way to make HTML5 video fullscreen?

Is there a way to play a video fullscreen using the HTML5 <video> tag? And if this is not possible, does anybody know if there is a reason for this decision?
31
votes
10answers
45k views

How to make in Javascript full screen windows (stretching all over the screen)

How can I make full screen in JavaScript that works in IE, Firefox and Opera. When I mean full screen I mean one that takes all of your screen
16
votes
5answers
19k views

iPad WebApp Full Screen in Safari

Apple says, the code <meta name="apple-mobile-web-app-capable" content="yes"> is supposed to make the the web app full screen from iPhone OS 2.1 and later. (Source: ...
16
votes
4answers
21k views

How do I set the window / screen size in xna?

How can I adjust the size of the window in XNA. Default it starts in a 800x600 resolution.
15
votes
2answers
10k views

XNA: get screen's width and height

how do i get the width and height of the entire screen in XNA?
14
votes
1answer
315 views

SDL OpenlGL Alt-tab in fullscreen has unpredictable results

I am writing a game in C++ using SDL 1.2.14 and the OpenGL bindings included with it. However, if the game is in fullscreen and I Alt-Tab out then back into the game, the results are unpredictable. ...
13
votes
3answers
1k views

Chrome Fullscreen API

According to this article Google Chrome 15 has a fullscreen JavaScript API. I've tried to find make it work but failed. I've also searched for official documentation in vain. What does the ...
13
votes
4answers
4k views

Why Direct3D application performs better in full screen mode?

The performance of a Direct3D application seems to be significantly better in full screen mode compared to windowed mode. What are the technical reasons behind this? I guess it has something to do ...
12
votes
6answers
11k views

MPMoviePlayerController fullscreen quirk in iPad

I want to show a MPMoviePlayerController in a view controller and let the user toggle full screen with the default controls, like the YouTube app. I'm using the following code in a bare-bones example: ...
11
votes
2answers
420 views

Mac OS X Lion: Detect if another application is running in full screen mode?

In a Cocoa app, is there a way to tell if another application currently is in full screen mode? My application is configured to show up on all Spaces and listens for mouseEntered events to order ...
11
votes
1answer
14k views

Fullscreen widget

i have a question. How can i make my widget fullscreen? I've tried something like this: void MainWindow::SetFullScreen() { // Make our window without panels this->setWindowFlags( ...
11
votes
5answers
22k views

Hiding Title in a Fullscreen mode?

Is there a way to hide the window title so that it won't get shown in fullscreen mode ( getWindow().setFlags(LayoutParams.FLAG_FULLSCREEN, LayoutParams.FLAG_FULLSCREEN) ) but then will ...
10
votes
6answers
9k views

C# - Why won't a fullscreen winform app ALWAYS cover the taskbar?

I'm using Windows Vista and C#.net 3.5, but I had my friend run the program on XP and has the same problem. So I have a C# program that I have running in the background with an icon in the ...
9
votes
4answers
2k views

making a java panel fullscreen

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 ...
9
votes
3answers
1k views

Detecting if a browser is in full screen mode

Is there any way of reliably detecting if a browser is running in full screen mode? I'm pretty sure there isn't any browser API I can query, but has anyone worked it out by inspecting and comparing ...
9
votes
6answers
22k views

How do I center a UIImageView within a full-screen UIScrollView?

In my application, I would like to present the user with a full-screen photo viewer much like the one used in the Photos app. This is just for a single photo and as such should be quite simple. I just ...
8
votes
8answers
963 views

Mono winforms app fullscreen in Ubuntu?

Just wondering if there's a known way of getting a Mono System.Windows.Forms application to go fullscreen on Ubuntu/Gnome. Mono is 2.4.2.3 Ubuntu is 9.10 Doing it on Windows requires a pinvoke, ...
8
votes
5answers
1k views

Flash: Using mouse wheel events in full screen mode (Windows and Mac)

Although Flash has a mouse wheel event (MouseEvent.MOUSE_WHEEL), it comes with quite a few problems. The first is that the event is not yet supported on the Mac. So there are a bunch of solutions, ...
8
votes
4answers
2k views

How to program a full-screen mode in Java?

I'd like my application to have a full-screen mode. What is the easiest way to do this, do I need a third party library for this or is there something in the JDK that already offers this?
7
votes
6answers
3k views

Overlaying on a 3D fullscreen application

I want to display some custom graphics on top of a 3rd party fullscreen Windows application. Have you played any Steam games? It has an executable, GameOverlayUI.exe that lets you access Steam ...
7
votes
6answers
2k views

Going fullscreen on secondary monitor

How can you program a dotNet Windows (or WPF) Application in order to let it going fullscreen on the secondary monitor?
7
votes
3answers
8k views

iPhone how to create a full screen app?

I've been trying to create a full screen view. I plan on using core graphics for rendering. I am new to iPhone development so please forgive this basic question. Here's my setup code; - ...
7
votes
7answers
4k views

How do I get rid of the mouse cursor in full-screen exclusive mode?

I'm working on a simple 2D game engine in Java, and having no trouble with FSEM, buffer strategies, and so on; my issue is with the mouse cursor. In windowed mode, I can hide the mouse cursor, no ...
7
votes
2answers
163 views

Is there a way to maximise the current tab in Visual Studio?

I sometimes need to use Visual Studio when I have limited screen real estate (remote desktopping from a laptop for example). It would be really useful to be able to make the currently selected code ...
6
votes
8answers
427 views

Strange behaviour when using WebView and RelativeLayout in fullscreen

EDIT: Here's the video showing the problem: www.youtube.com/watch?v=5ZZsuMH5T9k I'm really stuck here :/ -- I have an activity which consists of a webview and a button at the bottom. I set the ...
6
votes
4answers
797 views

Fullscreen feature for Java Apps on OSX Lion

How can I (natively) implement the fullscreen feature of OSX Lion in a Java application? The current answers given incorporate a good method for achieving a sort-of-fullscreen feature. I've read that ...
6
votes
1answer
720 views

Recompose Activity layout to play video in fullscreen when screen is rotated

In an Activity I have embedded a Video widget (VideoView or MediaPlayer associated to a SurfaceView) which size should be adapted when the screen is rotated. This Activity is used as content in a ...
6
votes
2answers
2k views

How to make a Mac OSX Cocoa application fullscreen?

I have been trying to make my Mac application enter fullscreen now for a while but can't get it to work. According to the Apple developer center, I should use enterFullScreenMode:withOptions: which ...
6
votes
1answer
446 views

How do I make a MPMovieController fullscreen view on top of a UIPopoverController?

I have successfully put a MPMoviePlayerController in a UIPopoverController by doing: NSString *filenameString = [NSString stringWithString:[[helpVideosArray objectAtIndex:tagNumber] ...
6
votes
2answers
2k views

Problem with notification bar in fullscreen app

I run an app in fullscreen mode where fullscreen is defined as a theme in xml for the entire app. <style name="MyAppTheme" parent="android:Theme"> <item ...
6
votes
7answers
2k views

How can I avoid flicker in a WPF fullscreen app?

I have a WPF application that is a fullscreen kiosk app. It's actually a pretty complicated app at this point, but here's some code that shows the basic idea. Essentially, whenever the user goes ...
6
votes
3answers
8k views

How to make full screen java applets?

I am designing a psychology experiment with java applets. I have to make my java applets full screen. What is the best way of doing this and how can I do this. Since I haven't been using java ...
6
votes
2answers
3k views

Display os x window full screen on secondary monitor using Cocoa

I'm working on a Cocoa Mac app where I need to display a window/view on a secondary monitor, full-screen. I know how to create a window that could be dragged onto the secondary monitor, but I was ...
5
votes
2answers
263 views

obtaining full desktop screenshot from the GPU

I have been using the Windows API's BitBlt function to perform the screen grab. There are many drawbacks however: DWM and Aero cause a massive slowdown (3ms --> 35ms just to call BitBlt) -- to ...
5
votes
1answer
1k views

Flash inside Android WebView - How do i set fullscreen automatically?

I am loading flash SWFs into an android WebView. I want the SWF to be instantly fullscreen and focused. The class name that handles flash is com.adobe.flashplayer.FlashPaintSurface . Watching the ...
5
votes
3answers
2k views

WPF full sreen on maximize

I basically want to have my WPF window to go in full screen mode, when F11 is pressed or the maximize button in the right top corner of the window is pressed. While the following works like a charm ...
5
votes
4answers
1k views

C# full screen console?

I have seen that Windows can switch to the very basic console interface when updating the video drivers and I have also seen programs like Borland C++ doing this. I'd really like to know how to make ...
5
votes
3answers
1k views

How to fullscreen a QGLWidget?

I am new to OpenGL and Qt, and I am learning both simultaneously(3 days already:). I couple of years ago I did some exmerimenting with DirectX and I clearly remember that it was possible to make a ...
5
votes
1answer
538 views

Simulate F11 with javascript

How can I simulate F11 (fullscreen not maximaze browser window) as with flash: http://www.broculos.net/files/articles/FullscreenFlash/flashFullscreen.html ? in flash: fscommand("fullscreen", true ) ...
5
votes
2answers
565 views

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, ...
5
votes
3answers
77 views

[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" ...
5
votes
3answers
1k views

Borderless window application takes up more space than my screen resolution

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 ...
5
votes
4answers
4k views

Allow Silverlight (and Flash) Apps To Remain Full Screen

I'm writing a Silverlight application that can go "full screen" (think YouTube full screen). This is simple enough. However, I want to offer the user the ability to KEEP the app full screen even if ...
5
votes
8answers
4k views

Detecting if fullscreen is allowed in ActionScript 3.0?

I would like to remove a fullscreen button if the allowfullscreen param is false.       param value="true" name="allowfullscreen" Does anyone know if its possible to ...
4
votes
1answer
262 views

Is there a graceful way to handle toggling between fullscreen and windowed mode in a Windows OpenGL application?

I'm wondering if it's possible to toggle back and forth between fullscreen mode and windowed mode in an OpenGL window(I'm writing for Windows using C++ and win32), without destroying the OpenGL ...
4
votes
1answer
155 views

NSControl flickers on NSView attached to a NSView in full screen mode

The setup: My application has background views that are set into full screen mode using enterFullScreenMode:withOptions:. To these background views I move a content view as a subview using ...
4
votes
1answer
490 views

OpenGL fullscreen OS X 10.7 Returning Errors

I'm trying to implement a program that takes a snapshot of your screen & saves the snapshot on your desktop. This program worked fined on 10.6 but when I imported it on 10.7 I get "invalid ...
4
votes
2answers
823 views

How to know if a NSWindow is fullscreen in Mac OS X Lion?

I guess I should check if [NSApplication presentationOptions] contains NSFullScreenModeApplicationPresentationOptions, but how do I achieve that? EDIT: using [NSApplication presentationOptions] ...
4
votes
2answers
373 views

minimize fullscreen Xlib OpenGL Window

I'm currently trying to enable alt-tabbing out of my fullscreen Xlib OpenGL window, but am having some difficulties. I've tried XUnmapWindow(..), which kindof works, but the resolution does not reset ...
4
votes
3answers
2k views

Can I avoid the native fullscreen video player with HTML5 on iPhone or android?

I've built a web app that uses the HTML5 tag and JavaScript code that renders other content synchronized with the running video. It works great in desktop browsers: Firefox, Chrome, and Safari. On an ...

1 2 3 4 5 14