AutoHotkey: Drives Tooltip: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(Added category AutoHotkey scripts) |
||
(2 intermediate revisions by one other user not shown) | |||
Line 25: | Line 25: | ||
} | } | ||
Return | Return | ||
{{backlink|AutoHotkey|AutoHotkey}} | |||
{{de|AutoHotkey: Tooltip für Laufwerke}} | |||
[[Category:AutoHotkey scripts|Drives Tooltip]] |
Latest revision as of 11:09, 31 May 2008
This script will show a tooltip with short info about the drives when howering with the mouse over the drives toolbar.
#Persistent SetTimer subTimer, 500 subTimer: if WinActive( "ahk_class TTOTAL_CMD" ) { MouseGetPos,,,,sControl if (InStr( sControl, "TDrivePanel")) { sToolTip := "" DriveGet sDriveList, LIST loop PARSE, sDriveList { DriveGet, sLabel, LABEL, %A_LoopField%: DriveGet, sType, TYPE, %A_LoopField%: sToolTip = %sToolTip%%A_LoopField%: %sType%`; %sLabel%`n } ToolTip %sToolTip% } else ToolTip } Return
Back to AutoHotkey