এই প্রশ্নটি ইতিমধ্যে একটি উত্তর আছে:
আমি কীভাবে পাঠ্য পছন্দ করতে পারি তা শিখতে পছন্দ করি
+^{Left}
একটি নির্দিষ্ট অক্ষর (এই ক্ষেত্রে "-") পাওয়া যায়নি।
আপনার সাহায্যের জন্য ধন্যবাদ।
এই প্রশ্নটি ইতিমধ্যে একটি উত্তর আছে:
আমি কীভাবে পাঠ্য পছন্দ করতে পারি তা শিখতে পছন্দ করি
+^{Left}
একটি নির্দিষ্ট অক্ষর (এই ক্ষেত্রে "-") পাওয়া যায়নি।
আপনার সাহায্যের জন্য ধন্যবাদ।
উত্তর:
F1::
ClipSaved := ClipboardAll ; save clipboard
Loop
{
If GetKeyState("F2","P") ; terminate the loop whenever you want by pressing F2
break
clipboard = ; empty the clipboard (start off empty to allow ClipWait to detect when the text has arrived)
; Send, +^{Left} ; select text by whole words to the left
Send, +{Left} ; select text by single characters to the left
Send, ^c ; copy selected text
ClipWait ; wait until the clipboard contains data
StringLeft, OutputVar, clipboard, 1 ; save the first character from the left side of the clipboard in the variable OutputVar
If OutputVar = - ; if the specific character "-" has been found
break ; terminate the loop
}
clipboard := ClipSaved ;restore original clipboard
return