嗨,anon233143
如果這能實現就太好了。我也遇到同樣的問題。作為變通方法,我寫了一個簡短的 AutoHotkey 腳本(反正我的系統上一直都有在運行 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 顯示原文