2009年3月27日 星期五

[AutoHotKey] 按下熱鍵開啟連發,再按一次熱鍵 停止連發

;看得懂得人就看吧。
;--------------------------------以下開始------------------------------

#Persistent
#NoEnv

v_Enable=0
UpdateSplashImage()
{
Global
if(v_Enable=0)
{
SplashImage,,X10 Y10 H24 W36 CWFF0000 CT000000 ZX5 ZY5 B2 FS9 WS700, NO
return
}
else
{
SplashImage,,X10 Y10 H24 W36 CW00FF00 CT000000 ZX5 ZY5 B2 FS9 WS700, OK
}
}

$`::
{
v_Enable:=!v_Enable
If (v_Enable=0)
{
SetTimer, Label0, Off
UpdateSplashImage()
}
else
{
SetTimer, Label0, 100
UpdateSplashImage()
}
}
Return

Label0:
{
SendRaw, {F5}
}

2 則留言:

  1. 非常感謝您的 Script ,幫助真的很大。 ^^

    回覆刪除

  2. 比我自己寫的好多了@@
    感謝

    回覆刪除