Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
51 views

I'm building a floating mic/system audio visualizer widget in Electron. The widget uses a panel type BrowserWindow that stays on top of all windows, including fullscreen apps. The issue is that when ...
Johannes Bingen's user avatar
0 votes
0 answers
67 views

I'm trying to get fullscreen for iframe element immediately responsive to user input (e.g., keyboard input) without having to manually click when fullscreen to get the fullscreen responsive (think of ...
Francis Mike Nathan's user avatar
0 votes
1 answer
229 views

I am attempting to cover the entire screen (iPad and iPhone) while using a TabView, but there always remains the bottom strip that is not covered. struct CoverTestApp: App { var body: some Scene { ...
Pete's user avatar
  • 213
0 votes
2 answers
172 views

I want my program to be full screen so I use the following line of code in constructor of my frame class: static GraphicsDevice device = GraphicsEnvironment.getLocalGraphicsEnvironment()....
Yash's user avatar
  • 21
0 votes
1 answer
62 views

I'm using SDL which reads the operating system input. There is no special message for alt + enter, and so whereas the window gets special message from combinations of keys (such as alt + f4), alt + ...
Zebrafish's user avatar
  • 16.3k
0 votes
1 answer
135 views

I have a simple web application to display media files (images as well as videos). By default, the application uses part of the screen for controls and the rest for display of the media files. One of ...
FDavidov's user avatar
  • 3,755
0 votes
0 answers
58 views

I have a dashboard that updates every 5 seconds, and it's displayed on a TV. I implemented a fullscreen toggle button using JavaScript, but every time the page refreshes or the content updates (using ...
Carlos Machado's user avatar
-1 votes
1 answer
116 views

I'm trying to open Windows Explorer using Google Apps Script. I'm not looking for a specific folder or anything, just to open. I run my Google Sheet in full screen mode and don't have the Windows ...
melrin's user avatar
  • 3
0 votes
3 answers
195 views

I have 2 views: import SwiftUI struct SwiftUIView: View { var body: some View { NavigationStack { ... //show SwiftUIView2 } .toolbar { ... }...
Gargo's user avatar
  • 1,380
0 votes
0 answers
25 views

My application is using Qt5.14 single QMainWIndow. I am on X11 Debian based Linux. I need to make App window fullscreen but multimonitors must be supported and fullscreen means cover all monitors and ...
nckm's user avatar
  • 123
0 votes
0 answers
37 views

I'm attempting to implement a Full Screen option in my Java app (user request). I've tried this: private void toggleFullScreen() { dispose(); setUndecorated(true); setExtendedState(MAXIMIZED_BOTH); ...
Willicious's user avatar
0 votes
1 answer
75 views

import SwiftUI import Combine struct ContentView: View { @State private var activityTimer: Cancellable? @State private var activityCountDownInterval: TimeInterval = 3 @State private var ...
Mark's user avatar
  • 18.4k
0 votes
0 answers
59 views

When I tried to get into full screen mode with keybinds disabled with JavaScript, I had to use navigator.keyboard.lock(). So that's what I did (w/o Live Server) and everything worked just fine. But ...
winikol's user avatar
  • 11
0 votes
0 answers
49 views

When a video in Safari is played in fullscreen mode and the user pauses it, an overlay (such as a play button or other controls) appears. This affects the user experience, as we want to avoid showing ...
Oleksii Shalkevych's user avatar
3 votes
1 answer
197 views

When creating a GPU-accelerated window, Nvidia's GeForce Experience likes to inject its overlay and notify users of this: Is there a way to automatically indicate to this software that your program ...
orlp's user avatar
  • 119k
1 vote
1 answer
34 views

Just as the title says. When putting the swf in fullscreen it smooths the graphics (not sure what method it is using, perhaps anti-aliasing?) and I can not find anything online that is in any way ...
Koden's user avatar
  • 41
0 votes
1 answer
166 views

Black space at the top. I'm working on an intro page for my Flutter app using the Scaffold widget and I wanted to hide the tab views, but I'm encountering an issue with the background color not ...
Jonathan Getachew's user avatar
1 vote
0 answers
56 views

my code is: from tkinter import * import tkinter as tk def minimize_window(): root2.iconify() def exit_fullscreen(): root2.destroy() def new_root(): global root2, time_label ...
SHEETAH's user avatar
  • 11
0 votes
1 answer
46 views

I have Windows code where I put my app into fullscreen mode. Part of that involves auto-hiding the app bar when entering the mode and restoring the state of the app bar when exiting the mode. However, ...
RDH's user avatar
  • 49
-1 votes
1 answer
197 views

I need to add a fullscreen blurred background to the dialog. but I'm unable to hide the status bar or draw beneath it. How should I resolve this? Here's the code: Dialog( onDismissRequest = ...
rocker wang's user avatar
0 votes
1 answer
118 views

Apple released some new SwiftUI modifiers for ScrollView in iOS 17 that allow for paginated scrolling, but I need something that will work in iOS 15 and later.
wristbands's user avatar
  • 1,427
1 vote
0 answers
168 views

I have a very simple DirectX 11 window, it renders correctly in windowed mode and is capable of switching to a Fullscreen Optimised (FSO) swapchain without issue. This is achieved via DXGI and ...
Tim Kane's user avatar
  • 2,789
0 votes
1 answer
2k views

I can't figure out how to Fullscreen my embedded ruffle player on Google sites. For background, I am trying to make a personal unblocked games website for me to play flash games at school because all ...
Shane Mckinney Cavin's user avatar
0 votes
0 answers
64 views

I'm creating a website in html, css and js that has a fullscreen function. Within this website I have a navigation bar that is changing the content displayed with innerHTML. The issue I'm facing is ...
Linnéa Andersson's user avatar
0 votes
1 answer
604 views

I have doing my project and use MaterialReactTable. There are features in it. Toggle Full Screen is also in it where all table show in full screen. I also have my website Header. I want to show Header ...
Hamza Qadir's user avatar

1
2 3 4 5
70