| Author |
Message |
Topic: Help with script to close user message |
Me!
Replies: 8
Views: 186
|
Forum: Ask for Help Posted: Tue Sep 16, 2008 1:17 am Subject: Help with script to close user message |
ditch the setbatchlines -1
#NoEnv
SetTitleMatchMode, 2
DetectHiddenWindows, On
SetTimer, Timer, 500
Timer:
IfWinExist , User Message
{
WinActivate, User Message
WinWaitActiv ... |
Topic: Advanced help request for Run and WinWaitActive |
Me!
Replies: 7
Views: 260
|
Forum: Ask for Help Posted: Mon Sep 15, 2008 9:33 pm Subject: Advanced help request for Run and WinWaitActive |
try this to make sure winwait active is working correctly
it should work no matter the cpu load.
WinWaitActive, ahk_class SALFRAME
wingettext, activetitle,A
msgbox, the proper window is now acti ... |
Topic: lowercase password causing login to fail.. (?!) |
Me!
Replies: 5
Views: 112
|
Forum: Ask for Help Posted: Mon Sep 15, 2008 4:26 am Subject: lowercase password causing login to fail.. (?!) |
try
Send, U
Sleep, 200
Send, s
Sleep, 200
Send, e
Sleep, 200
Send, r
Sleep, 200
Send, n
Sleep, 200
you get the idea
for the website its not working on so you can see exactly when it ... |
Topic: can ahk deal with two numberpad keyboard |
Me!
Replies: 5
Views: 190
|
Forum: Ask for Help Posted: Mon Sep 15, 2008 4:19 am Subject: can ahk deal with two numberpad keyboard |
| dude thats F%@# brilliant! |
Topic: lowercase password causing login to fail.. (?!) |
Me!
Replies: 5
Views: 112
|
Forum: Ask for Help Posted: Mon Sep 15, 2008 4:10 am Subject: lowercase password causing login to fail.. (?!) |
what hotkey are you using to trigger the script?
maybe you are holding down one of the modifiers a little too long?
try
^P UP:: ;or something
to be sure
http://www.autohotkey.com ... |
Topic: Get pixel location of selected text |
Me!
Replies: 6
Views: 242
|
Forum: Ask for Help Posted: Mon Sep 15, 2008 4:01 am Subject: Get pixel location of selected text |
in your autohotkey program directory is a program called AU3_Spy.exe
run it and click on the window you are curious about.
you'll see something like this
>>>>>>>>>> ... |
Topic: Advanced help request for Run and WinWaitActive |
Me!
Replies: 7
Views: 260
|
Forum: Ask for Help Posted: Mon Sep 15, 2008 3:47 am Subject: Advanced help request for Run and WinWaitActive |
WinWaitActive, ahk_class rctrl_renwnd32
Send ^v
return
the sleep kills it.
if that doesn't work try
WinWaitActive, ahk_class SALFRAME
ControlFocus, Internet Explorer_Server1 ... |
Topic: Trouble with ControlClick! |
Me!
Replies: 9
Views: 271
|
Forum: Ask for Help Posted: Mon Sep 15, 2008 3:34 am Subject: Trouble with ControlClick! |
Try ControlSend u
SetTitleMatchMode,Slow
SetControlDelay -1
ControlSend, REListBox20W1,u,ahk_class #32770,Unformatted Text
if that doesnt work
ControlFocus on that control
if ... |
Topic: Help with script to close user message |
Me!
Replies: 8
Views: 186
|
Forum: Ask for Help Posted: Mon Sep 15, 2008 3:21 am Subject: Help with script to close user message |
http://www.autohotkey.com/docs/commands/WinWaitActive.htm
try this:
#Persistent
#NoEnv
SetBatchLines, -1
SetTitleMatchMode, 2
DetectHiddenWindows, On
SetTimer, Timer, 500
Timer ... |
Topic: Darn near impossibe Regex and String editing |
Me!
Replies: 8
Views: 266
|
Forum: Ask for Help Posted: Mon Sep 15, 2008 3:12 am Subject: WooHOo |
Congrats on Post #300!
@guest The reason the other was ugly was the performance. It plain didn't work with larger lists. First time I've ever run AHK out of memory .
So with a few modificati ... |
Topic: Darn near impossibe Regex and String editing |
Me!
Replies: 8
Views: 266
|
Forum: Ask for Help Posted: Fri Sep 12, 2008 9:10 am Subject: It works but its ugly |
It works but it's ugly
h =
(
1=c:\1\2\3\4\5\1\1
1=c:\1\2\3\4\5\2\1
1=c:\1\2\3\4\5\3\1
1=c:\1\2\3\4\5\4\1
1=c:\1\2\3\4\5\5\1
1=c:\1\2\3\4\5\6\1
1=c:\1\2\3\4\5 ... |
Topic: Darn near impossibe Regex and String editing |
Me!
Replies: 8
Views: 266
|
Forum: Ask for Help Posted: Fri Sep 12, 2008 7:28 am Subject: ! |
Wow! Could you at least have the courtesy to pretend that was hard! I've been puzzling over it for quite a while......
Seriously though that's impressive and quite welcome.
I've added two lines.
... |
Topic: Darn near impossibe Regex and String editing |
Me!
Replies: 8
Views: 266
|
Forum: Ask for Help Posted: Fri Sep 12, 2008 1:00 am Subject: Darn near impossibe Regex and String editing |
| i wish i had something to start from. i Can troubleshoot plans just fine but i haven't figured out how to even start. i gave up a while ago but i'm a bit more experienced now so I'll give it another ... |
Topic: Darn near impossibe Regex and String editing |
Me!
Replies: 8
Views: 266
|
Forum: Ask for Help Posted: Thu Sep 11, 2008 10:04 pm Subject: Darn near impossibe Regex and String editing |
Ok you guys look like you could use another challenge, and I could use a little help, so see if you can do this..
Here's your list:
h =
(
1=d:\asdf\1234\aerg\1
f=h:\ae=8g\zdfgh5\sdf ... |
Topic: Need read variable dropdown menu & click on specific opt |
Me!
Replies: 1
Views: 79
|
Forum: Ask for Help Posted: Fri Aug 01, 2008 6:54 pm Subject: Need read variable dropdown menu & click on specific opt |
non working fill in some values.
ControlGetText, textyougot, CONTROLNAME, WINDOW TITLE OR CLASS
loop parse, %textyougot%, | or `n (cant remember)
{
if A_loopfield contains text yo ... |
| |