使用左键单击作为左移的脚本无法正常工作

时间:2013-05-23 19:51:44

标签: autohotkey

我搜索AHK论坛但无法解决。

我在AHK上发现使用LShift作为LButton的脚本无法正常工作..当按下&按住左移并移动鼠标指针,它无法像单击并按住鼠标左键一样复制文本。我的意思是...按&按住左移并移动鼠标指针复制整个段落或文本部分......而不仅仅是我想要的几个单词。

我第一次来这里&新手w / AHK。感谢您的时间。

~Lshift::  
Send {LButton}  
return  
F10::exitapp  

1 个答案:

答案 0 :(得分:1)

你可以尝试:

~Lshift::  
Send {LButton Down} ; Press the LButton key Down
KeyWait, LShift ; Wait for the LShift key to be lifted
Send {LButton Up} ; Release the LButton key
return

F10::exitapp