| Author |
Message |
Topic: Can't grasp basic understanding of SetWindowPos() |
engunneer
Replies: 13
Views: 172
|
Forum: Ask for Help Posted: Thu Aug 14, 2008 6:30 am Subject: Can't grasp basic understanding of SetWindowPos() |
| i'm not sure about second from top. we can do top and bottom easily enough. You are correct that if there are no AHK commands, DllCall can usually do it. |
Topic: control mouse DPI with autohotkey? |
engunneer
Replies: 13
Views: 462
|
Forum: Ask for Help Posted: Thu Aug 14, 2008 6:28 am Subject: control mouse DPI with autohotkey? |
| you might be able to simply RegWrite to the right place to change the setting. |
Topic: AHK Shared Application |
engunneer
Replies: 2
Views: 83
|
Forum: Ask for Help Posted: Thu Aug 14, 2008 6:25 am Subject: AHK Shared Application |
| http://www.autohotkey.com/forum/viewtopic.php?t=18417 |
Topic: Script Error - Autohotkey wont start - HELP |
engunneer
Replies: 11
Views: 202
|
Forum: Ask for Help Posted: Thu Aug 14, 2008 6:12 am Subject: Script Error - Autohotkey wont start - HELP |
| JS, can I lift the list of links you posted and put it in my help thread? It's well collected. |
Topic: Hotstring Command |
engunneer
Replies: 2
Views: 210
|
Forum: Wish List Posted: Thu Aug 14, 2008 6:07 am Subject: Hotstring Command |
| I hope you know the workaround way that is already published... |
Topic: Totally STUCK! What to do now? |
engunneer
Replies: 13
Views: 219
|
Forum: Ask for Help Posted: Tue Aug 12, 2008 7:25 pm Subject: Totally STUCK! What to do now? |
I need to figure out how to use a randon name generator
Yeah, sounds like you do. |
Topic: Totally STUCK! What to do now? |
engunneer
Replies: 13
Views: 219
|
Forum: Ask for Help Posted: Tue Aug 12, 2008 7:17 pm Subject: Totally STUCK! What to do now? |
8::
MouseClick
WinWaitActive ....
|
Topic: "Lbutton up" in Gui gLabel calls first hotkey |
engunneer
Replies: 2
Views: 128
|
Forum: Bug Reports Posted: Tue Aug 12, 2008 5:23 pm Subject: "Lbutton up" in Gui gLabel calls first hotkey |
same happens here, and I see a different problem.
settimer sethotkeys, -5000
; (Tested with 1.0.47.00 and 1.0.47.06 on WindowsXP)
Gui, add, text, gtxtLbutton, Click on this text ... |
Topic: pause |
engunneer
Replies: 5
Views: 113
|
Forum: Ask for Help Posted: Sat Aug 09, 2008 6:18 am Subject: Re: pause |
f6::
run taskmgr.exe
suspend,on
Return
|
Topic: Passwords in Exe Files? |
engunneer
Replies: 7
Views: 170
|
Forum: Ask for Help Posted: Sat Aug 09, 2008 5:37 am Subject: Passwords in Exe Files? |
| there are a few scripts in the S&F subforum for "Those who Compile" that give you full options without using the command line to compile. |
Topic: Script won't compile to .EXE |
engunneer
Replies: 6
Views: 168
|
Forum: Ask for Help Posted: Sat Aug 09, 2008 5:35 am Subject: Script won't compile to .EXE |
try renaming the file and compiling again?
what folder is the script in? Are you on Vista? |
Topic: IE_Move |
engunneer
Replies: 2
Views: 104
|
Forum: Ask for Help Posted: Fri Aug 08, 2008 10:01 pm Subject: IE_Move |
I think the best you can do is:
http://www.autohotkey.com/forum/viewtopic.php?t=24797 |
Topic: Imagesearch script |
engunneer
Replies: 5
Views: 167
|
Forum: Ask for Help Posted: Fri Aug 08, 2008 9:56 pm Subject: Imagesearch script |
; i found that sending {alt}{printscreen} didn't work, but ! instead of {alt} does
Send, !{PRINTSCREEN}
The other way is to send {alt down}{printscre ... |
Topic: EnvSub, End, Start, Millisecond ?? |
engunneer
Replies: 4
Views: 407
|
Forum: Ask for Help Posted: Fri Aug 08, 2008 9:50 pm Subject: EnvSub, End, Start, Millisecond ?? |
code?
multiply by 1000? |
Topic: Check space in variable - How |
engunneer
Replies: 4
Views: 90
|
Forum: Ask for Help Posted: Fri Aug 08, 2008 9:49 pm Subject: Check space in variable - How |
you mean Chr(32)
also,
If tkn = %A_Space%
If (tkn = " ")
If (tkn = A_Space)
If (tkn = Chr(32))
are all valid
BTW, are you using tkn to mean tok ... |
| |