1

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

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

我第一次来这里和带 AHK 的新手。感谢您的时间。

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

1 回答 1

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  
于 2013-05-24T05:27:48.657 回答