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
3
votes
2 answers

How to place a Xul window as "Always On Top"?

I found this file at google code with the function: function SetAlwaysOnTop() { var chkTop = document.getElementById("itmAlwaysOnTop"); var xulWin = window.QueryInterface(Ci.nsIInterfaceRequestor) …
The Student
  • 27,520
  • 68
  • 161
  • 264
3
votes
1 answer

JavaFX full screen application always on top

I have application written in JavaFX and I set primary stage as full screen and always on…
aredosz
  • 31
  • 4
3
votes
4 answers

How to make a Shell to be always on top 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 runtime, that is after a Shell instance has already…
parxier
  • 3,811
  • 5
  • 42
  • 54
3
votes
4 answers

How to make a view as always on top?

I have a TextView and it is on an image. When I click the button, TextView's background color will change, but image won't disappear. For example: My TextView at the beginning: When I click a button:
Utku Soytaş
  • 1,475
  • 2
  • 19
  • 30
3
votes
1 answer

Can't set always-on-top for external applications in Java / C++

I'm looking for solution to make external application (not windows application like notepad or calc.exe) to stay always-on-top after pressing the button in Java GUI. I'm using this code in C++ for taking all opened windows on desktop and matching…
JBAS
  • 43
  • 4
3
votes
1 answer

How can I overlay html elements over my DirectShow application?

I'm working with a DirectShow application that exports as a Firefox plugin for video streaming. To the best of my knowledge, it seems as though the plugin is being rendered on a separate window from the web page. I'd like to edit the application to…
Mike
  • 29
  • 3
3
votes
2 answers

Z-index doesn't works for Embed Code plugin

I used Chrome & Safari browser to view live streaming.
user430926
  • 4,017
  • 13
  • 53
  • 77
2
votes
1 answer

How to keep my application always on top of the task stack?

As title, how to keep my application always on top of task stack? for example, when the alarm clock is popping up, my application(apk) is still on top of the screen. Thanks very much!
2
votes
1 answer

How to set window to always on top using AutoHotKey v2?

I need to write a script to make the active window always on top, but all the examples are for AutoHotKey v1. How can I do this with AHK v2?
Ethan Malloy
  • 555
  • 1
  • 4
  • 16
2
votes
1 answer

How to pin a pygame window on top?

I need to make a pygame window stay on top of other windows. I found a way to do so on this discussion: How to make python window run as "Always On Top"? But this doesn't work in my python code. Here is my code: # Imports import pygame as pg from…
Priyanshu Jangra
  • 169
  • 2
  • 13
2
votes
0 answers

How to Make Java Swing Tooltips Work Properly with alwaysOnTop JFrames on OS X?

On OS X, an "alwaysOnTop" JFrame made using Java's Swing GUI framework sporadically flicks tooltips away almost immediately after showing them. This problem is almost too obscure to explain and yet can be reproduced with little code. If you use Java…
Steve McLeod
  • 51,737
  • 47
  • 128
  • 184
2
votes
2 answers

Extending JavaFX Stage content with Popup(?)

It's my first post here - please be nice :) What I'm trying to do is have controls/windows that: belong to a JavaFX Stage will NOT steal focus from the owning Stage when clicked can be dragged beyond the boundaries of the owning Stage I've been…
2
votes
0 answers

Run omxplayer "Always on top" from java code

I have RaspberryPi2 (1GB RAM version) with Raspbian OS. I need to execute Omxplayer for play video. If i execute new process, Omxplayer is on a background. I need Omxplayer always on top. How to do it? Omxplayer has not switch to stay on top as for…
t0m
  • 3,004
  • 31
  • 53
2
votes
0 answers

c# always on top exception

I used this code namespace WindowsFormsApplication52 { public partial class Form1 : Form { static readonly IntPtr HWND_TOPMOST = new IntPtr(-1); static readonly IntPtr HWND_NOTOPMOST = new IntPtr(-2); static readonly IntPtr HWND_TOP =…
2
votes
2 answers

JWindow - Always on top, but below system bars?

I've been making a program that monitors a remote system and displays non-invasive alerts in one of the corners of the screen (user preference) to alert the user to changes in the remote system. To do this, I'm using a JWindow so that I can produce…
DGolberg
  • 2,109
  • 4
  • 23
  • 31
1 2
3
10 11