想要用滑鼠左鍵長按 來取代中鍵
但只限定在 滑鼠指向的視窗 是chrome的時候生效
不然的話 平常就沒辦法用左鍵拖曳檔案了
東抄西改後 現在這樣寫
不知為什麼 沒辦法限定只在chrome生效
想請問應該怎麼改 感謝!
#中鍵不好按中指都快抽筋
MouseGetPos, , , id, ctrl
if InStr(ctrl,"Chrome") {
$lbutton::
starttime := a_tickcount
keywait, lbutton
return
lbutton up::
if (a_tickcount - starttime >= 500)
send, {Mbutton}
if (a_tickcount - starttime <= 500)
send, {lbutton}
return
}