Questions tagged [fullscreen]

A fullscreen object occupies the entire screen.

An application is considered to be fullscreen if it takes up the full area of the screen, as opposed to being in a window.

Common uses for full-screen include playing videos, viewing photo or playing games.

In Microsoft Windows 8 and above, Windows Store applications are shown in a full-screen mode. Full screen mode can be entered/exited using the F11 function key.

In Mac OS X Lion and above, a number of applications have a full-screen mode, that can be activated by clicking the arrows control in the top-right corner of an application window.

An element in a Web page can be taken full-screen by using the Fullscreen API.

References

3484 questions
1
vote
3 answers

How to eliminate line break in that very specific context?

I try alomst every display:,,white-space,overflow:auto, etc, and search a lot on this site. How to eliminate does damns line breaks on that really specific case. Could you show me, even if its simple ? :) window.onload = function() { …
1
vote
0 answers

JavaFX: set fullscreen exclusive mode (FSEM) in non-mouse/keyboard-handler

my application consists of a TabPane named tabPane with, lets say, two Tabs: firstTab and secondTab. Whenever firstTab is selected, I want the application to be in FSEM (full-screen exclusive mode, see documentation); otherwise it should be in…
Sebu
  • 4,671
  • 5
  • 16
  • 29
1
vote
2 answers

Test Flash in Full Screen Mode

I am creating a flash, virtually it has 2 columns, right side play a video, and the left side will display some text. But there is a problem. The flash and text both are fine when I play flash in window mode, however, when I press Ctrl+F enters into…
Simon Guo
  • 2,776
  • 4
  • 26
  • 35
1
vote
0 answers

Switch to fullscreen

I started programming with the Google Cardboard v0.6 about a year ago. I really nailed what I was trying to do with this software. The problem is, my software requires a toggle between full screen and stereo screen modes which I have applied a…
1
vote
2 answers

Full screen standalone game in Unity3d

How to make my Unity3d standalone game run on full screen mode be default? I tried to change the player settings but without any luck. I don't wanna see any toolbar above my game, or any close or resize buttons.
Tal Angel
  • 1,301
  • 3
  • 29
  • 63
1
vote
0 answers

Can't get Fullscreen from manifest on Firefox

WRT: -Mozilla documentation After adding to homescreen, I am unable to lose any of the browser Chrome with Firefox on Android. (Samsung Galaxy S7) Chrome and Opera are fine, Samsung browser degrades to supporting "standalone" but Firefox still has…
McMurphy
  • 1,235
  • 1
  • 15
  • 39
1
vote
0 answers

How to increase HTML android full screen resolution?

My android device's screen resolution is 1920x1080 px. I wrote the code which requests a full screen on button click: document.documentElement.webkitRequestFullScreen(); When site enters to full screen mode the window object size is (640, 360).…
Ovidzikas
  • 113
  • 11
1
vote
1 answer

Python: Start program in full screen mode

I know how to open a program from python, using the webbrowser module. My question is this: how do I get it to open full screen? At the moment I have this code: import webbrowser webbrowser.open("file.txt") But it still opens Restored…
AskTom
  • 11
  • 1
  • 3
1
vote
1 answer

Full screen activity in landscape mode at the same time with configChanges

In my activity, I have an ImageView that moves to (100, 100) coordinates by clicking on it. I added following code before setContentView() in my activity to have full screen view in landscape mode: if (getResources().getConfiguration().orientation…
Arantik
  • 584
  • 8
  • 17
1
vote
1 answer

showing video on the entire screen using OpenCV and Tkiner

I'm trying to create a GUI for playing a video that fills up the entire screen, while the button for Snapshot is still visible at the bottom. Right now, What i manage to do is just set the app window itself to fullscreen, resulting a small sized…
David
  • 315
  • 3
  • 14
1
vote
1 answer

Background image not showing full width in Safari as well as iOS

I had added a background image as fullscreen. It works fine with Chrome and Firefox. But in Safari , the background image is not full screen but looks cropped.The same symptom applies with Safari on my Mac – as well as iOS (iPad/iPhone). The view…
Geethu Jose
  • 1,953
  • 2
  • 14
  • 30
1
vote
4 answers

Flex DisplayObject in fullscreen mode

I would like to make a display object fullscreen in my Flex application. I understand it is easy to make the complete Stage fullscreen in flex (example). But I have two charts on my Stage and I would like to make one of the charts full screen on…
andHapp
  • 3,149
  • 2
  • 21
  • 20
1
vote
3 answers

How do I turn off the back and next buttons on MPMoviePlayerController in full-screen mode?

I have an MPMoviePlayerController in my iPad app. When there's a video to view, the user taps on it, then can go full screen. However, if the user presses the NEXT button in full screen mode, the movie goes blank and the video can't be played…
jowie
  • 8,028
  • 8
  • 55
  • 94
1
vote
1 answer

100vh on mobiles is taller than a real visible part

I need to cover the whole visible part of browser window but using 100vh I clashed with problems on some devices and in some mobile browsers. First of all, in Safari browser url section hides a top part. Secondly, the same problem on some Android…
Alexander Shpindler
  • 811
  • 1
  • 11
  • 31
1
vote
3 answers

Full-screen between activities

I'm trying to use sticky immersive full-screen in my app (as described here). However, when switching activities the navigation and status bar will show up at first and after a few moments disappear again. Is there any way to ensure that my app…
1 2 3
99
100