Need help copy paste script

Get help with using AutoHotkey (v2 or newer) and its commands and hotkeys
bugzy
Posts: 9
Joined: 16 Oct 2018, 14:50

Need help copy paste script

Post by bugzy » 27 Mar 2023, 04:01

hello guys I need a script. im using v2

My left CTRL is broken and my work relies heavily on copy and pasting.

I need the

Windows button to do -- > Control + C (Copy)
Left alt to do --> Control + V (Paste)
Left shift to do --> Control + F (Search)
Capslock to do --> Control + A (Select All)

If the script is running, i need the c, v, f ,a to still working.

thank you so much

User avatar
mikeyww
Posts: 26885
Joined: 09 Sep 2014, 18:38

Re: Need help copy paste script

Post by mikeyww » 27 Mar 2023, 07:57

Code: Select all

#Requires AutoHotkey v2.0
LWin::    Send '^c'
LAlt::    Send '^v'
LShift::  Send '^f'
CapsLock::Send '^a'

Post Reply

Return to “Ask for Help (v2)”