适用于双屏,能模拟实现单鼠标双指针(伪),通过 F10
或者自定义的按键来切换两个指针的位置
适用于双屏是因为再多的屏就模拟不出来效果了( doge
少废话,先看东西
CoordMode, ToolTip, screen
CoordMode, Mouse, screen
CoordMode, Pixel, screen
SplashImageGUI(img, X, Y)
{
Gui, CURSOR:Margin , 0, 0
Gui, CURSOR:Add, Picture,, %img%
Gui, CURSOR:+LastFound -Caption +AlwaysOnTop +ToolWindow -Border
Winset, TransColor, White
Gui, CURSOR:Show, xCenter yCenter
return
}
;==============================================================================
; simulated 2nd cursor, press F10 swap the positions of the two cursors
;==============================================================================
image = mouse.png
SplashImageGUI(image, "Center", "Center")
return
; in case of emergency, hit escape ;)
esc::exitapp
return
;=======================================================
; swap the positions of the cursors
;=======================================================
f10::
blockinput, on ; block keyboard & moouse during the swap
MouseGetPos, xpos, ypos
winmove, switchCursor.ahk,, %xpos%, %ypos%
MouseMove, xloc, yloc ,0
xloc := xpos
yloc := ypos
blockinput, off
return
脚本命名请对应 winmove
中的窗口名,如果你把 AHK 封装成了 exe 文件,请注意修改这里
F10 切换两个指针,ESC 退出。如果你在调试请将 blockinput
设为 off ;如果你不幸地,被 blockinput
后才看到这段话,请 Ctrl+Alt+Del
,奇异博士教过我们看书要先看注意事项。
image
随便找一个鼠标图片,把背景抠成透明,然后用 Windows 的画图 resize 一下大小,再点保存就会变成白底(很重要),再跟脚本丢到同一个目录就行了。因为透明效果靠 Winset, TransColor, White
实现,如果是透明图片,载入时会变成黑底。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.