[Date Prev][Date Next][Subject Prev][Subject Next][
Date Index][
Subject Index]
Re: OT -- Autokey
- Subject: Re: OT -- Autokey
- From: Harry Binswanger hb@xxxxxxxx
- Date: Fri, 30 Jun 2017 12:16:08 -0400
John,
If you need help with the basic stuff of AHK, I'm glad to give it. Email
questions/problems to me privately at hb@xxxxxxxx
Regards,
Harry
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
mailto:cld@xxxxxxxx