| Author |
Message |
Topic: Class Under Mouse Question? |
.AHK
Replies: 8
Views: 358
|
Forum: Ask for Help Posted: Thu Jan 18, 2007 11:35 pm Subject: Class Under Mouse Question? |
Dragon, you might want to look in the help file under "ControlClick". There are several methods to controlclick, and one that might work for you.
.AHK |
Topic: Xbox 360 Who As One?, Good Games Are?, Gamertags Are? |
.AHK
Replies: 2
Views: 298
|
Forum: General Chat Posted: Thu Jan 18, 2007 11:30 pm Subject: Xbox 360 Who As One?, Good Games Are?, Gamertags Are? |
Hi i3egohan, I have an xbox 360 and xbox live with it. If you have PGR3 or Gears of War, ill add you and we can play one of them.
If you don't have PGR3 and you like racing games you should get it. I ... |
Topic: Class Under Mouse Question? |
.AHK
Replies: 8
Views: 358
|
Forum: Ask for Help Posted: Wed Jan 17, 2007 4:10 pm Subject: Class Under Mouse Question? |
| F1::ControlClick, ClassNN |
Topic: Class Under Mouse Question? |
.AHK
Replies: 8
Views: 358
|
Forum: Ask for Help Posted: Wed Jan 17, 2007 3:49 pm Subject: Class Under Mouse Question? |
ControlClick  |
Topic: no clue how to use program... or what it is. |
.AHK
Replies: 5
Views: 404
|
Forum: Ask for Help Posted: Wed Dec 27, 2006 10:42 am Subject: no clue how to use program... or what it is. |
Someone on the FFR forums told me to download AHK so I did.
Well maybe you should get back in contact with this person. He did tell you to download AHK so one would think he already has the knowledge ... |
Topic: Newby question - toggle, closing applications |
.AHK
Replies: 4
Views: 289
|
Forum: Ask for Help Posted: Tue Dec 12, 2006 1:48 am Subject: Newby question - toggle, closing applications |
#n::
Process Exist, notepad.exe
If ErrorLevel <> 0
Process Close, notepad.exe
Else
Run notepad.exe
Return
Should work. |
Topic: Random Sleep Time...Help |
.AHK
Replies: 3
Views: 349
|
Forum: Ask for Help Posted: Tue Dec 12, 2006 1:40 am Subject: Random Sleep Time...Help |
^m::
Loop 28 {
PixelSearch, outx, outy, 233, 267, 370, 395, 0x0E1523,, Fast
MouseClick, Left, %outx%, %outy%, 1
Random zZzZZz, 1000, 10000
Sleep %zZzZZz%
}
return
Thats s ... |
Topic: Beat the KeyLoggers Update January 15, 2007 |
.AHK
Replies: 18
Views: 1965
|
Forum: Scripts & Functions Posted: Sat Dec 09, 2006 11:53 am Subject: Beat the KeyLoggers Update January 15, 2007 |
The best way to beat the keyloggers is:
1) To avoid putting them on your system (avoid risky behavior...);
2) To have a good software to detect and remove them...
Very true. Keep your system clea ... |
Topic: Compare strings & return likelyhood of match |
.AHK
Replies: 7
Views: 414
|
Forum: Ask for Help Posted: Sat Dec 09, 2006 6:33 am Subject: Compare strings & return likelyhood of match |
| Yeah it sounds possible. You would have to make some kind of rating system though. Say if a line has 6 words and only two match the phrase, the line gets rated at 2/6. This is just an idea though, and ... |
Topic: Aimbot help |
.AHK
Replies: 6
Views: 869
|
Forum: Ask for Help Posted: Sat Dec 09, 2006 5:45 am Subject: Aimbot help |
| Pictures of the heads... Well now, the only problem is that in a 3d game of course the distance from an object can change, and the position you are looking at an object, etc... So unless you are willi ... |
Topic: Compare strings & return likelyhood of match |
.AHK
Replies: 7
Views: 414
|
Forum: Ask for Help Posted: Sat Dec 09, 2006 5:42 am Subject: Compare strings & return likelyhood of match |
| Well, since you know that they all contain the exact phrase "Social Psychology". Do a loop read line and have it search the line for the phrase. If it finds the phrase it will copy the entir ... |
Topic: Beat the KeyLoggers Update January 15, 2007 |
.AHK
Replies: 18
Views: 1965
|
Forum: Scripts & Functions Posted: Sat Dec 09, 2006 5:37 am Subject: Beat the KeyLoggers Update January 15, 2007 |
| If you are already using a script to enter the passwords/usernames then whats the point of even copying them to the clipboard? I mean the passwords are already in the script so why not just send them. ... |
Topic: What is AHK |
.AHK
Replies: 5
Views: 460
|
Forum: Ask for Help Posted: Wed Nov 29, 2006 8:31 am Subject: What is AHK |
Anyone help me that what is AHK
AutoHotkey is a free, open-source utility for Windows. With it, you can:
Automate almost anything by sending keystrokes and mouse clicks. You can write a mouse ... |
Topic: Simple mouse click loop I can't get to work |
.AHK
Replies: 2
Views: 259
|
Forum: Ask for Help Posted: Tue Nov 28, 2006 2:58 am Subject: Simple mouse click loop I can't get to work |
Amount = 10
IfWinActive Apps Title
Loop %Amount% {
Click 67, 676
Sleep 100
}
Return |
Topic: IE 7 & Script Error |
.AHK
Replies: 2
Views: 1476
|
Forum: Bug Reports Posted: Tue Nov 28, 2006 12:39 am Subject: IE 7 & Script Error |
| Oh sorry, I did not see that other post. Thanks. |
| |