Search found 110 matches
- 19 Dec 2020, 13:38
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
To expound a bit... you'll have to copy/export the list to the wordlist.txt file, and that will be read into the database each time. Been a while, but I'm pretty sure those words will NOT be ranked as they are not learned. They'll be in the order you put them in.
- 23 Oct 2020, 06:42
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
You mean for navigating the list? No, just close the box. I normally use the left arrow key to close it.
You can try turning off ALL autocomplete keys except the "Number Keys", that may disable the ability to navigate using the arrow keys. I forget.
You can try turning off ALL autocomplete keys except the "Number Keys", that may disable the ability to navigate using the arrow keys. I forget.
- 20 Aug 2020, 13:18
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
Welcome, and thanks!
- 20 Aug 2020, 06:36
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
So it looks like this is due to square brackets being a special character in sqlite, though I didn't test it. The issue is probably in the WhereQuery in TypingAid.ahk. This should really be using binding, though I'm not sure that would fix this case. There's probably a way to escape square brackets....
- 20 Aug 2020, 06:18
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
Interesting @xxxxx it LEARNS the word if you type hello[hereisabracket, but as soon as you type the "[" the word hides.
- 20 Aug 2020, 06:16
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
xxxxx I think what you really want is to NOT have them in terminating characters and TO have them in Force New Word Characters... but it's not going to work. It needs to be enhanced to support double square brackets (right now, it'd reset the word after the 2nd square bracket). I'm not sure why it ...
- 13 Jul 2020, 06:48
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
dangl The proper place to fix this should be in CheckForActive in Window.ahk. However, TypingAid was meant to turn on and off when switching Windows, not when switching fields within a window. You might also need to have ReturnWinActive always return false (or return false under more conditions), b...
- 28 May 2020, 05:42
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
@V3771n9 not currently, but if I ever spend more cycles on it, the issue in the reply above yours covers multiple wordlists.
- 06 Aug 2019, 08:33
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
- 05 Aug 2019, 09:44
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
@Pilu I think it's because that doesn't disable the hotkeys, it just bypasses the autocomplete. Try removing this code in TypingAid.ahk, around line 600:
$1::
$2::
$3::
$4::
$5::
$6::
$7::
$8::
$9::
$0::
CheckWord(A_ThisHotkey)
Return
$1::
$2::
$3::
$4::
$5::
$6::
$7::
$8::
$9::
$0::
CheckWord(A_ThisHotkey)
Return
- 05 Aug 2019, 09:07
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
@Pilu , you should be able to fix this by turning off the number keys in settings. Right click the TypingAid icon > Settings > General Settings (default) > Auto Complete Keys
Uncheck "Number Keys"
Uncheck "Number Keys"
- 01 Aug 2019, 09:20
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
@jukka2 I use 3 screens and I do not have that issue. Which program are you typing in? Does it work in any other programs?
Do you have the helper window open? If so, close it.
Do you have the helper window open? If so, close it.
- 29 Jul 2019, 14:10
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
Hey dox , thanks, yes it's me. I appreciate that you want to donate; but as you've noticed... I actually have pretty much pulled back from development of this tool. I originally developed it because I needed it for work, but I've since moved on to new environments and no longer need it. I keep up wi...
- 06 Mar 2019, 14:12
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
So, values never decrement. The algorithm is not great - I'll give you that. You could manually edit them right within that database program if you want - just make sure the script is NOT running.
Or simply delete the old learned word... it's Ctrl-Shift-delete
Or simply delete the old learned word... it's Ctrl-Shift-delete
- 05 Mar 2019, 08:34
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
I don't understand, did it increment, or not?
- 04 Mar 2019, 15:27
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
To troubleshoot if your word is *actually* getting a higher ranking, install SQLiteStudio. Exit the script and open SQLiteStudio. Open the database "WordlistLearned.db", which should be in the same folder as the exe/script. Click on the Words table, and click on the DATA tab. Find the "march 2019" w...
- 04 Mar 2019, 13:10
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
It should be, but it takes a long time as it only increments by 1 each time you type.
This word is definitely in your learned words list and not in your static wordlist, right?
This word is definitely in your learned words list and not in your static wordlist, right?
- 04 Feb 2019, 13:07
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
It's mostly in Preferences_file.ahk and Settings.ahk, but unfortunately it's not setup for easy translations.
- 04 Feb 2019, 10:44
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
I think I typically use the left arrow key @sm1ng.
- 16 Jul 2018, 08:00
- Forum: Scripts and Functions
- Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
- Replies: 207
- Views: 92030
Re: TypingAid v2.22.0 - Word AutoCompletion Utility
Ah, I see. Might work. Regarding the Com Command, maybe. You'd have to make some possibly hefty modifications, but they may not be too bad.