| View previous topic :: View next topic |
| Author |
Message |
Gauss
Joined: 10 Sep 2009 Posts: 203
|
Posted: Wed Nov 04, 2009 7:40 pm Post subject: Rocketdock Hotkey |
|
|
Googled, looked through the forum, and tried myself, no luck..
Is there away you can show or hide Rocketdock using hotkey? |
|
| Back to top |
|
 |
Carcophan
Joined: 24 Dec 2008 Posts: 1308 Location: :noitacoL
|
Posted: Wed Nov 04, 2009 8:06 pm Post subject: |
|
|
From the RocketDock help website:
http://rocketdock.com/Help/English/#settings-behavior
'AutoHide', that what you are looking for? This is probably hotkeyable, you would just have to make the script toggle the setting in 'behavior' for the dock app itself.
I do not have it so I cannot test this for you. sorry. |
|
| Back to top |
|
 |
Gauss
Joined: 10 Sep 2009 Posts: 203
|
Posted: Wed Nov 04, 2009 8:09 pm Post subject: |
|
|
| This will work only on mouse hover, what I want is to show it and hide it using # |
|
| Back to top |
|
 |
Guest
|
Posted: Wed Nov 04, 2009 8:19 pm Post subject: |
|
|
You could have # move your mouse to the hover over position  |
|
| Back to top |
|
 |
Gauss
Joined: 10 Sep 2009 Posts: 203
|
Posted: Wed Nov 04, 2009 8:27 pm Post subject: |
|
|
True, I want it use a hotkey and not the mouse at all, the thing is that
Winhide, RocketDock
will only hide the skin, lol |
|
| Back to top |
|
 |
Gauss
Joined: 10 Sep 2009 Posts: 203
|
Posted: Wed Nov 04, 2009 9:17 pm Post subject: |
|
|
I just found the solution, which is not in the settings!
CTRL+ALT+R |
|
| Back to top |
|
 |
Gauss
Joined: 10 Sep 2009 Posts: 203
|
Posted: Wed Nov 04, 2009 11:21 pm Post subject: |
|
|
Guys, just one thing, since I found out that CTRL+ALT+R is RocketDock hotkey, then why can't I make a hotkey using ahk script that will trigger that one?
I tried for example:
| Code: |
F12::^!R
;Or:
F12::
Send, {CTRLDOWN}{ALTDOWN}R{ALTUP}{CTRLUP}
Return |
No luck  |
|
| Back to top |
|
 |
geor
Joined: 16 Jun 2008 Posts: 66
|
Posted: Thu Nov 05, 2009 12:41 am Post subject: |
|
|
I just tried this on my RocketDock, & it works :
| Code: |
F12::Send ^!r
return
|
... it has to do with using a small letter " r ", not a capital " R " -
I made that mistake before, too.
I don't recall where it's talked about,
but it's mentioned in the AHK Help document. |
|
| Back to top |
|
 |
Gauss
Joined: 10 Sep 2009 Posts: 203
|
Posted: Thu Nov 05, 2009 9:18 am Post subject: |
|
|
It works.. Kisses
Edit:
I just found out that you can edit RD Hotkey in their ini file
| Code: | C:\Program Files\RocketDock
Settings.ini
HotKey-Toggle=Control+Alt+R |
|
|
| Back to top |
|
 |
|