你好 anon233143
如果这能实现就太好了。我也遇到了同样的问题。作为变通方法,我写了一个简短的 AutoHotkey 脚本(反正它一直在我的系统上运行)。它似乎有效,但我还没有进行广泛测试。代码如下:
#SingleInstance force
SetTitleMatchMode, 1
#If WinActive(“Paratext”)
; Shift+Ctrl+x Create Note with Tag xx
+^x::
Send, {CTRLDOWN}{SHIFTDOWN}n{SHIFTUP}{CTRLUP}
WinWait, Note,
IfWinNotActive, Note, , WinActivate, Note,
WinWaitActive, Note,
MouseClick, left, 59, 39
Sleep, 100
MouseClick, left, 59, 173
Sleep, 100
return
#If
我用 AutoScriptWriter 录制了这个脚本的第一个版本,然后进行了编辑。你应该能够创建多个此脚本的版本,并相应地调整 MouseClick 坐标。
希望这会有帮助。
rfkvg
Hi anon233143
It would be great if this was possible. I’m having the same problem. As a workaround I have just written a short script in AutoHotkey (which is running on my system all the time anyway). It seems to work but I haven’t extensively tested it. Here it is:
#SingleInstance force
SetTitleMatchMode, 1
#If WinActive(“Paratext”)
; Shift+Ctrl+x Create Note with Tag xx
+^x::
Send, {CTRLDOWN}{SHIFTDOWN}n{SHIFTUP}{CTRLUP}
WinWait, Note,
IfWinNotActive, Note, , WinActivate, Note,
WinWaitActive, Note,
MouseClick, left, 59, 39
Sleep, 100
MouseClick, left, 59, 173
Sleep, 100
return
#If
I recorded the first version of this with AutoScriptWriter, then edited it. You should be able to create several versions of this and adjust the MouseClick coordinates accordingly.
I hope this will be helpful.
rfkvg
机器翻译自 English