| Author |
Message |
Topic: HTML Coding helper script |
rtcvb32
Replies: 3
Views: 200
|
Forum: Ask for Help Posted: Wed Feb 24, 2010 4:20 am Subject: HTML Coding helper script |
Ok, thanks for your help, my first example just worked perfectly with
send ^x
send <a href="^v" TARGET="_blank">^v</a>
But now i'm experiencing another trouble, ... |
Topic: Run preferred text editor when notepad.exe is called |
rtcvb32
Replies: 7
Views: 259
|
Forum: Ask for Help Posted: Thu Nov 26, 2009 9:41 pm Subject: Run preferred text editor when notepad.exe is called |
| Something to consider. Notepad++ has a loader that replaces the default notepad program. You could also follow the steps for which notepad.exe to replace/delete, and when windows complains about the n ... |
Topic: Problems with downloading big files |
rtcvb32
Replies: 3
Views: 113
|
Forum: Ask for Help Posted: Thu Nov 26, 2009 5:49 am Subject: Problems with downloading big files |
| Default max size is 64Mb. If you are getting larger than that, then change your #MaxMem accordingly. Might change it to 256Mb, but hope it doesn't have many variables that big as you will quickly eat ... |
Topic: I will pay someone $50 to write me a simple script.... |
rtcvb32
Replies: 7
Views: 444
|
Forum: General Chat Posted: Wed Nov 25, 2009 4:00 am Subject: I will pay someone $50 to write me a simple script.... |
| Perhaps if you did a recording of what you wanted and posted it, someone could clean it up and prepare the 6am timer to fire it off. Anything sensitive or can't be shared can be replaced with %input1% ... |
Topic: best way to handle errors? |
rtcvb32
Replies: 4
Views: 119
|
Forum: Ask for Help Posted: Wed Nov 25, 2009 3:41 am Subject: best way to handle errors? |
| On top of that, use the documentation to your advantage. If it has errorlevel information or modification, use it for debugging as well as to make appropriate actions. You might start with simple erro ... |
Topic: Darn McAfee |
rtcvb32
Replies: 3
Views: 155
|
Forum: Ask for Help Posted: Wed Nov 25, 2009 3:31 am Subject: Darn McAfee |
You can also remove UPX from scripts that are already compressed and compiled.
PWD_Path> upx -d script.exe
|
Topic: Disabling remapped key |
rtcvb32
Replies: 2
Views: 188
|
Forum: Ask for Help Posted: Wed Nov 25, 2009 3:24 am Subject: Re: Disabling remapped key |
Im trying to disable a remaped key (j::enter), after 5 seconds, Im trying with this (But it doesn't work):
j::enter
sleep, 5000
Hotkey, *j, off
so I need that, after 5 second, when I p ... |
Topic: compiling |
rtcvb32
Replies: 5
Views: 75
|
Forum: Ask for Help Posted: Wed Nov 25, 2009 3:20 am Subject: compiling |
| Also I've had trouble before where i tried to replace a EXE file and kept having trouble. To fix that, close the ahk2exe and manually delete the unwanted EXE before trying again. Though more often tha ... |
Topic: Trouble with regexmatch() |
rtcvb32
Replies: 3
Views: 148
|
Forum: Ask for Help Posted: Tue Nov 24, 2009 2:36 am Subject: Trouble with regexmatch() |
Before splitting the sentence by spaces, you may want to combine all the unwanted non-words and convert them to spaces. Since punctuation would get confused as words, unless that's not important.
... |
Topic: CONTEST - Smiley RegEx |
rtcvb32
Replies: 2
Views: 255
|
Forum: General Chat Posted: Mon Nov 23, 2009 5:52 am Subject: CONTEST - Smiley RegEx |
| This looks interesting. I'm finding it more useful to use a sandbox and replace all the matches with ~found~. I think i can do 1/3rd of the list, it will take a while to get them all. Certain matches ... |
Topic: Replace Windows+D with Windows+M in quicklaunch? |
rtcvb32
Replies: 2
Views: 85
|
Forum: Ask for Help Posted: Mon Nov 23, 2009 4:09 am Subject: Replace Windows+D with Windows+M in quicklaunch? |
So basically you want this, unless i'm mistaken.
#D::Send #M
|
Topic: Disable warnings, possible? |
rtcvb32
Replies: 2
Views: 104
|
Forum: Ask for Help Posted: Sun Nov 22, 2009 11:37 am Subject: Disable warnings, possible? |
| Having a duplicate hotkey is a user error. Simple logic dictates this. When a is pressed, which one should the program call, the top or the bottom one? If it should call both, in what order? that isn' ... |
Topic: Simple problem with text replacement |
rtcvb32
Replies: 8
Views: 171
|
Forum: Ask for Help Posted: Sun Nov 22, 2009 10:23 am Subject: Simple problem with text replacement |
OK, I got it: using #CommentFlag // in the source file and replacing all ; with //
Actually i'd recommend you use /// or /* */ instead of //. Only reason, is if you ever want to use the // Integer ... |
Topic: Loop |
rtcvb32
Replies: 17
Views: 397
|
Forum: Ask for Help Posted: Sun Nov 22, 2009 3:17 am Subject: Loop |
yes. Although i'd use Sleep and send.
loop, {
Send ;whatever you plan on sending.
Sleep 1000 ;every 1000 is a second
}
This is the minimal structure you're looking for. Read ... |
Topic: Gui write to ini |
rtcvb32
Replies: 2
Views: 83
|
Forum: Ask for Help Posted: Sun Nov 22, 2009 2:34 am Subject: Re: Gui write to ini |
Gui, Show, w405 h823, New GUI Window
IniWrite, %vAnimusSelect%, GUI.ini, Animus, select
IniWrite, %vColorChoice%, GUI.ini, Animus, colour
IniWrite, %vColorChoice1%, GUI.ini, Animus, colour1
... |
| |