| Author |
Message |
Topic: ImageSearch on minimized application. Possible? |
Sukarn
Replies: 4
Views: 300
|
Forum: Ask for Help Posted: Thu Aug 16, 2007 6:07 pm Subject: ImageSearch on minimized application. Possible? |
The region to be searched must be visible; in other words, it is not possible to search a region of a window hidden behind another window.
But to have the window (visible) on a second monitor, it sho ... |
Topic: little help with "if (expression)" thx. |
Sukarn
Replies: 4
Views: 206
|
Forum: Ask for Help Posted: Mon Jul 30, 2007 9:38 am Subject: little help with "if (expression)" thx. |
| %A_Space%... something I forgot about. |
Topic: How to get url address from web |
Sukarn
Replies: 4
Views: 345
|
Forum: Ask for Help Posted: Mon Jul 30, 2007 4:33 am Subject: How to get url address from web |
MouseGetPos, xxx,yyy ;get active mouse position
Click right xxx , yyy
If you're only going to be clicking right after getting the mouse coords and you won't be using those coords again in the ... |
Topic: little help with "if (expression)" thx. |
Sukarn
Replies: 4
Views: 206
|
Forum: Ask for Help Posted: Mon Jul 30, 2007 4:23 am Subject: Re: little help with "if (expression)" thx. |
why its doesnt work?
If (Out_Line !=" " or "%A_LoopField% %first%")
try this
if Out_Line != " " or Out_Line != %A_LoopField% or OutLine != %first%
... |
Topic: Need help converting a c++ code |
Sukarn
Replies: 9
Views: 329
|
Forum: Ask for Help Posted: Thu Jul 26, 2007 5:06 pm Subject: Need help converting a c++ code |
I hope thes will be my last question. I've made up this rough program -
inputbox, text, Text, Please enter the text to be encoded/decoded
inputbox, key, Key, Please enter the key
if key<0
ke ... |
Topic: Need help converting a c++ code |
Sukarn
Replies: 9
Views: 329
|
Forum: Ask for Help Posted: Thu Jul 26, 2007 4:13 pm Subject: Need help converting a c++ code |
ok. you can directly translate I think into Chr() and Asc() - that lets you see what the ascii code of the char is, and += or -= 1 to it to alter the char.
you probably need also a Loop, parse, wit ... |
Topic: Need help converting a c++ code |
Sukarn
Replies: 9
Views: 329
|
Forum: Ask for Help Posted: Thu Jul 26, 2007 8:56 am Subject: Need help converting a c++ code |
what are you trying to do with the regex replace?
text := regexreplace(text,"a","a" . key) ;. means concatenate.
and if you are not doing actual regex, you ... |
Topic: Need help converting a c++ code |
Sukarn
Replies: 9
Views: 329
|
Forum: Ask for Help Posted: Wed Jul 25, 2007 3:42 pm Subject: Need help converting a c++ code |
you don't need %% in expressions
inputbox, text, Text, Please enter the text to be encoded/decoded
inputbox, key, Key, Please enter the key
if key<0
key := key + 13 * key * ( - ... |
Topic: Need help converting a c++ code |
Sukarn
Replies: 9
Views: 329
|
Forum: Ask for Help Posted: Wed Jul 25, 2007 9:36 am Subject: Need help converting a c++ code |
I am trying to convert a c++ program I once wrote for small encryption/decryption for relaying messages. I am now trying to do the same in AHK but am completely lost.
The c++ code is
#include < ... |
Topic: World of Warcraft Scripts |
Sukarn
Replies: 62
Views: 23588
|
Forum: Scripts & Functions Posted: Sat Jul 14, 2007 4:16 pm Subject: World of Warcraft Scripts |
| i understand how it works but how would I go about to find out my own x,y locations? for my buttons? Use WindowSpy (autohotkey). |
Topic: how do I find and disable an ahk file that has #NoTrayIcon |
Sukarn
Replies: 16
Views: 521
|
Forum: Ask for Help Posted: Sat Jul 07, 2007 4:45 pm Subject: how do I find and disable an ahk file that has #NoTrayIcon |
ok um i found on my desktop an autohotkey program i think it is complied cause it says Mcwall.exe does that mean it is compiled?
If its a .exe then its compiled. |
Topic: Making a script for MuOnline game.... |
Sukarn
Replies: 14
Views: 701
|
Forum: Ask for Help Posted: Wed Jul 04, 2007 8:01 pm Subject: Making a script for MuOnline game.... |
;Auto Add Health
+Z::
Sendinput, {Q Down}
Sendinput, {Q Up}
Loop 30
Make that
;Auto Add Health
+Z::
Loop 30
{
SendInput, Q
}
But wou ... |
Topic: PixelGetColor for other windows |
Sukarn
Replies: 8
Views: 308
|
Forum: Ask for Help Posted: Mon Jul 02, 2007 8:47 am Subject: PixelGetColor for other windows |
You know, the reverse would be alot easier. Make the widnow you're interested in AlwaysOnTop, then hide everything but the one pixel you want to check using WinSet Region.
I like that idea. |
Topic: Variable going blank or disappearing. |
Sukarn
Replies: 2
Views: 192
|
Forum: Ask for Help Posted: Sun Jul 01, 2007 5:42 pm Subject: Variable going blank or disappearing. |
This is wrong:
i := %i% + 1
use
i := i + 1
or
i++
Thanks, though now I feel stupid. |
Topic: duplicate line |
Sukarn
Replies: 22
Views: 902
|
Forum: Ask for Help Posted: Sun Jul 01, 2007 5:38 pm Subject: duplicate line |
also, can you tell me please how to make it not to work in specific windows
use IfWinActive? |
| |