Hotkey to access systray apps, Windows 7

7

is there a way to access, move, and launch elements of the system tray?, I.e. like the hotkeys to access the taskbar items (Windows+Number)

mjsr

Posted 2011-03-08T17:28:17.643

Reputation: 5 577

Answers

5

Based on what @Shinray said about the ⊞ Win + B shortcut, I created this AutoHotkey script:

#SingleInstance, force
CoordMode, Mouse, Screen
SetDefaultMouseSpeed, 0
RControl & 1::
jumper(1, "Enter")
Return
RControl & 2::
jumper(2, "SingleClick")
Return

jumper(position, action)
{
MouseGetPos, xpos, ypos
sendInput {LWinDown}{b}{LWinUp}{Right %position%}{Enter}
Sleep, 100
if(action = "Enter")
{
}   
if(action = "SingleClick")
{
MouseClick, left
}
if(action = "DoubleClick")
{
MouseClick, left, , ,2
}   
if(action = "RightClick")
{
    MouseClick, right
}   
MouseMove %xpos%, %ypos%
}   

Simply press Rctrl+Number to activate; click or right click the systray icon that you need.

For example I put the enter and click action to the first two icons (on my system they are uTorrent and Altdrag). The number indicates the appearance order.

mjsr

Posted 2011-03-08T17:28:17.643

Reputation: 5 577

3

If you're looking for something built-in, the answer is 'no'. Unless you count the old-fashioned "Switch focus to the taskbar, tab over to the system tray, arrow over the icon you want, etc" method. You can shorten this with WinKey+B, but you'll still have to arrow and then interact the hard way.

Shinrai

Posted 2011-03-08T17:28:17.643

Reputation: 18 051

0

There is a free app you can use called Taskbar Shuffle.

You are able to reorder the open windows in the taskbar as you prefer. I'm pretty sure this app allows you to reorder the systray icons too. I'm not sure if it supports hotkeys however, though it might...

Mr. Chameleon

Posted 2011-03-08T17:28:17.643

Reputation: 19

systray icons not taskbar – mjsr – 2011-03-08T17:47:23.430

1And the program you mention also has nothing to do with launching with hotkeys – barlop – 2011-03-08T19:31:03.913