नमस्ते 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 से मशीन-अनुवादित