Code:
#NoTrayIcon
HotKeySet("{F1}","hide1")
HotKeySet("{F2}","hide2")
HotKeySet("{F3}","hide3")
HotKeySet("{F4}","hide4")
HotKeySet("{F5}","hide5")
HotKeySet("{F9}","tooltipon")
HotKeySet("{esc}","exit1")
$1 = ""
$2 = ""
$3 = ""
$4 = ""
$5 = ""
idle()
func hide1()
HotKeySet("{F1}","show1")
$1 = WinGetTitle("")
WinSetState($1,"",@SW_HIDE)
idle()
EndFunc
func show1()
HotKeySet("{F1}","hide1")
WinSetState($1,"",@SW_SHOW)
$1 = ""
idle()
EndFunc
func hide2()
HotKeySet("{F2}","show2")
$2 = WinGetTitle("")
WinSetState($2,"",@SW_HIDE)
idle()
EndFunc
func show2()
HotKeySet("{F2}","hide2")
WinSetState($2,"",@SW_SHOW)
$2 = ""
idle()
EndFunc
func hide3()
HotKeySet("{F3}","show3")
$3 = WinGetTitle("")
WinSetState($3,"",@SW_HIDE)
idle()
EndFunc
func show3()
HotKeySet("{F3}","hide3")
WinSetState($3,"",@SW_SHOW)
$3 = ""
idle()
EndFunc
func hide4()
HotKeySet("{F4}","show4")
$4 = WinGetTitle("")
WinSetState($4,"",@SW_HIDE)
idle()
EndFunc
func show4()
HotKeySet("{F4}","hide4")
WinSetState($4,"",@SW_SHOW)
$4 = ""
idle()
EndFunc
func hide5()
HotKeySet("{F5}","show5")
$5 = WinGetTitle("")
WinSetState($5,"",@SW_HIDE)
idle()
EndFunc
func show5()
HotKeySet("{F5}","hide5")
WinSetState($5,"",@SW_SHOW)
$5 = ""
idle()
EndFunc
func tooltipon()
HotKeySet("{F9}","tooltipoff")
ToolTip("F1: "&$1&@CR&"F2: "&$2&@CR&"F3: "&$3&@CR&"F4: "&$4&@CR&"F5: "&$5,10,10)
sleep(3000)
ToolTip("")
EndFunc
func tooltipoff()
HotKeySet("{F9}","tooltipon")
ToolTip("")
EndFunc
func idle()
ToolTip("F1: "&$1&@CR&"F2: "&$2&@CR&"F3: "&$3&@CR&"F4: "&$4&@CR&"F5: "&$5,10,10)
sleep(3000)
ToolTip("")
while 1
sleep(1)
WEnd
EndFunc
func exit1()
ToolTip("Closing...",10,10)
WinSetState($1,"",@SW_SHOW)
WinSetState($2,"",@SW_SHOW)
WinSetState($3,"",@SW_SHOW)
WinSetState($4,"",@SW_SHOW)
WinSetState($5,"",@SW_SHOW)
Sleep(500)
Exit
EndFunc
To compile it you'll need to download AutoIt: