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
2 answers

Same KeyCode for setting/exiting fullscreen - JavaFx

I use this to setFullScreen(): scene.setOnKeyPressed(new EventHandler() { @Override public void handle(KeyEvent e) { if(e.getCode() == KeyCode.F11) { stage.setFullScreen(true); } …
user8491933
1
vote
1 answer

Windows 10. Python. VLC in fullscreen mode does not play in foreground

I have a python daemon process which periodically starts VLC player in fullscreen mode, plays some video and stops it: import vlc ... player = vlc.MediaPlayer() player.set_fullscreen(True) ... player.play() ... player.stop() ... But if I open or…
1
vote
2 answers

Fullscreen image rendering on iPad web app

I'm displaying a view with multiple full-sized (768x1024) images on iPad web application. Images are inside separate divs floating next to each other. These images are preloaded. The transition between images are done with…
Samuli Hakoniemi
  • 18,740
  • 1
  • 61
  • 74
1
vote
3 answers

cmd/ batch command to make windows FULL FULL SCREEN

I'm just wondering if there is a cmd/batch command out there to make a file full screen. I'm not just talking about maximized I'm talking about like full screen like when you are playing a game. I know that /max makes the program maximized not FULL…
jish Bailey
  • 15
  • 1
  • 1
  • 5
1
vote
0 answers

Magnific Popup to open in Mobile with fullscreen

First question: How can I open the magnific popup window 100% height and width of the mobile screen. Second question is I want to add loader image before the ajax popup is loaded. $(document).ready(function() { …
Babar
  • 75
  • 1
  • 7
1
vote
3 answers

Console/Command Prompt Full screen in Windows Vista/7

Is there a way to get the console windows full screen in Windows Vista/7? I'm looking for a distributable C/C++ solution, library, or emulator. Microsoft's "solution" is to install a VM which is pretty ludicrous. The relevant super user's question…
Eugene
  • 10,957
  • 20
  • 69
  • 97
1
vote
1 answer

Applescript Fullscreen app and arrange order in High Sierra

Hello and thanks for taking the time to help. I have limited coding experience in AppleScript. What Im trying to do is create a script that will open, set to fullscreen, and then arrange several applications that I use regularly. I added some logic…
1
vote
0 answers

full screen app: stuck navigation bar

I wrote an app that is composed by a full screen webkit object. So, as soon as the activity starts, i set these…
Mark
  • 645
  • 2
  • 9
  • 27
1
vote
1 answer

Libgdx controller unresponsive after making application fullscreen

When making the application full screen with the following call: Gdx.graphics.setFullscreenMode(Gdx.graphics.getDisplayMode()); I no longer have signals from my controller. The issue is not solved by changing the display back from full screen…
Enigma22134
  • 532
  • 5
  • 12
1
vote
2 answers

How do you Fullscreen RTSP Stream in Android LibVLC?

I'm using mrmaffen's VLC-ANDROID-SDK to develop an RTSP streaming app. https://github.com/mrmaffen/vlc-android-sdk I've had a lot of success getting it working and running quite well, but the problem I'm having that I can't seem to shake is getting…
Johan Jarvi
  • 297
  • 6
  • 13
1
vote
2 answers

applescript: set fullscreen of RealPlayer application

I'm in the process of creating a HTPC using my mac mini. I need to be able to start a RealPlayer clip and set it to fullscreen(not maximize window). I've got this so far. tell application "RealPlayer" open clip with URL "" end tell delay…
purplecones
  • 77
  • 1
  • 9
1
vote
1 answer

Cannot install Cordova Fullscreen plugin, platform=Windows 10

I'm using Cordova to create a Universal Windows 10 app for the desktop. I'm having problems installing the Fullscreen plugin at https://www.npmjs.com/package/cordova-fs-plugin-fullscreen . I use the CLI and cd to my project folder. When I use the…
Jim Andrews
  • 375
  • 1
  • 2
  • 14
1
vote
1 answer

CSS fullscreen box working in firefox but not in Chrome

I'm working on a simple "Dead Pixel Finder" webpage. I have code that works in Firefox Quantum, but not in Chrome. In the script section I have code that enables Fullscreen API when page is clicked. And it works fine in Firefox Quantum. .... …
Dacobi
  • 417
  • 4
  • 14
1
vote
1 answer

Cant exit fullscreen on tkinter window python

Im trying to make this window fullscreen, then be able to escape with any key. I can't bind the escape key to actually escaping the window, can't figure out where it's going wrong from other similar posts too. Here is the code: import tkinter as…
Jkind9
  • 742
  • 7
  • 24
1
vote
3 answers

Preventing Screenshots (Print Screen) In Full screen Application

I have a need to prevent screenshots made by Print Screen button. And by third party software. I decided to use fullscreen so they can't use their third party software to make a screenshot. But I still have no clue how to prevent screenshot. PS.…