| Author |
Message |
Topic: RegExReplace variable ref & semicolon in variable value |
quicktest
Replies: 5
Views: 129
|
Forum: Ask for Help Posted: Wed Jul 02, 2008 2:38 pm Subject: RegExReplace variable ref & semicolon in variable value |
Krogdor,
If you look at the sample code I provided, my variable name was outside of the quotes, which I agree is common knowledge. What I have not seen before, however, was the way the variable ref ... |
Topic: RegExReplace variable ref & semicolon in variable value |
quicktest
Replies: 5
Views: 129
|
Forum: Ask for Help Posted: Mon Jun 30, 2008 10:56 pm Subject: RegExReplace variable ref & semicolon in variable value |
pokercurious,
That worked great, thanks much! I'm wondering if that's a common convention for Regular Expressions? Because I went through the AutoHotKey help file and could not find this in the Reg ... |
Topic: RegExReplace variable ref & semicolon in variable value |
quicktest
Replies: 5
Views: 129
|
Forum: Ask for Help Posted: Mon Jun 30, 2008 7:32 pm Subject: RegExReplace variable ref & semicolon in variable value |
Found the solution for issue #2 with the escape character `. Had tried \ and ; but forgot to try `. Thanks forum.
If anyone could help with issue #1, it would be greatly appreciated. |
Topic: Toggle key hold down on and off |
quicktest
Replies: 3
Views: 163
|
Forum: Ask for Help Posted: Mon Jun 30, 2008 7:25 pm Subject: Toggle key hold down on and off |
See if this helps:
W_DOWN = 0
XButton1::
If W_DOWN = 0
{
Send {w down}
W_DOWN = 1
}
Else
{
Send {w up}
W_DOWN = 0
}
return ... |
Topic: Compilation of Ragnarok Online Scripts! |
quicktest
Replies: 10
Views: 250
|
Forum: Ask for Help Posted: Mon Jun 30, 2008 7:21 pm Subject: Compilation of Ragnarok Online Scripts! |
Hi, I don't play RO, although I'll take a stab at this issue below:
;General Use Bash/DoubleStrafe or any skill that needs targeting. this Macro
;casts a skill and clicks in the place the mouse i ... |
Topic: RegExReplace variable ref & semicolon in variable value |
quicktest
Replies: 5
Views: 129
|
Forum: Ask for Help Posted: Mon Jun 30, 2008 7:06 pm Subject: RegExReplace variable ref & semicolon in variable value |
Hi all,
I have 2 basic syntax questions but could not find the answers via a quick search, thus am hoping some bright minds could enlighten this aging one. I apologize in advance if these have been ... |
Topic: CD change detection for bulk cd -> hd copying |
quicktest
Replies: 1
Views: 125
|
Forum: Ask for Help Posted: Sun Oct 14, 2007 3:38 pm Subject: CD change detection for bulk cd -> hd copying |
Hi all,
I believe this was discussed before, although I spent an hour searching through the forum to no avail, so am risking my membership to see if anyone could give me some pointers on how to acc ... |
Topic: RegEx results contain unwanted characters |
quicktest
Replies: 9
Views: 528
|
Forum: Ask for Help Posted: Fri Feb 09, 2007 3:21 pm Subject: RegEx results contain unwanted characters |
| Titan: Sorry, I must be going blind. Could you point me to where the lazy match .*? documentation is? Or was it .* that you meant? I don't seem to see how to make it return the right-most position tho ... |
Topic: RegEx results contain unwanted characters |
quicktest
Replies: 9
Views: 528
|
Forum: Ask for Help Posted: Thu Feb 08, 2007 10:47 pm Subject: RegEx results contain unwanted characters |
| Thanks much Titan; it seems the result I wanted was stored in Result1. Could you explain a bit on why this is? I understand RegExMatch can store multiple instances of values in an expandable array, al ... |
Topic: RegEx results contain unwanted characters |
quicktest
Replies: 9
Views: 528
|
Forum: Ask for Help Posted: Thu Feb 08, 2007 8:39 pm Subject: RegEx results contain unwanted characters |
I have been trying to learn Regular Expression today, and thought I was beginning to understand it when I ran into this problem. Any help would be appreciated.
My task is to grab the values for eac ... |
Topic: A double click hotkey |
quicktest
Replies: 21
Views: 1818
|
Forum: Ask for Help Posted: Sat Nov 11, 2006 5:32 am Subject: A double click hotkey |
And I posted this question just 5 days ago, but worded it very poorly and got no response at all
Thanks spunch and PhilLo  |
Topic: WinActivate : This is not a bug... but |
quicktest
Replies: 1
Views: 240
|
Forum: Ask for Help Posted: Fri Nov 10, 2006 3:55 pm Subject: WinActivate : This is not a bug... but |
| I've run into my share of WinActivate issues, and came up with the rudimentary bandaid of using Sleep & dual activation to help alleviate it. Try the following modified code, see if it works bette ... |
Topic: basic winactivate and ifwinexist problems |
quicktest
Replies: 5
Views: 243
|
Forum: Ask for Help Posted: Fri Nov 10, 2006 3:44 pm Subject: basic winactivate and ifwinexist problems |
How about try the following for troubleshooting, to find out if it's the window detection or the activation that's failing. Just another 0.02 suggestion from me.
SetTitleMatchMode, 2
detecthidden ... |
Topic: IS there a way to Reload script in, program |
quicktest
Replies: 8
Views: 242
|
Forum: Ask for Help Posted: Thu Nov 09, 2006 11:49 pm Subject: IS there a way to Reload script in, program |
| Just want to chime in with my 0.02 cent idea; I use #SingleInstance Force to achieve a similar goal, so I can relaunch my script after editing without manually exiting the previous one. |
Topic: how to make a double hotkey ? |
quicktest
Replies: 5
Views: 393
|
Forum: Ask for Help Posted: Thu Nov 09, 2006 11:37 pm Subject: how to make a double hotkey ? |
Guess I only muddled things further... sorry vst & jonny.
By coincidence, I just was looking for the command to pass the hotkey to application. Learning something new at every post. : ... |
| |