关于 autohotkey 的问题

2022-11-05 00:20:37 +08:00
 chenqh
RAlt & p::

Sleep 30

Send, {LWin}{LShift}s

return

RCtrl & p::

Sleep 30

Send, {LCtrl}{LAlt}a

这两个热键都不起作用,一个没唤起 windows 自带的截图

一个没有唤醒 qq 的截图,有人知道怎么回事吗?

1602 次点击
所在节点    程序员
9 条回复
chenqh
2022-11-05 00:21:17 +08:00
autohotkey 的问题完全不知道去哪里问郁闷
icoming
2022-11-05 00:39:28 +08:00
可以去 autohotkey 官方论坛,很快就有有效回答的: https://www.autohotkey.com/boards/viewforum.php?f=76
qwertyegg
2022-11-05 01:25:33 +08:00
Send,{LWin down}{LShift down}s{LWin up}{LShift up}
PolarBears
2022-11-05 02:41:22 +08:00
可以试试管理员权限运行看看
Noicdi
2022-11-05 08:01:01 +08:00
截图的话,推荐一个软件 snipaste
ob
2022-11-05 08:16:39 +08:00
RAlt & p::
Sleep 30
Send, #+s
return

RCtrl & p::
Sleep 30
Send, ^!a
return
chenqh
2022-11-05 09:58:07 +08:00
@ob 没有用的,我知道怎么回事了
kid740246048
2022-11-05 16:48:18 +08:00
>!p::+#s

或者

>!p::^!a

一行映射就行了,参考: https://wyagd001.github.io/zh-cn/docs/misc/Remap.htm#other-useful-remappings
byzod
2022-11-05 18:09:56 +08:00
这个我熟,由于未知的原因,所有的组合键都需要手动控制按下状态才能生效
```
>!p::
{
KeyWait RAlt
Send, {LWin down}{LShift down}s{LWin up}{LShift up}
return
}
```

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/892815

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX