使用左键单击作为左移的脚本不能正常工作 [英] script to use Left Click as Left Shift does not work correctly

查看:57
本文介绍了使用左键单击作为左移的脚本不能正常工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经搜索了AHK论坛,但无法解决.

I've search AHK forums but couldn't solution.

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

The script I found on AHK to use LShift as LButton does not work correctly..when press & hold left shift and move the mouse pointer, it can't copy text exactly like as if click and hold left mouse. What I mean by exactly is.. press & hold left shift and move the mouse pointer copies the whole paragraph or section of text..not just the few words I wanted.

我第一次来这里&带有AHK的新手.感谢您的时间.

My first time here & newbie w/ AHK. Your time is appreciated.

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

推荐答案

您可以尝试:

~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  

这篇关于使用左键单击作为左移的脚本不能正常工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