| alastair78 Profil: New Penguin | I am trying to locate my rocketdock over the windows XP taskbar. I have the taskbar stretched wider and do not have the quick launch but instead I have the rocket dock which I like better because it shows names of shortcuts etc. I have the Rocketdock and the taskbar both set to "ALWAYS ON TOP"... Problem is, when I click on the taskbar, the rocket dock goes behind the taskbar and I cant access it again. If I move the rocketdock and then click on it, it will come to the front again. How can I make the rocketdock stay in fron of the taskbar at all times? | |
Asher Genius is not born , it is made.... Profil: Moderator | | |
GroovyGregory Profil: New Penguin |
No, it is not confusing at all. as i have the taskbar on the left side of the monitor, i can save a lot of space having rocketdock on top of the taskbar. see:
it would be really nice, if the developers could make a fix for it.
thanks.
see ya,
Greg Message edited by GroovyGregory on 01-22-2009 at 10:33:28 AM
| |
GroovyGregory Profil: New Penguin | okay. now i got it by myself. autohotkey is our friend. here is the necessary script:
Code :
- #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
- SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
- SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
- Process, Exist
- WinGet, hw_gui, ID, ahk_class ROCKETDOCK
- hw_tray := DllCall( "FindWindowEx", "uint", 0, "uint", 0, "str", "Shell_TrayWnd", "uint", 0 )
- DllCall( "SetParent", "uint", hw_gui, "uint", hw_tray )
- return
|
have fun Message edited by GroovyGregory on 01-23-2009 at 02:44:58 PM
| |
| |