#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
#SingleInstance Force
#IfWinActive ; Only activate the hotkey when a window is active
*Space:: ; When the spacebar is pressed
Loop
{
SendInput, e ; Send the letter 'e'
Sleep, 1 ; Sleep for 1 millisecond
GetKeyState, state, Space, P ; Check the state of the spacebar
if state = U ; If the spacebar is released
break ; Exit the loop
}
return ; Return to the normal script execution
*Space::
Loop
{
SendInput, {e}
Sleep, 1
GetKeyState, state, space, P
if state = U
break
}
return
Мне надо чтоб писалось больше букв е, думаю скрипт хоть чуть чуть понятен-я нажимаю пробел и пишеться буква е.
Помогите пожалуйста.