 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
kmel
Joined: 02 Feb 2005 Posts: 8
|
Posted: Fri Feb 04, 2005 10:20 am Post subject: Gui Option 'AlwaysOnTop' |
|
|
the Gui Option 'AlwaysOnTop' doesn't work for me (AHK 1.0.25.13)
| Code: | Gui, add, text, x16 y0 cLime AutoSize, %OSDText%
Gui, +LastFound +AlwaysOnTop
WinSet, TransColor, 008000
;WinSet, AlwaysOnTop, On
Gui, -Caption
Gui, Show, y%ypos% h100 NoActivate
|
The windows isn't on top, I have to use 'WinSet, AlwaysOnTop, On'. |
|
| Back to top |
|
 |
kmel
Joined: 02 Feb 2005 Posts: 8
|
Posted: Fri Feb 04, 2005 10:42 am Post subject: |
|
|
if you set '+AlwaysOnTop' after the TransColor, the color isn't transparent anymore
| Code: | Gui, Add, text, x16 y0 cLime AutoSize, %OSDText%
Gui, +LastFound +Disabled
WinSet, TransColor, 008000
;WinSet, AlwaysOnTop, On
Gui, -Caption +AlwaysOnTop
Gui, Show, y%ypos% h100 NoActivate
|
|
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10467
|
Posted: Fri Feb 04, 2005 2:44 pm Post subject: |
|
|
| Thanks, I see how to fix that. In the meantime, specify +AlwaysOnTop before the window is created; that is, before the use of "Gui Add" and similar commands. |
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|