Search found 25 matches

by GavinPen
25 May 2021, 16:05
Forum: Scripts and Functions (v1)
Topic: AHKExpansionsList
Replies: 1
Views: 454

AHKExpansionsList

https://github.com/GavinPen/AHKExpansionsList AHKExpansionsList is a general-purpose list of abbreviations for text expansion, formatted as AutoHotkey hotstrings. The list includes some of the most common words and short combinations of words in the English language, plus some personal names and pla...
by GavinPen
20 May 2021, 09:30
Forum: Scripts and Functions (v1)
Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
Replies: 235
Views: 138113

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Does anything like TypingAid exist for Android?
Since the contents of WordlistLearned.txt are fully customisable, I use it as a knowledge base.
And I use TypingAid mainly to provide a kind of incremental search of this knowledge base.
It'd be useful to be able to do this on Android.
by GavinPen
05 Mar 2019, 17:47
Forum: Scripts and Functions (v1)
Topic: AHKCoordGrid - overlay grid of buttons to provide (a degree of) mouseless screen navigation
Replies: 16
Views: 9769

Re: AHKCoordGrid - overlay grid of buttons to provide (a degree of) mouseless screen navigation

@DataLife Change 1 is straightforward Change 2 not so much! But I don't tend to use the grid in my browser, because cVim (in Chrome) is more convenient and allows you to display shortcuts (hints) for most of the clickable elements on webpages. I tried cVim on https://fritzsadventure.com/ and it does...
by GavinPen
30 Jan 2019, 05:37
Forum: Ask for Help (v1)
Topic: Prevent Hotstring Expanding when Type Hotstring + Number + EndChar
Replies: 2
Views: 839

Re: Prevent Hotstring Expanding when Type Hotstring + Number + EndChar

Oh, you're right - it does work in a standalone script.
I'll have to do some digging ...
by GavinPen
30 Jan 2019, 05:09
Forum: Ask for Help (v1)
Topic: Prevent Hotstring Expanding when Type Hotstring + Number + EndChar
Replies: 2
Views: 839

Prevent Hotstring Expanding when Type Hotstring + Number + EndChar

I'd like to prevent my hotstrings expanding when I type the hotstring, then a number, then an EndChar

eg one of my hotstrings is:
::gt::get
However, when I type 'gt1' then a space, the expansion is triggered, and gt1 is overwritten by 'get' (actually by 'gget').

Is there any way to avoid this?
by GavinPen
04 Oct 2018, 06:34
Forum: Scripts and Functions (v1)
Topic: AHKCoordGrid - overlay grid of buttons to provide (a degree of) mouseless screen navigation
Replies: 16
Views: 9769

Re: AHKCoordGrid - overlay grid of buttons to provide (a degree of) mouseless screen navigation

@Nextron That does sound like a good alternative. I've realized that cVim calls its dynamic shortcuts 'hints' (as do the other extensions which provide similar ones, eg pentadactyl, vrome, vimperator, and vimium) https://github.com/zsims/hunt-and-peck also looks useful - it provides similar hints fo...
by GavinPen
28 Jun 2018, 09:05
Forum: Off-topic Discussion
Topic: Any software exists to provide screen navigation via shortcut keys to overlay grid coordinates? Topic is solved
Replies: 13
Views: 7275

Re: Any software exists to provide screen navigation via shortcut keys to overlay grid coordinates? Topic is solved

Thanks all @guest3456 - that looks similar to the Dragon NaturallySpeaking MouseGrid @Guest - I somehow couldn't get Mouse Numpad Grid to work @tidbit - This looks very useful. Again looks similar to the Speech Recognition ones, but more convenient to control it from the keyboard instead of by speec...
by GavinPen
28 Jun 2018, 06:28
Forum: Scripts and Functions (v1)
Topic: AHKCoordGrid - overlay grid of buttons to provide (a degree of) mouseless screen navigation
Replies: 16
Views: 9769

Re: AHKCoordGrid - overlay grid of buttons to provide (a degree of) mouseless screen navigation

