fullscreen Questions
4
Solved
I'm trying to make a C# application, which is going to control a game. That I'm trying to do is for example: Hold key A for 150ms, Hold left arrow for 500ms and so on.
I was searching a lot and I f...
Gerundive asked 2/5, 2013 at 15:59
6
Solved
I have experience with developing rich user interface application with flex and AS3. However the issue is its very hard to use existing c++ business logic with these flex apps. With the advent of Q...
Namhoi asked 26/1, 2012 at 5:32
3
Solved
I am trying to find out whether Safari is in fullscreen mode using Javascript. Chrome and Mozilla both use vendor-prefixed versions of document.fullscreenElement:
isFullscreen = function() {
retu...
Antipas asked 19/3, 2013 at 20:6
14
Solved
Is there any way to make my Dialog view full screen, i.e dialog occupy the entire screen (like an Activity). I tried using the LayoutParams and styles like
<item name="android:windowFullscreen"&...
Pastern asked 16/4, 2012 at 11:51
4
Solved
I am able to modify a standard youtube link:
https://www.youtube.com/watch?v=R0tHEJl_Y8E
to play in fullscreen mode:
https://www.youtube.com/v/R0tHEJl_Y8E
I would like to augment the fullscreen...
Damnify asked 24/5, 2016 at 0:45
2
Solved
Capacitor have in docs tutorial about screen orientation (https://capacitorjs.com/docs/v2/guides/screen-orientation#screen-orientation-in-your-capacitor-app), but how to toggle app to fullscreen? C...
Incomputable asked 27/2, 2022 at 21:40
8
I'm trying to make an application to run in full screen mode (without the top bar) in Safari for iOS 6.
The code is as follows:
var elem = document.getElementById("element_id");
if (elem....
Ganda asked 10/10, 2012 at 15:13
11
Solved
I would like to make my application such that it can maximize to full screen means it hide the windows task bar and the title bar as well. And it should triggered by a button.
I am trying to devel...
Finicking asked 26/8, 2014 at 6:28
2
Solved
I am using python and want to create a fullscreen window. I know about the pygame.FULLSCREEN flag but when I use that there's areas of black around the screen. Is there any way to get the monitor s...
Jarnagin asked 18/4, 2010 at 15:58
7
I'd like to create a TRUE fullscreen activity, but there is always a black status bar on screen top. Android 9.0.
I've tried almost all I can find with Google and existing Apps with similar jobs. ...
Inmate asked 29/5, 2019 at 5:34
2
How do I hide the tab bar in a ttk Notebook widget? I don't want to hide the frame that belongs to the tab. I just want to remove the tab bar from sight, even where it's not at the top of the scree...
Clippard asked 14/11, 2014 at 4:41
3
Solved
I've made custom controls for my HTML5 video but I don't know how to have that CSS still apply when I go fullscreen.
Here's the [website] I've based my controls on.
On this site, you'll notice t...
Heyerdahl asked 11/4, 2012 at 23:23
6
Solved
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 mak...
Surely asked 12/12, 2010 at 18:2
3
Solved
In GNU Emacs on OSX Mavericks, how can I hide the title bar even when I'm not in Mavericks full-screen mode? I'd rather have my Emacs fill the entire frame.
Elegize asked 3/6, 2014 at 17:40
2
I need to make an application that starts new program (ex. notepad) in fullscreen mode. Can I do that in c#?
I'd appreciate a code sample.Thanks:)
Dehypnotize asked 20/1, 2011 at 3:37
5
<div style="background-color:grey">
</div>
Is there an easy way to do it?
Irreverence asked 7/2, 2010 at 14:11
2
Solved
I use Angular 7 and I would like have a button for put my app in fullscreen. I use the HTML5 Fullscreen API and I've make 2 functions :
openfullscreen() {
// Trigger fullscreen
console.log...
Storekeeper asked 17/1, 2019 at 19:14
4
Solved
I have problems deactivating fullscreen mode with my program. Entering fullscreen happens correctly, but trying to go back to windowed mode doesn't work, the only effect is that the cursor gets sho...
Toilette asked 3/6, 2015 at 19:36
2
Solved
I have a page that has a video using the video tag. Also, my page uses the animate.css to add some animations to my elements. The issue is that when I use a style in the animate.css, My video does ...
Fluorspar asked 1/9, 2015 at 4:23
2
Solved
How to make PySimpleGUI app to be open in full screen, what I mean taking up the entire screen, not even leaving the task bar at the bottom of the screen?
This app will be running on Debian 8.
Ho...
Cardiomegaly asked 4/6, 2019 at 5:14
0
I want to show a short questionnaire on the Android look screen, as soon as the user locks their device. For this I detect a screen lock event and show an activity with a full screen intent notific...
Stanfill asked 11/3, 2022 at 11:24
6
Solved
I'm developing a video player application and I've faced to a problem. I have a custom video controller which contains a fullscreen button and I want hide the System UI (navigation and status bars)...
Ersatz asked 22/5, 2016 at 23:12
7
I need to put a screen in fullscreen in my app. For this I am using this code:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
requestWindowFeature(Window....
Biyearly asked 10/7, 2020 at 13:11
2
Solved
i'm making a simple game to show as final project. It will display a .bmp frame within the window and i have no intention of resizing the window while the game is running so i want to fix the windo...
Lindyline asked 23/11, 2013 at 0:42
4
Solved
I'm using this Swift code to take a screenshot of my app:
UIGraphicsBeginImageContextWithOptions(UIScreen.mainScreen().bounds.size, false, 0);
self.view.drawViewHierarchyInRect(view.bounds, after...
Handclasp asked 16/1, 2015 at 1:26
© 2022 - 2024 — McMap. All rights reserved.