Questions tagged [always-on-top]

Anything related to the "always-on-top" property of windows in a graphic user interface. Windows having this property are displayed on top of other windows that don't have it, regardless of whether these latter have currently the keyboard focus or are currently active.

Anything related to the "always-on-top" property of windows in a graphic user interface. Windows having this property are displayed on top of other windows that don't have it, regardless of whether these latter have currently the keyboard focus or are currently active.

The details vary greatly with the OS and the GUI toolkit used.

159 questions
0
votes
1 answer

Make cmd window on top of others

I am working on simple batch script to hide the password inputted by user. The solution is to create a popup and change text-color for that popup. Following is the code and it works properly @echo off Echo Please enter your password in the popup…
Liverpool
  • 131
  • 7
  • 12
0
votes
0 answers

Display new iOS UIView everywhere in existing app

I simply want to display a basic UIView in the top right corner of an existing app. The app is very complex with many different view controllers and layouts. What is the easiest way to create a view once and make sure it stays on screen over the…
Randy
  • 955
  • 9
  • 16
0
votes
0 answers

Change JFrame Properties From JTabbedPane

This is the class that makes the Frame and Tabbed Panes: package homeworkToolkitRevised; import javax.swing.*; import javax.swing.plaf.nimbus.NimbusLookAndFeel; import java.awt.event.*; public class MakeGUI extends JFrame { private static…
namsnath
  • 138
  • 1
  • 3
  • 11
0
votes
0 answers

Put Button on Top of Process Running in C# Form

I'm running a process in a form and need to cover part of the toolbar with a button. No matter what I do, if I click on the process the button falls behind. Could someone take a look at my code and offer any suggestions? Thanks! namespace…
0
votes
1 answer

Using QT on Linux, is there a way to disable "Always on Top"?

My problem: A QT 4 C++ application, to run on Linux, needs to lock down all sorts of routine GUI functionality. Specifically, I want to remove as much of the functionality of the title bar as I can. I was able to do most of that…
0
votes
2 answers

How do I make a section of an activity always-on-top?

Had a question about making part of a View Always-On-Top. Please see the Groupon picture below. The black window at the bottom where it says "From $29" & "Buy!" is always on top of the activity page. Meaning the rest of the page is scrollable above…
The Nomad
  • 7,155
  • 14
  • 65
  • 100
0
votes
1 answer

Android: in my application, can I add a view on other application?

For example, my app is called A and other app is called B. I want to do one of the followings: 1. click a button in A and it will trigger some event/function, so that I can have a Button on B when I switched from app A to app B. 2. click a button in…
Season
  • 1,178
  • 2
  • 22
  • 42
0
votes
1 answer

Do not want focus on Form with AlwaysOnTop set to True

In my application I use AlwaysOnTop = true setting for my Form object which at some points appears in the lower right corner. I want to keep that appearing on top because it gives an important warning, but it is very annoying that the focus is also…
Jacob Siemaszko
  • 346
  • 1
  • 5
  • 20
0
votes
1 answer

Always on top Popup windows

I need to have a popup window that will overlay a current window such that the user can click back and forth without the popup disappearing behind it. The popup must also be movable. I've tried a few pseudo popups like Zebra. They have a good modal…
0
votes
1 answer

Animation on screen without a taskbar item

I'm working on a project in Qt (PySide, but any Qt solution is welcome). I need to have an image fade in and do random animation. That is done, but it creates it's own taskbar item (yuck)! Code: self.img_Check =…
SilentSteel
  • 2,344
  • 1
  • 28
  • 28
0
votes
1 answer

How can I add a HUD using native Java to a 2.5D game

I have a 2.5D isometric game that I would like to add a interactive HUD to. I tried using JButtons with Icons but could not draw both the button and my game at once. I'm looking for a cost-efficient (computer resources-wise) technique in which I can…
Geoffroi
  • 135
  • 1
  • 7
0
votes
2 answers

How to get my JS Popup Window to stay on top?

I have a website here. When you open the site, after 2 seconds, you'll see some text in the background. This is part of a JavaScript Popup window. I am trying to get it to stay on top of everything else. It's set to come up automatically when…
Millhorn
  • 2,953
  • 7
  • 39
  • 77
0
votes
1 answer

How to handle views on top of the FlipView?

I'm using this library that allows flipping between views like the "FlipBoard" app. It works quite well. The problem is that I need to put a few views on top of it, so I've put it inside a FrameLayout, and the rest of the views after it. It looks…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
0
votes
0 answers

JDialog onTop overlapped by another in a strange way

I am developing a Swing application with custom CSS rendering. As part of the system I use JDialogs as well, but I need to access certain components outside of the dialog (emergency buttons). For this I chose following method: all dialogs are…
0
votes
2 answers

Prevent a JWindow to remain always on top

I created a JFrame and and a JWindow. My problem is that when I click on another application my JFrame passes behind the application but not my JWindow which remains always on top. I tried to call setAlwaysOnTop(false) on my JWindow but this doesn't…
paranoia25
  • 626
  • 1
  • 5
  • 23
1 2 3
10
11