2015年2月24日 星期二

autohotkey 修改photoshop快速鍵 筆記

可以直接拷貝起來貼到文字檔,
再轉autohokey檔即可囉




;按下滑鼠滾輪可以縮放筆刷

WheelDown::
send,[[
WheelUp::
send,]
return

;快速雙擊z 等於ctrl+0
~z::
Keywait, z, , t0.3
if errorlevel = 1
return
else
Keywait,z, d, t0.1
if errorlevel = 0
{
send,^0
send,b
}
return

;快速雙擊r 等於還原預設角度
~r::
Keywait, r, , t0.3
if errorlevel = 1
return
else
Keywait, r, d, t0.1
if errorlevel = 0
{
send,r
send,{esc}
send,b
}
return

;連按兩下空白建可以輸出ctrl+h
~space::
Keywait, space, , t0.3
if errorlevel = 1
return
else
Keywait, space, d, t0.1
if errorlevel = 0
{
send,^h
}
return

;連按兩下C鍵可以選色
c::
Keywait,c, , t0.3
if errorlevel = 1
return
else
Keywait, c, d, t0.1
if errorlevel = 0
{
send,{Alt down}{shift down}{RButton down}
KeyWait c
send,{Alt up}{shift up}
}
return

;連按兩下x鍵可以調整筆刷
x::
Keywait,x, , t0.3
if errorlevel = 1
return
else
Keywait, x, d, t0.1
if errorlevel = 0
{
send,{Alt down}{RButton down}
KeyWait c
send,{Alt up}
}
return

;下一頁等同於滑鼠右鍵
Browser_forward::Rbutton


;上一頁等同於刪除
Browser_back::del


沒有留言:

張貼留言