That's a good ides, @gwarble. https://en.wikipedia.org/wiki/Display_resolution#Common_display_resolutions says that nearly 30% of users use resolution 1366*768 = 1,049,088 pixels. Using 4 alphabetic coordinates (AAAA-ZZZZ) would give 26*26*26*26 = 456,976 clickable points, which is not far off 1 for...
by GavinPen
26 Jun 2018, 17:29
Forum: Scripts and Functions (v1)
Topic: AHKCoordGrid - overlay grid of buttons to provide (a degree of) mouseless screen navigation
Replies: 16
Views: 9769

AHKCoordGrid - overlay grid of buttons to provide (a degree of) mouseless screen navigation

AHKCoordGrid - overlay grid of buttons to provide (some level of) mouseless screen navigation (I finally got round to a solution for the question I posted last year at https://autohotkey.com/boards/viewtopic.php?f=17&t=38867) When you press NumKeyEnter, this script builds then displays a 26*26 grid ...
by GavinPen
12 Jun 2018, 16:27
Forum: Ask for Help (v1)
Topic: how to trigger expansion of a Hotstring without moving cursor Topic is solved
Replies: 16
Views: 3768

Re: how to trigger expansion of a Hotstring without moving cursor Topic is solved

JoeWinograd wrote:simply double-click Madrid, which, in all products that I'm aware of that deal with text, will also select the ending space
Double-clicking does select the ending space in Microsoft Word, but not in Notepad++ or Sublime, which I use much more often
by GavinPen
12 Jun 2018, 16:22
Forum: Ask for Help (v1)
Topic: how to trigger expansion of a Hotstring without moving cursor Topic is solved
Replies: 16
Views: 3768

Re: how to trigger expansion of a Hotstring without moving cursor Topic is solved

Thanks Gregster, your solution works! I've added handling for the other 3 characters: ::brl:: ::mdr:: ::prs:: ::wsh:: abbr := {"prs":"Paris", "mdr" :"Madrid", "brl":"Berlin", "wsh":"Washington, D.C."} key := Substr(A_ThisHotkey, 3) Sendinput % abbr[key] If (A_endchar = A_space) Sendinput %A_space% e...
by GavinPen
11 Jun 2018, 17:31
Forum: Ask for Help (v1)
Topic: how to trigger expansion of a Hotstring without moving cursor Topic is solved
Replies: 16
Views: 3768

Re: how to trigger expansion of a Hotstring without moving cursor Topic is solved

You're right, Joe - I wouldn't save any keystrokes by using the context variable, so it wouldn't be worth the effort (though I appreciate your input, Gregster) It is a shame that it seems to be impossible just to add a non-typing character to the EndChars list. Here's an example of what I'm looking ...
by GavinPen
11 Jun 2018, 16:49
Forum: Ask for Help (v1)
Topic: how to trigger expansion of a Hotstring without moving cursor Topic is solved
Replies: 16
Views: 3768

Re: how to trigger expansion of a Hotstring without moving cursor Topic is solved

thanks both. Joe - yes, that's what I wanted. Gregster - I think your suggestion could possibly work, but it looks complicated! There isn't an easily defined context where I want to to use the 'non-moving' EndChar - I'd probably use it most often to correct things that I've mistyped, but this could ...
by GavinPen
11 Jun 2018, 04:19
Forum: Ask for Help (v1)
Topic: how to trigger expansion of a Hotstring without moving cursor Topic is solved
Replies: 16
Views: 3768

Re: how to trigger expansion of a Hotstring without moving cursor Topic is solved

Thanks Joe. But I actually do want my EndChars to be output / move the cursor on most of the time; it's just that occasionally, I need to expand my abbreviations without moving the cursor. I hoped I could do this via a special EndChar (maybe one that doesn't normally type anything, like 'Esc'). Apol...
by GavinPen
10 Jun 2018, 15:52
Forum: Ask for Help (v1)
Topic: how to trigger expansion of a Hotstring without moving cursor Topic is solved
Replies: 16
Views: 3768

how to trigger expansion of a Hotstring without moving cursor Topic is solved

I want to be able to press some key to trigger the expansion of a Hotstring (any of my Hotstrings), but avoid moving the cursor (ie leave the cursor in the same place, just after the end of the expansion, without actually outputting any visible character or whitespace). None of the default EndChars ...

Go to advanced search