new script

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
hajosch
Posts: 1
Joined: 18 Jun 2019, 03:32

new script

18 Jun 2019, 03:43

What is the script for summarizing the keys Ctrl + A - Ctrl + C?
My script is not working:

^#::
Send, ^+a + ^+c ; WIN+#
return
eqv
Posts: 72
Joined: 18 Sep 2018, 22:17

Re: new script

18 Jun 2019, 11:25

hajosch wrote:
18 Jun 2019, 03:43

Code: Select all

^#::
Send, ^+a  +  ^+c    ; WIN+#
return
If you want to select the whole text, a then copy it; it goes like this:

Code: Select all

LCtrl & LWin::     ;; press Left control and windows button to select the whole text.
Send, ^a^c
return

Edit:
In autohotkey "+", "^", "!"; mean "Shift", "Ctrl", and "Alt"; respectively.
Here is the key list for deeper explanation: https://www.autohotkey.com/docs/KeyList.htm
Send documentation: https://www.autohotkey.com/docs/commands/Send.htm

Edit2:
Modified the script, I didn't notice the hotkey was: ^#.

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: Bing [Bot], Mateusz53, peter_ahk, Rohwedder and 205 guests