5
1
When I write an AHK script like this:
::abc::alphabet
It works like charm. The only thing is, when I want a copied part of text, (something that includes things I want to have auto replaced) it doesn't want to replace it.
For example:
!INS::{Ctrl Down}c{Ctrl Up}{Tab 2}{Enter}{Ctrl Down}v{Ctrl Up}
Lets me copy abc
but when it is pasted, I don't get alphabet
(as defined earlier).
Is there a way to make it replace the copied and pasted words? Like when I use the send
command to send a line or some words that include a word I would like to auto replace?