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 

AutoReplace
Goto page Previous  1, 2, 3
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
Laszlo



Joined: 14 Feb 2005
Posts: 4517
Location: Boulder, CO

PostPosted: Sat Dec 20, 2008 6:09 pm    Post subject: Reply with quote

I see similar issues in my Vista PC: in IE7 input boxes of websites seem to react too slowly, and not all typed characters get deleted by hotstrings. Sometimes the first letter of the abbreviations remains. Other applications, like MS Word, Notepad, MultiEdit still work OK.
Back to top
View user's profile Send private message
susimenz



Joined: 19 Dec 2008
Posts: 4

PostPosted: Sun Dec 21, 2008 12:21 am    Post subject: Reply with quote

Thank you very much for that very quick reply, I very much appreciate this. UUnfortunately, this comes up in every application I have, even in Notepad, Word, Edit++ and so on.

I am really stuck with this - why did it work without any flaws for more than a year, and now things have turned down so dramatically. I wish I could find the bug, I think I have done literally every trial and error approach I could think of.

Again, thanks
Susi
Back to top
View user's profile Send private message
Laszlo



Joined: 14 Feb 2005
Posts: 4517
Location: Boulder, CO

PostPosted: Sun Dec 21, 2008 2:50 am    Post subject: Reply with quote

Have you tried "SendMode Input" and "#Hotstring SI"? Maybe your defaults have changed.
Back to top
View user's profile Send private message
susimenz



Joined: 19 Dec 2008
Posts: 4

PostPosted: Sun Dec 21, 2008 3:31 am    Post subject: Reply with quote

Yes, I had chosen that mode explicitly in the script. Also by adding the SI to the #Hostring commands, things haven't changed.

I am running out of explanations.... Crying or Very sad

It's a pity, as this was so much better than any other script I had been running all of the time. So much superior to the built-in spellchecker from MS.

Cheers
Susi
Back to top
View user's profile Send private message
Laszlo



Joined: 14 Feb 2005
Posts: 4517
Location: Boulder, CO

PostPosted: Sun Dec 21, 2008 3:54 am    Post subject: Reply with quote

With the Task Manager you could check if there is a background task running, eating up CPU cycles. Indexing the disk, background disk defragmenting, antivirus scanning can all slow down your PC. Of course, a virus or other malware could also be active. Even the zero configuration utility (periodic search for wireless networks) makes web applications to slow down. Too little RAM (less than 1GB for XP) can also be responsible. If the disk drive developed bad sectors, Windows switches back to a slower access mode, slowing down everything (a check for errors could mark the bad sectors and prevent these problems). Even a badly fragmented disk, or the lack of free disk space slows down everything (clean up and defragment the drive)...
Back to top
View user's profile Send private message
susimenz



Joined: 19 Dec 2008
Posts: 4

PostPosted: Sun Dec 21, 2008 3:52 pm    Post subject: Reply with quote

I might have found the issue - I am not yet sure and don't want to claim success yet, but I am typing these sentences here without any of the first letters being shown twice. Even the word where it most often happened doesn't seem to be an issue anymore (please apologize that I am typing it here multiple times):

you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you you

Smile

It was something I never thought about, and only your suggestion to look at the process explorer triggered an idea of mine to look at my processor via a software called CPUID as well. And then it came to me: when we purchased the computer about a year ago, my bf did slightly overclock it by 3-5%. That never was any problem anywhere, but maybe the computer is aging and thus doesn't like that too much anymore.

Consequently, we put all overclocking down to the normal speed of CPU/Bus etc, and ..... Tadaaaaa.... No more problems!!!!

THANK YOU VERY MUCH INDEED! I hope that this was really the driver, but it looks very promising so far.

Cheers & Kisses
Susi
Back to top
View user's profile Send private message
ahknice
Guest





PostPosted: Wed Mar 11, 2009 2:55 am    Post subject: Reply with quote

Hello guys. I downloaded auto correct ahk from http://www.autohotkey.com/download/AutoCorrect.ahk. Is it correct to think that you have put in one file entries from Microsoft Office autocorrect list and OpenOffice autocorrect list, etc. under Common Misspellings - the main list? It must be tough to sort out this list as I'm sure there are repeats. Also I'm wondering if you have this http://en.wikipedia.org/wiki/Wikipedia:Lists_of_common_misspellings/For_machines. I saw it was mentioned but not sure if it was considered.

Well the reason for my post is because I found Lazlos script integrated in this script. I found from Lazlo that for this to work

Quote:

The first 3 lines belong to the auto-execute section of the script (top), the Hoty subroutine has to be in the end.


http://www.autohotkey.com/forum/topic9689-15.html
Code:

keys = abcdefghijklmnopqrstuvwxyz
Loop Parse, keys
    HotKey ~+%A_LoopField%, Hoty
Hoty:
    CapCount := SubStr(A_PriorHotKey,2,1)="+" && A_TimeSincePriorHotkey<999 ? CapCount+1 : 1
    if CapCount = 2
        SendInput % "{BS}" . SubStr(A_ThisHotKey,3,1)
    else if CapCount = 3
        SendInput % "{Left}{BS}+" . SubStr(A_PriorHotKey,3,1) . "{Right}"
Return
[/quote]
Back to top
Montu



Joined: 11 Feb 2009
Posts: 140
Location: India

PostPosted: Wed Mar 11, 2009 8:53 am    Post subject: Reply with quote

I tried this with Word2007 but it didnot create any spell.ahk file on my desktop

please help Sad
Back to top
View user's profile Send private message
Guest






PostPosted: Thu Jan 07, 2010 7:47 pm    Post subject: how submit modification requests for autocorrect? Reply with quote

Hi,
Is there a standard process other than the forum to submit modification requests to the autocorrect script?

e.g. I noticed what I think is a bug in that when I want to type "developers", the autocorrect script will mistakenly fix it to be "developrs". I can make the change locally to the :*:develope::develop section, but that doesn't help others.

TIA,
Dan
Back to top
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3
Page 3 of 3

 
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