| Author |
Message |
Topic: Eliminating two exactly same lines |
TestPilot
Replies: 2
Views: 251
|
Forum: Ask for Help Posted: Wed Apr 16, 2008 9:03 am Subject: Eliminating two exactly same lines |
| Wow. Thank you. It do work perfectly. |
Topic: Eliminating two exactly same lines |
TestPilot
Replies: 2
Views: 251
|
Forum: Ask for Help Posted: Wed Apr 16, 2008 7:32 am Subject: Eliminating two exactly same lines |
| I want my script to catch and delete lines/paragraphs that identical and follow each other. PHEVs are similar to current hybrid electric vehicles but have larger batteries that can be charged from t ... |
Topic: TypoHunter |
TestPilot
Replies: 9
Views: 1211
|
Forum: Scripts & Functions Posted: Tue Mar 25, 2008 6:33 pm Subject: Re: CAPSLOCK |
I am an Aeronautical Engineer and this script looks like it would be very handy for reducing typos on our engineering drawings.
The problem is, all text on our drawings is required to be uppercase. ... |
Topic: TypoHunter |
TestPilot
Replies: 9
Views: 1211
|
Forum: Scripts & Functions Posted: Tue Mar 25, 2008 2:24 am Subject: TypoHunter |
New version. Changes described in first post.
Can someone look - I copy pasted "Win+H" part from AutoReplace. It works fine by itself but typos it adding are not working for some reason. ... |
Topic: TypoHunter |
TestPilot
Replies: 9
Views: 1211
|
Forum: Scripts & Functions Posted: Sun Mar 16, 2008 9:54 pm Subject: TypoHunter |
Nevermind as I type this I see it autocorrecting words.. it just isn't smart enough at this time to catch alot of errors..
Yeah, it not meant to replace spellchecker. It is correcting several thous ... |
Topic: AutoReplace |
TestPilot
Replies: 28
Views: 8024
|
Forum: Scripts & Functions Posted: Sun Mar 16, 2008 2:58 am Subject: AutoReplace |
| Regex based typo fixing script - I started new topic about it: http://www.autohotkey.com/forum/viewtopic.php?t=29733 |
Topic: TypoHunter |
TestPilot
Replies: 9
Views: 1211
|
Forum: Scripts & Functions Posted: Sun Mar 16, 2008 2:23 am Subject: TypoHunter |
Regular expressions based on the fly typo fixer.
You can get script here:
http://www.autohotkey.net/~TePe/TypoHunter.ahk
It is not trying to fix all typos, only most popular one. It is not m ... |
Topic: Mapping mouse button |
TestPilot
Replies: 2
Views: 332
|
Forum: Ask for Help Posted: Sat Mar 15, 2008 11:45 pm Subject: Mapping mouse button |
Yeah - that works awesome!
Thank you! |
Topic: Mapping mouse button |
TestPilot
Replies: 2
Views: 332
|
Forum: Ask for Help Posted: Sat Mar 15, 2008 5:50 pm Subject: Mapping mouse button |
$LButton::
send, {LButton}
Myfunction()
return
That works ok but when I press left mouse button and hold it, it don't let me to select text... Could it be som ... |
Topic: AutoReplace |
TestPilot
Replies: 28
Views: 8024
|
Forum: Scripts & Functions Posted: Thu Mar 13, 2008 12:16 am Subject: AutoReplace |
Ok I made it
2200 typofixing regular expressions included
It is not perfect, so I need someone to betatest and possibly optimize it. Preferably someone with AutoCorrect experience. |
Topic: strings compare (solved!) |
TestPilot
Replies: 8
Views: 222
|
Forum: Ask for Help Posted: Wed Mar 12, 2008 11:45 pm Subject: strings compare (solved!) |
| Thank you - somehow If str1 = %str2% works case sensitive way. |
Topic: strings compare (solved!) |
TestPilot
Replies: 8
Views: 222
|
Forum: Ask for Help Posted: Wed Mar 12, 2008 11:27 pm Subject: strings compare (solved!) |
Nah it is not working in cases where difference is only case of letters.
And I got StringCaseSense, On inside my script!
String1=Text
String2=tEXT
GoSub, Test ;Should evaluate false, fo ... |
Topic: strings compare (solved!) |
TestPilot
Replies: 8
Views: 222
|
Forum: Ask for Help Posted: Wed Mar 12, 2008 11:21 pm Subject: strings compare (solved!) |
thank you both -
If (String1 = String2)
works perfectly! |
Topic: strings compare (solved!) |
TestPilot
Replies: 8
Views: 222
|
Forum: Ask for Help Posted: Wed Mar 12, 2008 11:19 pm Subject: strings compare (solved!) |
Thank you very much - it works your way.
Duh, that %var% and just var and := and = are freaking confusing. |
Topic: strings compare (solved!) |
TestPilot
Replies: 8
Views: 222
|
Forum: Ask for Help Posted: Wed Mar 12, 2008 11:07 pm Subject: strings compare (solved!) |
if %str1%==%str2%
str1 = Yess!!!
else
str1 = not again...
I wanna compare str1 and str2. And it always false. So else command executing. I was trying
if %str1%=%str2%
if str1=str2
but no lu ... |
| |