AutoHotKey: शिफ्ट रबटन कंट्रोल सी मुसीबत


1

मैं माउस पर Shift+ RButtonसे Shift+ रिमैप करना चाहूंगा LButton। फिर, मेरे हाइलाइट किए गए चयन को कॉपी करने के लिए + के रिलीज पर RButton, भेजें ।CtrlC

अब तक, सबसे अच्छा मैं इस के साथ आया हूँ:

+rbutton::
+lbutton
keywait rbutton
send {control c}
return

दुर्भाग्य से, यह Ctrl+ Cकमांड निष्पादित नहीं करता है :

किसी भी मदद की सराहना की है।


मुझे लगता है कि यह सुपरसुसर पर अधिक उचित होगा कि एसओ पर।
जॉस

जवाबों:


1

आप माउस स्थान पर वर्तमान कर्सर स्थान ऊपर से पाठ की प्रतिलिपि करने के लिए देख रहे हैं, तो जब आप प्रेस Shift+ RButton, तो इस का उपयोग करें:

+RButton::
    ClipBoard = ; Clear the ClipBoard
    Send, +{lbutton} ; Send the [Shift]+[LButton]
    KeyWait, RButton ; Wait for RButton to be released
    Send, ^c ; Send [Ctrl]+c to copy the selected text to the ClipBoard
    Sleep, 50 ; ClipWait is not reliable and you need a little time for [Ctrl]+c to copy to the clipBoard.
    TrayTip, ClipBoard, %ClipBoard%, 1 ; Show the ClipBoard results
Return
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.