Page 6 of 12

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 28 Feb 2017, 11:44
by Maniac
nilsonrdg wrote:Thanks for the quick reply.
Did you see the source code in your PMs?

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 28 Feb 2017, 13:42
by nilsonrdg
Yes, I tested and it worked.
It also seems to load faster.
Thanks.

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 01 Mar 2017, 07:09
by Maniac
So it fixed the issue with the accents? Great. I hope to get back to that soon and finish it. There are some final issues I need to review for it...

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 03 Mar 2017, 01:02
by ambroise
Maniac,

It's a little late but I was wanted to give an update from the post from 17 Dec 2016, 01:52

To summarize:
-I tried to use TypingAid on a USB drive on a computer at work and it didn't work
-When dragging the program to the computer (instead of running it from the USB), it works

I tried your suggestions of sending myself the folder from the computer, saving it to my USB drive and running it.
It didn't work.

Just wanted to let you know how it went (I told you I would let you know).

I'm just running an older version of TypingAid and everything is working fine.

Thanks again for all your help.

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 03 Mar 2017, 09:43
by Maniac
OK, thanks ambroise. What about an alternative solution, why not use Google Drive or DropBox to sync TypingAid, letting it sync to your other PC's via that? Then you don't have to worry about the USB stick.

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 04 Mar 2017, 17:36
by ambroise
I work in a hospital and due to HIPPA, those website are blocked (they're trying to limit the way patient's info can get out)
The program works fine if I choose the encrypt the USB drive and I'm able to use an older version on an non-encrypted drive.

Thanks again for all your help and the program.
My work would take twice as long without it.

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 06 Mar 2017, 08:13
by Maniac
Welcome! Anyway, glad it's working for you in some manner.

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 14 Mar 2017, 06:28
by nilsonrdg
I've been using the script on my work and the issue with the accents was really fixed. Thanks.

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 14 Mar 2017, 07:43
by Maniac
Awesome! I'll try to get back to it soon so I can release the next version.

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 29 Mar 2017, 10:52
by Cara
Hello,

:)

thank you very much for making this AMAZING software program, my fingers thank you :)

2 Questions if I may

1. How can I display new lines in the replacement autotext?

For example I have some paragraphs to insert.

In the Wordlist.txt i have made the text condensend so the program picks it up

FL1 Apples, bananas, pears,cherries,mangos, treats

When I insert it - how can i have it like this

Apples
Bananas
Pears
Cherries

is there a work around?

Do i need to insert a

n for newline character somewhere.

or in the Wordlist.txt
do i do this

FL1::
( Apples
bananas
pears
cherries
mangos
treats
)



2. How can I display more characters in the Tooltip box does it display only 50 characters in the prieview?


thank you to the Autohotkey experts.

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 29 Mar 2017, 13:11
by Maniac
1. There's no support for multiple lines and I don't intend to add it. If you want to patch it in your own copy, or maintain your own github fork, that's fine with me.

2. In preferences, under Wordlist Box, you can change the "List max width in pixels". If that's not set, it will use your monitor's width.

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 29 Mar 2017, 20:58
by Cara
Hello Maniac,

I am a newbie so i dont know much about programming or autohotkey but i did some research and found that i can search and replace in the clipboard with this


F9::
StringReplace, Clipboard, Clipboard, XX, `r`n, All
return

do you think i can search and replace just before my autotext is pasted from typingAid - this would help me to do mulltilines.
I could use XX as a placeholder for the newlines

I can see how useful TypingAid is and want to use it longterm

thank you :)
Cara

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 30 Mar 2017, 06:21
by Maniac
In Sending.ahk, SendFull, around like 140:

change:

Code: Select all

   ; if autospace is on, add a space to the string to send
   IfEqual, prefs_AutoSpace, On
      SendValue .= A_Space
to:

Code: Select all

   ; if autospace is on, add a space to the string to send
   IfEqual, prefs_AutoSpace, On
      SendValue .= A_Space


   StringReplace, SendValue, SendValue, XX, `r`n, All
You might want to use something a bit more unique than XX.

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 30 Mar 2017, 09:54
by Cara
Hello Maniac,

thank you very much that worked yay!


I am very happy becuase i dont need another text expander for the Long paragraphs or mutiple paragraphs, i can condense them and then split them on the clipboard.

I can paste my word list in and this will now solve that problem.

Search and replace in the clipboard.

Thank you very for making this software, and a have a great week now :D

Cara

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 30 Mar 2017, 10:48
by Maniac
Welcome!

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 02 Apr 2017, 05:11
by connorwb93
Just chiming in to say that I am working on a semi-related autocorrect project, and this script is super cool.

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 04 Apr 2017, 13:23
by Cara
Hello Maniac,


just a quick follow up, getting on nicely with it :)

Also - am I able to delete the first 4 characters of my text

eg if i use x100 as the trigger text - it will give me choices

I would like to delete the x100 while inserting my choice from the pop up


thank you for any tips
Cara

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 04 Apr 2017, 14:10
by Maniac
You could make changes in the same area of code as last time to deal with that :) Either before or after the line you added.

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 04 Apr 2017, 16:25
by Cara
Hello Maniac,

I need to trim something?

; if autospace is on, add a space to the string to send
IfEqual, prefs_AutoSpace, On
SendValue .= A_Space

StringTrimLeft, OutputVar, String, 4 ; 4 characters

I'm not sure if im doing it right?

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Posted: 05 Apr 2017, 06:03
by Maniac
I'm not entirely sure what it is you're trying to do? You need to detect x100 and the remove it, but are there other trigger text options you need to detect? How do you know if something is a special trigger text or not?