Bonjour anon233143
Ce serait formidable si c'était possible. J'ai le même problème. En solution de contournement, j'ai simplement écrit un petit script dans AutoHotkey (qui tourne de toute façon en permanence sur mon système). Ça semble fonctionner, mais je ne l'ai pas testé de manière exhaustive. Voici le script :
#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
J'ai enregistré la première version de ce script avec AutoScriptWriter, puis je l'ai modifié. Vous devriez pouvoir créer plusieurs versions de ce script et ajuster les coordonnées de MouseClick en conséquence.
J'espère que cela sera utile.
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
Traduit automatiquement depuis English