| View previous topic :: View next topic |
| Author |
Message |
maniac
Joined: 28 Aug 2009 Posts: 267
|
Posted: Mon Jul 05, 2010 5:12 pm Post subject: |
|
|
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 |
|
 |
SoLong&Thx4AllTheFish
Joined: 27 May 2007 Posts: 4999
|
Posted: Mon Jul 05, 2010 8:51 pm Post subject: |
|
|
| maniac wrote: | | I'll think about it hugov, motivation isn't all that high though. | No worries, not something that has my interest either (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 |
|
 |
eleanor Guest
|
Posted: Sat Jul 17, 2010 11:24 am Post subject: typing aid |
|
|
| since this program uses unicode is there and application available in Hebrew? |
|
| Back to top |
|
 |
maniac
Joined: 28 Aug 2009 Posts: 267
|
Posted: Sat Jul 17, 2010 5:38 pm Post subject: Re: typing aid |
|
|
| 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 |
|
 |
rjwilmsi
Joined: 18 May 2005 Posts: 30
|
Posted: Fri Aug 13, 2010 1:15 pm Post subject: text typed into password fields |
|
|
| 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 |
|
 |
maniac
Joined: 28 Aug 2009 Posts: 267
|
Posted: Fri Aug 13, 2010 7:58 pm Post subject: Re: text typed into password fields |
|
|
| 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 |
|
 |
rjwilmsi
Joined: 18 May 2005 Posts: 30
|
Posted: Fri Aug 13, 2010 8:20 pm Post subject: Re: text typed into password fields |
|
|
| 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 |
|
 |
maniac
Joined: 28 Aug 2009 Posts: 267
|
Posted: Mon Aug 16, 2010 10:47 am Post subject: |
|
|
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 |
|
 |
rjwilmsi
Joined: 18 May 2005 Posts: 30
|
Posted: Mon Aug 16, 2010 11:06 am Post subject: |
|
|
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 |
|
 |
maniac
Joined: 28 Aug 2009 Posts: 267
|
Posted: Mon Aug 16, 2010 11:28 am Post subject: |
|
|
| 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
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 |
|
 |
rjwilmsi
Joined: 18 May 2005 Posts: 30
|
Posted: Mon Aug 16, 2010 1:32 pm Post subject: |
|
|
| 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 |
|
 |
rjwilmsi
Joined: 18 May 2005 Posts: 30
|
Posted: Tue Aug 17, 2010 9:56 am Post subject: |
|
|
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 |
|
 |
maniac
Joined: 28 Aug 2009 Posts: 267
|
Posted: Tue Aug 17, 2010 10:38 am Post subject: |
|
|
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 |
|
 |
rjwilmsi
Joined: 18 May 2005 Posts: 30
|
Posted: Thu Aug 19, 2010 8:13 am Post subject: |
|
|
| 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 |
|
 |
SoLong&Thx4AllTheFish
Joined: 27 May 2007 Posts: 4999
|
Posted: Thu Aug 19, 2010 8:30 am Post subject: |
|
|
@Maniac: to solve the bug report by rjwilmsi add the I parameter to this line
| Code: | | Input, chr, L1 V I, {BS}%TerminatingCharacters% |
@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 |
|
 |
|