TypingAid v2.22.0 - Word AutoCompletion Utility

Post your working scripts, libraries and tools for AHK v1.1 and older
xxxxx
Posts: 2
Joined: 09 Aug 2020, 16:13

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

20 Aug 2020, 10:05

Hey @Maniac,

thanks for getting back to me. I've submitted an issue as requested : https://github.com/ManiacDC/TypingAid/issues/96
I think you're right regarding the sqlite issue. As soon as we type a [, the popup disappears, so it is only possible to autocomplete `test[brackets]` by typing `test` whereas `test[` will not work.

I've tried an older TypingAid 2.19.9 and it works fine with [[test]], so I'll stick with this older version for now
Last edited by xxxxx on 20 Aug 2020, 22:55, edited 1 time in total.
sobuj53
Posts: 55
Joined: 19 Mar 2015, 16:08

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

27 Sep 2020, 09:55

Hello @Maniac,
Thanks for this software. It's really helping me a lot while typing. I'm facing a little bit of bug and created an issue on github, https://github.com/ManiacDC/TypingAid/issues/97.
Hope you'll have time to take a peek at it :).
dbn4
Posts: 1
Joined: 23 Oct 2020, 01:01

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

23 Oct 2020, 01:05

Is there way to disable the Up and Down arrow keys for autocompletion. They overide the ones of windows.
Maniac
Posts: 121
Joined: 24 Oct 2014, 07:15
Contact:

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

23 Oct 2020, 06:42

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.
alertrt3
Posts: 1
Joined: 19 Dec 2020, 12:29

Need help for alternate use

19 Dec 2020, 13:15

Thank you very much for making this brilliant script. :clap:
My question today is about modifying this script for an alternate use. I have an excel table that will be my 'wordlist' and I would like to use autocomplete to find matches from this wordlist only. Is this something that will require any modifications to the script? If yes, I would greatly appreciate any help. Thank you once again
sobuj53
Posts: 55
Joined: 19 Mar 2015, 16:08

Re: Need help for alternate use

19 Dec 2020, 13:22

alertrt3 wrote:
19 Dec 2020, 13:15
Thank you very much for making this brilliant script. :clap:
My question today is about modifying this script for an alternate use. I have an excel table that will be my 'wordlist' and I would like to use autocomplete to find matches from this wordlist only. Is this something that will require any modifications to the script? If yes, I would greatly appreciate any help. Thank you once again
Nope, you just put them on the word list and done.
Maniac
Posts: 121
Joined: 24 Oct 2014, 07:15
Contact:

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

19 Dec 2020, 13:38

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.
jsong55
Posts: 219
Joined: 30 Mar 2021, 22:02

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

01 Apr 2021, 23:14

Love this tool, I wonder if there is a way to assign in the database priority of words. This will be especially useful for custom words. Cheers and thanks.
Maniac
Posts: 121
Joined: 24 Oct 2014, 07:15
Contact:

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

02 Apr 2021, 06:22

@jsong55 if it's a hardcoded list for which you don't want the order to change, use wordlist.txt.

If you want to seed an initial list of words that will change priority over time:
Make a backup of your TypingAid Folder
Delete WordlistLearned.db (note, this will delete your learned words)
Update WordlistLearned.txt with the appropriate order
Relaunch TypingAid. IIRC this will recreate the WordlistLearned.db file from the WordlistLearned.txt file.


Learned Words will always change order over time.
jsong55
Posts: 219
Joined: 30 Mar 2021, 22:02

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

02 Apr 2021, 23:11

@Maniac Thank you! Yea I guess your method would work too, just that it would force the script to rebuild the database. Anyway I figured how to change the values in DB Browser for SQLite. Managed to use this typing tool for complete phrases instead of just words. That makes it super powerful!
HuckD
Posts: 7
Joined: 16 Feb 2021, 15:27

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

03 Apr 2021, 14:52

I've tried TypingAid in Wordpad++ as well as MS Word. The suggestion window pops up as I type the first word of a line or sentence. However, the window doesn't pop up again until I start a new line or sentence. I've rebooted my system. I've stopped and restarted the script. This happens in the script as well as the compiled program. Any suggestions will be appreciated.
jsong55
Posts: 219
Joined: 30 Mar 2021, 22:02

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

03 Apr 2021, 14:57

HuckD wrote:
03 Apr 2021, 14:52
I've tried TypingAid in Wordpad++ as well as MS Word. The suggestion window pops up as I type the first word of a line or sentence. However, the window doesn't pop up again until I start a new line or sentence. I've rebooted my system. I've stopped and restarted the script. This happens in the script as well as the compiled program. Any suggestions will be appreciated.
Have you tried the Ctrl+Shift+H option? It will bring up a window. Also check if your word list has been built? Your database (.db) file in the script directory should be at least a few kB big.
HuckD
Posts: 7
Joined: 16 Feb 2021, 15:27

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

03 Apr 2021, 20:30

Thanks for the reply jsong55. The compiled program seems to be working just fine now. I killed it and ran the script and it still only opens the list once per line or sentenance. I'm not going to worry about that though. I'll just run the compiled exe. I think TypingAid is going to be very useful.
Maniac
Posts: 121
Joined: 24 Oct 2014, 07:15
Contact:

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

03 Apr 2021, 22:27

@HuckD it's been AGES since I've tested the script with a recent version of AHK. There may be some incompatibilities with newer versions.
GavinPen
Posts: 25
Joined: 24 Oct 2017, 16:49
Contact:

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

20 May 2021, 09:30

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.
Maniac
Posts: 121
Joined: 24 Oct 2014, 07:15
Contact:

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

20 May 2021, 09:41

I mean... it won't serve your use case, but TypingAid is largely unnecessary on Android as the functionality is built into most keyboards.
Drakemoor
Posts: 1
Joined: 13 Aug 2021, 12:45

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

13 Aug 2021, 12:53

Hi,
I'm sorry if I'm asking a stupid question, but how do I make the pop-up suggestion window show under the caret instead of the mouse cursor?
I'm using the application not the ahk script.

Thank you.
QX7337
Posts: 1
Joined: 27 Jan 2020, 08:20

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

01 Nov 2021, 21:05

Maher wrote:
22 Jun 2018, 03:06
I managed to use a unique character and replace it with `n at the sendfull section in Sending.AHK

Can you please advise where I can stringreplace the newline character after pressing control+shift+C to include new entry to the wordlistlearned.txt file ?

What I am trying to do is to copy a paragraph and automatically changes linefeeds to the unique character before it is sent to the database

Many thanks

Maher
can you please share the mod that you made ? i also would like to be able to use 'br' and expands to

best regards,

peter

multi line

thank you Maher
Maniac
Posts: 121
Joined: 24 Oct 2014, 07:15
Contact:

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

02 Nov 2021, 06:11

Drakemoor wrote:
13 Aug 2021, 12:53
Hi,
I'm sorry if I'm asking a stupid question, but how do I make the pop-up suggestion window show under the caret instead of the mouse cursor?
I'm using the application not the ahk script.

Thank you.
This will automatically happen IF the application you are using reports its caret position to Windows. If the application does not report it, it will pop up under the mouse cursor.

Return to “Scripts and Functions (v1)”

Who is online

Users browsing this forum: sanmaodo and 93 guests