AHK sequência de várias chaves

0

No meu iPhone, tenho a substituição de texto configurada de tal forma que, se eu digitar três letras em combinação, ela será substituída por uma sequência predeterminada de caracteres. Como faço para definir o AHK para substituir as letras ABC quando pressionadas em sequência com "olá"?

    
por jimkirk 10.09.2018 / 19:58

1 resposta

0

Você provavelmente está procurando por Hotstrings :

Although hotstrings are mainly used to expand abbreviations as you type them (auto-replace), they can also be used to launch any scripted action. In this respect, they are similar to hotkeys except that they are typically composed of more than one character (that is, a string).

To define a hotstring, enclose the triggering abbreviation between pairs of colons as in this example:

::btw::by the way

Unless the asterisk option (*) is in effect, you must type an ending character after a hotstring's abbreviation to trigger it.

Você provavelmente desejaria a opção de asterisco:

:*:ABC::hello there

    
por 10.09.2018 / 20:06

Tags