Questions tagged [minimized]

A minimized object is one that has been replaced with an object that can restore the original when selected.

In a graphical interface, a minimized object is one that has been replaced with an object that can restore the original when selected. The original object is often a window; the minimized form is often an iconic button located in a system dock, tray or task bar.

93 questions
1
vote
1 answer

My program is running, but it is minimized

def Poland(): import turtle as t t.bgcolor("black") t.width(10) t.color("white") t.forward(50) t.right(90) t.penup() t.forward(10) t.right(90) t.pendown() t.color("red") t.forward(50) Z =…
Luka
  • 13
  • 4
1
vote
1 answer

Program that listen keyboard events when its minimized? Windoiws Forms C#

I wanted to ask.Im doing a program that when its minimized or some other window are opened to read my keys and if "specific" is pressed to do something. I used InputSimulator but its working only when a program is in normal window state.if program…
1
vote
1 answer

document.hidden is incorrectly false when used in a WebBrowser control

I want to detect when a window is minimized in JavaScript, so I am using document.hidden. In the below snippet, click "Start" and minimize the window by clicking the minimize button, toggling the application icon in the taskbar, using Win + Down…
pushkin
  • 9,575
  • 15
  • 51
  • 95
1
vote
0 answers

How to open/run java / .jar minimized by using cmd console?

I found different possibilities to open Windows applications minimized from cmd.exe. Best related topics I found were: open program minimized via command prompt and Run Java console app as a daemon (background) What I couln'd get working is running…
budist
  • 61
  • 6
1
vote
1 answer

Debug view minimizes when JUnit tests have finished

Since some weeks I have the curious behaviour of IntelliJ Idea that when a Junit test (or a whole class with several tests) has finished running the debug/run window that shows the test results minimizes. This forces me to open the window again.…
Sebastian Barth
  • 4,079
  • 7
  • 40
  • 59
1
vote
1 answer

How to program keystrokes on a single app in Windows after minimizing?

I'm able to program certain automated tasks using AutoHotKey but it requires that I have the app window open. In other words, I can't Alt+Tab away from the app or else the AutoHotKey script won't work. Is there a way I can program certain…
1
vote
1 answer

xhr requests timeout when chrome is minimized

I work on a web application which gets push type updates from a rest server using a long polling technique. It runs setTimeout() which executes a function which does a xhr GET request with a timeout of 120 seconds. It also sends the server a…
1
vote
1 answer

How to add Slides in Powerpoint by Access VBA keeping it minimized only

I am creating a powerpoint file and adding slides into it programmatically through Access-VBA and it is working fine till now. But Now, the client wants that the ppt should be invisible or minimized during generation only. Just after activating the…
Hemant Sisodia
  • 488
  • 6
  • 23
1
vote
1 answer

javascript reload page every 5 seconds when browser is minimized

Actually we Play a notification sound when some update happens in database, so I am trying to reload page every 5 seconds when browser in minimized, this works fine in Firefox , but in Chrome this doesn't work. Scenario: Minimize the browser and…
Shaiju T
  • 6,201
  • 20
  • 104
  • 196
1
vote
0 answers

Pause Iframe video when window is minimized or the tab is changed

I achieved that for default html videos thanks to my question: HTML video pause when window is minimized But now I started to use a video preparation application that generates videos with some additional features(subtitles, search in subtitle…
abidinberkay
  • 1,857
  • 4
  • 36
  • 68
1
vote
1 answer

Keep Cocoa Window Minimized When App Displays NSAlert

I'm having difficulty determining how to keep an application minimized when it's running and it displays an NSAlert. The short of it is that I have an application that is transferring data, and it displays an NSAlert when it finishes the transfer.…
P.M.
  • 436
  • 6
  • 12
1
vote
1 answer

Run chrome in minimized mode

I am trying to open google chrome with C# but I don't want to see it when it opens. I tried to add process.StartInfo.WindowStyle = ProcessWindowStyle.Minimized; but it does nothing. I found out that i can use parameters to lunch chrome like…
MyNick
  • 536
  • 1
  • 9
  • 25
1
vote
1 answer

Android: How to check that the application has been brought to the background for avoiding not needed BroadcastReceiver checks

The question is simply easy: Explanation: What I am doing is to have a BroadcastReceiver that is called everytime the state of the GPS changes (enable or disable) and notifies to the user if the GPS as been disable, inviting him to reenable it…
1
vote
1 answer

Run VB.net program minimized

As shown in the picture, I want my vb.net application to run minimized like that a show a pop-up when the minimize button is hit. Is there a way I can do that?
user3292210
  • 13
  • 1
  • 3
1
vote
1 answer

How to start Android notification as minimized

I'm creating a notification with both minimized (normal) and maximized (bigView) views. But when I launch the notification it always starts with maximized view. Is there any way I can set the default view to the minimized one ? Thanks
SagiLow
  • 5,721
  • 9
  • 60
  • 115