 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
IconBoy
Joined: 24 Feb 2006 Posts: 77
|
Posted: Tue Jul 31, 2007 4:40 pm Post subject: Can't tell what scripts are running in SysTray |
|
|
Sometimes (actually quite often), when I hover over the Green H icons in my System Tray, nothing shows up as to what the script is.
Is there an easier way to ID what each script is by tweaking AHK settings or something?
I thought r-clicking on a script in SysTray would show the name of the script so I can know what it does but not all have that.
Perhaps even being able to change the icon for each script in the SysTray would help.
Ideas anyone? |
|
| Back to top |
|
 |
Hardeep
Joined: 02 Jul 2006 Posts: 87
|
Posted: Tue Jul 31, 2007 5:12 pm Post subject: |
|
|
You can Change the Tray Icon or ToolTip...see help for Menu command.
| Code: | Menu, Tray, Icon , FileName, IconNumber, 1
Menu, Tray, Tip, Text |
|
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 6847 Location: Pacific Northwest, US
|
Posted: Tue Jul 31, 2007 9:03 pm Post subject: |
|
|
you can also do (though the above is better!)
| Code: |
;near top
Menu, Tray, Add, %A_ScriptName%, donothing
;later
donothing:
;you can make this an about box too!
Return
|
_________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM |
|
| 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
|