Tagged Questions
The alwaysontop tag has no wiki summary.
3
votes
2answers
419 views
Is it possible to make a JFrame always on top of apps. running OpenGL and DirectX?
I am currently working on a notification app, using Java.
I need for the window to be shortly (about 10 sec.) on top of any apps. including the ones running OpenGL and DirectX (e.g. computer games). ...
3
votes
4answers
1k views
Is it possible to bring JFrame to front but NOT focus?
I'm writing a Java app (Swing GUI) that periodically pops up a JFrame.
Is it possible somehow to bring the window to front (foo.setAlwaysOnTop(true) would be even better) but without having it focus?
...
3
votes
1answer
934 views
How to make a click- and see-through 'always on top'-window
I want to display an semi-transparent always-on-top window with some information, but I do not want this window to take input or receive focus. All mouse-clicks should go to the underlaying window.
I ...
1
vote
2answers
131 views
Java 6, JFrame stuck alwaysontop
This issue only seems to occur since I upgraded from 1.5 to 1.6
The main JFrame, randomly seems to get stuck infront of every other application in windows.
Even another JDialog popping up set to ...
1
vote
4answers
1k views
C/C++/C# Force window to be on top
Is the there a way to force another window to be on top? Not the application's window, but another one, already running on the system. (Windows, C/C++/C#)
0
votes
3answers
377 views
How to make Shell to allways be on top at runtime in SWT?
I'd like to implement "Always on top" configuration option in my application that takes effect immediately.
I know that I can call Shell constructor with ON_TOP style. Is there a way to do that at ...
0
votes
1answer
118 views
mac,windows,flex,air, alwaysontop
i setup alwaysOnTop="true" in mx:WindowedApplication alwaysOnTop="true" tag.
but this does not work in MAC but works in windows.
How can i solve this for MAC?
0
votes
2answers
828 views
Trying to bring swing frame to front before taking a screenshot but getting artifacts
I have a part of my app that takes a screenshot of a certain window but before I do so I want to bring the window to the front. This works fine on my Mac machine but when I tested it on in Windows XP ...