Тема: AHK: Нужен скрипт 1
1
Вы не вошли. Пожалуйста, войдите или зарегистрируйтесь.
Страницы 1
Чтобы отправить ответ, вы должны войти или зарегистрироваться
1
$a::
Send, {a Down}
KeyWait, a
Send, {a Up}
Send, {d}
Return
$d::
Send, {d Down}
KeyWait, d
Send, {d Up}
Send, {a}
Return
__Михаил__
Не перемудрили?
teadrinker, возможно. Но вроде всё верно, с отправкой самой себя и второй клавишей.
$~a Up:: Send d
$~d Up:: Send a
doomGGS
Верните, пожалуйста, текст первого поста. Форум не только для вас.
teadrinker, а разве доллар тут нужен?
Не знаю, в Send есть отправка горячей клавиши, честно говоря, не проверял.
Не нужен.
The $ prefix forces the keyboard hook to be used to implement this hotkey, which as a side-effect prevents the Send command from triggering it. The $ prefix is equivalent to having specified #UseHook somewhere above the definition of this hotkey.
The $ prefix has no effect for mouse hotkeys, since they always use the mouse hook. It also has no effect for hotkeys which already require the keyboard hook, including any keyboard hotkeys with the tilde (~) or wildcard (*) modifiers, key-up hotkeys and custom combinations. To determine whether a particular hotkey uses the keyboard hook, use ListHotkeys.
А, значит не нужен, но и не мешает.
Страницы 1
Чтобы отправить ответ, вы должны войти или зарегистрироваться