AutoHotkey Community

It is currently May 27th, 2012, 4:04 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 45 posts ]  Go to page Previous  1, 2, 3
Author Message
 Post subject:
PostPosted: December 20th, 2008, 6:09 pm 
Offline

Joined: February 14th, 2005, 4:05 pm
Posts: 4710
Location: Boulder, CO
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 21st, 2008, 12:21 am 
Offline

Joined: December 19th, 2008, 12:53 am
Posts: 4
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 21st, 2008, 2:50 am 
Offline

Joined: February 14th, 2005, 4:05 pm
Posts: 4710
Location: Boulder, CO
Have you tried "SendMode Input" and "#Hotstring SI"? Maybe your defaults have changed.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 21st, 2008, 3:31 am 
Offline

Joined: December 19th, 2008, 12:53 am
Posts: 4
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.... :cry:

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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 21st, 2008, 3:54 am 
Offline

Joined: February 14th, 2005, 4:05 pm
Posts: 4710
Location: Boulder, CO
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)...


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 21st, 2008, 3:52 pm 
Offline

Joined: December 19th, 2008, 12:53 am
Posts: 4
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

:-)

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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 11th, 2009, 2:55 am 
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: ... r_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]


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: March 11th, 2009, 8:53 am 
Offline

Joined: February 11th, 2009, 2:23 pm
Posts: 142
Location: India
I tried this with Word2007 but it didnot create any spell.ahk file on my desktop

please help :(


Report this post
Top
 Profile  
Reply with quote  
PostPosted: January 7th, 2010, 7:47 pm 
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


Report this post
Top
  
Reply with quote  
PostPosted: April 27th, 2010, 12:13 pm 
Offline

Joined: April 27th, 2010, 12:09 pm
Posts: 2
Location: Kent, UK
Anonymous wrote:
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


This is a good catch - what's the fix?

Obviously I can comment out that line, but then you would lose the rest of the functionality, which I'd rather not.

Thinking about it, wouldn't this script make more sense to put on either a wiki or something like GitHub? Any objections if I did this?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 5th, 2010, 11:16 am 
Offline

Joined: August 18th, 2009, 12:07 pm
Posts: 375
Location: holland
Is this script only supposed to work with word?
I am trying it by typing into notepad2 and nothing happens - I mean I can type lots of spolling mistooks and they are not corrected.
do you need to activate it first with a hotkey? as i cant find one in the script for that.


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Autocorrect
PostPosted: November 5th, 2010, 12:23 pm 
Autocorrect does not correct all errors. It corrects standard typos such as "amd" when you mean "and," or "teh" when you mean "the," as well as a host of other typos. Have a look at the script and you will see how the script functions and how the corrections are made. If you want it to correct "mistooks" you will have to tell it what you want in its place, and once you tell it, it will always make the correction when it is loaded, and when you spell "mistooks."

If you are looking for a script that corrects errors, then maybe you want to look at "TinySpell." "TypingAid" or "Let Me Type" may also be of use, but they are not designed to correct misspellings _per se_. They are designed to speed up typing by suggesting the possibly intended word.

-----
Is this script only supposed to work with word? I am trying it by typing into notepad2 and nothing happens - I mean I can type lots of spolling mistooks and they are not corrected. do you need to activate it first with a hotkey? as i cant find one in the script for that.[/quote]


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: November 5th, 2010, 12:39 pm 
Offline

Joined: August 18th, 2009, 12:07 pm
Posts: 375
Location: holland
I see, teh was corrected but not amd
but i see what you mean - thanks for reply


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Autocorrect
PostPosted: November 6th, 2010, 12:26 pm 
"amd" was not replaced by "and" because your script was not modified to take account of "amd." Modify the script accordingly and you will see that "amd" will become "and" as you continue to type.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 4th, 2011, 8:43 am 
Offline

Joined: October 3rd, 2005, 2:42 am
Posts: 186
Replying to an aaaancient question, I know, but...

Chris wrote:
As a further improvement, would it be possible to add the following without causing ambiguity/overlap with any legitimate English words?:
Code:
:?:blity::bility
:?:blities::blities


I cannot find any words ending in these terms.

Quote:
Was there any reason to omit the following?:
Code:
[...]
::january::January
::february::February
::march::March
::april::April
; ::may::May  ; Disabled because it matches the common word "may".
::june::June
::july::July
::august::August
::september::September
::october::October
::novemeber::November
::december::December
I temporarily put them back in, but we can discuss pro's and con's.


I felt it May be a problem for those who March to the beat of more August drums.

Once three of the months were removed for conflicts with lowercase words, keeping the other nine seemed silly.

Mostly, though, I found the correction more annoying than useful. Most other things I can have happen in any window, and don't care if they affect filenames, programming code, etc, because they are almost always useful. These, I found, were more often a hindrance and an annoyance, than a useful feature.

But I also admit I may not be typical, there.

Also the hotstring for November is typoed.


And yeah - I failed miserably to maintain it, and I apologize :( I retract my volunteeration, since I'm clearly too crap to do it.

_________________
Yet another hotkeyer.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 45 posts ]  Go to page Previous  1, 2, 3

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 20 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group