[Date Prev][Date Next][Subject Prev][Subject Next][ Date Index][ Subject Index]

Re: OT -- Autokey



Carl,

That omission tested the limits of my AutoHotkey competence, but I did note it from the start, so all is well.  Am still a bit flummoxed -- attempts at combining scripts and getting them to run in some windows but not others hasn't been successful so far -- but another day, it needs more time....  Thanks again.



From: Carl Distefano
To: xywrite@xxxxxxxx
Sent: Monday, June 26, 2017 1:10 PM
Subject: Re: OT -- Autokey

John,

> And many thanks for that routine, it works exactly as hoped.

Glad it works. I think I left out the first line, which assigns the 
routine to the Up Arrow. The Return statement doesn't make sense 
without it -- but you probably figured that out already.


Up::
SendInput {x}
Loop
{
  Sleep, 100
  GetKeyState, state, Up, P
  If state = U
    Break
  SendInput {Up}
}
Return



--
Carl Distefano