3,495 questions
0
votes
0
answers
51
views
How to prevent Electron BrowserWindow from being throttled when other apps are in fullscreen on macOS?
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 ...
0
votes
0
answers
67
views
Code fullscreen element responsive by clicking fullscreen button? Simulate a mouse click?
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 ...
0
votes
1
answer
229
views
SwiftUI Full Cover of Screen With TabView Not Working
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 {
...
0
votes
2
answers
172
views
Problems in scaling Java swing to full screen also Windows is making it harder
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()....
0
votes
1
answer
62
views
Is alt + enter on Windows purely an application message/event?
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 + ...
0
votes
1
answer
135
views
Switching to full-screen yields different results when using the video button and a programmed equivalent
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 ...
0
votes
0
answers
58
views
How to keep fullscreen mode active on a TV dashboard that updates every 5 seconds in JavaScript?
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 ...
-1
votes
1
answer
116
views
Open Windows Explorer using a google script [closed]
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 ...
0
votes
3
answers
195
views
show fullscreen view with overlay in SwiftUI?
I have 2 views:
import SwiftUI
struct SwiftUIView: View {
var body: some View {
NavigationStack {
... //show SwiftUIView2
}
.toolbar {
...
}...
0
votes
0
answers
25
views
How to properly set QMainWindow fullscreen across dual monitors when monitors aligned bottom and left monitor has smaller resolution?
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 ...
0
votes
0
answers
37
views
setUndecorated() not working in Java app, causes "frame is displayable" error
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);
...
0
votes
1
answer
75
views
How can I make NSCursor hide in full screen macOS window?
import SwiftUI
import Combine
struct ContentView: View {
@State private var activityTimer: Cancellable?
@State private var activityCountDownInterval: TimeInterval = 3
@State private var ...
0
votes
0
answers
59
views
Why doesn't the fullscreen with 'navigator.keyboard.lock()' method work in a VSCode Live Server?
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 ...
0
votes
0
answers
49
views
Overlay appears in fullscreen mode in Safari when video is paused
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 ...
3
votes
1
answer
197
views
Is there a way to mark your application as "not a game" to prevent the GeForce Experience overlay from showing?
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 ...
1
vote
1
answer
34
views
How to disable smoothing in fullscreen? (AS3)
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 ...
0
votes
1
answer
166
views
Background Color Issue with Scaffold in Flutter, Hiding Tab views - Extra Black Space at Top
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 ...
1
vote
0
answers
56
views
is there function to make project open fullscreen mode with only an exit button (X) and a minimize button (-)?
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
...
0
votes
1
answer
46
views
How do I create a fullscreen window so the task bar on the same monitor auto-hides?
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, ...
-1
votes
1
answer
197
views
Android Compose: how can i code a fullScreen Dialog(no statusbar)
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 = ...
0
votes
1
answer
118
views
How to create a SwiftUI wrapper around UIPageViewController that works in full screen and when rotated?
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.
1
vote
0
answers
168
views
DXGI fullscreen swapchain rendering incorrectly on portrait orientation
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 ...
0
votes
1
answer
2k
views
How to Fullscreen Ruffle flash player embedded on Google sites
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 ...
0
votes
0
answers
64
views
Fullscreen API is preventing scroll
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 ...
0
votes
1
answer
604
views
How to customize MaterialReactTable Toggle Full Screen width and height?
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 ...