AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

TypingAid v2.16b - Word AutoCompletion Utility
Goto page Previous  1, 2, 3 ... 14, 15, 16 ... 30, 31, 32  Next
 
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
maniac



Joined: 28 Aug 2009
Posts: 267

PostPosted: Mon Jul 05, 2010 5:12 pm    Post subject: Reply with quote

I'll think about it hugov, motivation isn't all that high though.

AutoHotkey_U can still be downloaded, it's just not being developed.
Back to top
View user's profile Send private message
SoLong&Thx4AllTheFish



Joined: 27 May 2007
Posts: 4999

PostPosted: Mon Jul 05, 2010 8:51 pm    Post subject: Reply with quote

maniac wrote:
I'll think about it hugov, motivation isn't all that high though.
No worries, not something that has my interest either Wink (especially as I'm working on a new app, I'd say 80% done, just have to clean it up a bit and add some final tweaks before posting it)
_________________
AHK Wiki FAQ
TF : Text files & strings lib, TF Forum
Back to top
View user's profile Send private message
eleanor
Guest





PostPosted: Sat Jul 17, 2010 11:24 am    Post subject: typing aid Reply with quote

since this program uses unicode is there and application available in Hebrew?
Back to top
maniac



Joined: 28 Aug 2009
Posts: 267

PostPosted: Sat Jul 17, 2010 5:38 pm    Post subject: Re: typing aid Reply with quote

eleanor wrote:
since this program uses unicode is there and application available in Hebrew?



2.15 doesn't work with the unicode version, not sure why. You'll have to try an older version (try replace the download file name with the version you want to try, they are all still on the server).

None of the instructions are in Hebrew, only English.
Back to top
View user's profile Send private message
rjwilmsi



Joined: 18 May 2005
Posts: 30

PostPosted: Fri Aug 13, 2010 1:15 pm    Post subject: text typed into password fields Reply with quote

This is a really useful utility. The only major issue I have is over passwords: does anybody have a tactic to prevent the script picking up text typed into password fields? Thanks
Back to top
View user's profile Send private message
maniac



Joined: 28 Aug 2009
Posts: 267

PostPosted: Fri Aug 13, 2010 7:58 pm    Post subject: Re: text typed into password fields Reply with quote

rjwilmsi wrote:
This is a really useful utility. The only major issue I have is over passwords: does anybody have a tactic to prevent the script picking up text typed into password fields? Thanks


Yes, I have it on my computer, I've had it coded for a while. I will release it monday (?), since you asked for it.
Back to top
View user's profile Send private message
rjwilmsi



Joined: 18 May 2005
Posts: 30

PostPosted: Fri Aug 13, 2010 8:20 pm    Post subject: Re: text typed into password fields Reply with quote

maniac wrote:
Yes, I have it on my computer, I've had it coded for a while. I will release it monday (?), since you asked for it.

That would be great, thank you.
Back to top
View user's profile Send private message
maniac



Joined: 28 Aug 2009
Posts: 267

PostPosted: Mon Aug 16, 2010 10:47 am    Post subject: Reply with quote

TypingAid 2.16 released:

*2.16 08/16/2010
** Added the parameter DoNotLearnStrings. Any words which contain a string from DoNotLearnStrings will not be learned.
** Words which do not contain any alphabetical characters (A-Z) will not be learned.
** Words which contain numbers will now be learned even if Number keys are enabled as AutoComplete keys, the number pad may be used to type numbers without autocompleting the word.


An example for DoNotLearnStrings would be if you have ord98 in DoNotLearnStrings, password987 will not be learned.

Edit:
I'm not sure how the words not containing alphabetical characters will affect unicode languages, but as the unicode version apparently doesn't work right now anyway I'm not sure that it's a big deal....


Last edited by maniac on Mon Aug 16, 2010 3:08 pm; edited 1 time in total
Back to top
View user's profile Send private message
rjwilmsi



Joined: 18 May 2005
Posts: 30

PostPosted: Mon Aug 16, 2010 11:06 am    Post subject: Reply with quote

Thank you for the DoNotLearnStrings feature, which I confirm is working fine.

The only slight problem I've noticed is that when picking up a word including numbers to appear in the word list, if the numbers are typed using the standard numbers (not keypad), when shown in the word list the numbers are duplicated e.g. test678 is shown as test667788. This doesn't occur if the word's numbers are typed using the keypad.

Thanks
Back to top
View user's profile Send private message
maniac



Joined: 28 Aug 2009
Posts: 267

PostPosted: Mon Aug 16, 2010 11:28 am    Post subject: Reply with quote

rjwilmsi wrote:
Thank you for the DoNotLearnStrings feature, which I confirm is working fine.

The only slight problem I've noticed is that when picking up a word including numbers to appear in the word list, if the numbers are typed using the standard numbers (not keypad), when shown in the word list the numbers are duplicated e.g. test678 is shown as test667788. This doesn't occur if the word's numbers are typed using the keypad.

Thanks

You are welcome.

One or Two press mode? Number keys enabled or disabled as hotkeys? I need your config Smile

Edit: I am unable to replicate the issue; but i did notice that when NumPresses=2, numbers aren't learned. I will need to address this in a future version.
Back to top
View user's profile Send private message
rjwilmsi



Joined: 18 May 2005
Posts: 30

PostPosted: Mon Aug 16, 2010 1:32 pm    Post subject: Reply with quote

I've got NumPresses=1 and no keys disabled. Later I'll have a look at whether the problem occurs for me for the default config.
Back to top
View user's profile Send private message
rjwilmsi



Joined: 18 May 2005
Posts: 30

PostPosted: Tue Aug 17, 2010 9:56 am    Post subject: Reply with quote

The problem does occur for me with the default configuration. The only change I have to make is to move the library files to the same directory as the main TypingAid.ahk file and change the include lines as follows:

#Include %A_ScriptDir%\ListBox.ahk

This change is the only way I get TypingAid to load (works fine after), though I can't see how it would affect the word completion behaviour?
Back to top
View user's profile Send private message
maniac



Joined: 28 Aug 2009
Posts: 267

PostPosted: Tue Aug 17, 2010 10:38 am    Post subject: Reply with quote

Weird, sorry I'm not seeing the issue. Is anyone else?

I have no idea why you have to move the include files to the main directory. Maybe it's a security/permissions thing?
Back to top
View user's profile Send private message
rjwilmsi



Joined: 18 May 2005
Posts: 30

PostPosted: Thu Aug 19, 2010 8:13 am    Post subject: Reply with quote

The duplicated numbers issue only occurs when I have my normal AutoHotkey running too, with various hotstrings & keyboard shortcuts, so something is conflicting with TypingAid.
Back to top
View user's profile Send private message
SoLong&Thx4AllTheFish



Joined: 27 May 2007
Posts: 4999

PostPosted: Thu Aug 19, 2010 8:30 am    Post subject: Reply with quote

@Maniac: to solve the bug report by rjwilmsi add the I parameter to this line
Code:
   Input, chr, L1 V I, {BS}%TerminatingCharacters%

Quote:
I: Ignore input generated by any AutoHotkey script, such as the SendEvent command. However, the SendInput and SendPlay methods are always ignored, regardless of this setting.
Source: http://www.autohotkey.com/docs/commands/Input.htm


@rjwilmsi: try it yourself and you will probably see your problem is solved, report back your experience, thanks.
_________________
AHK Wiki FAQ
TF : Text files & strings lib, TF Forum
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3 ... 14, 15, 16 ... 30, 31, 32  Next
Page 15 of 32

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group