Search found 2043 matches
- 10 Mar 2016, 11:02
- Forum: Offtopic
- Topic: My windows XP Professional has infected with virus
- Replies: 8
- Views: 3753
Re: My windows XP Professional has infected with virus
As long as you do not connect to the internet Windows XP is fine. More than likely it's being run on older hardware. @OP if you are going to reinstall the OS format the drive and then install XP from a bootable CD. You can use http://www.hirensbootcd.org/download/ to boot to a mini XP OS and use one...
- 09 Mar 2016, 14:24
- Forum: Ask For Help
- Topic: Help with ControlSetText
- Replies: 5
- Views: 1225
Re: Help with ControlSetText
Maybe do this 1st:
https://autohotkey.com/docs/commands/ControlFocus.htm
Code: Select all
ControlFocus [, Control, WinTitle, WinText, ExcludeTitle, ExcludeText]
- 07 Mar 2016, 17:51
- Forum: Gaming
- Topic: is it possible to pixelsearch area 200x200 without freezing AHK?
- Replies: 4
- Views: 1412
Re: is it possible to pixelsearch area 200x200 without freezing AHK?
From Docs: PixelSearch, OutputVarX, OutputVarY, X1, Y1, X2, Y2, ColorID [, Variation, Fast|RGB] If you want to check with no variation use: pixelsearch, x1, y1, 1300, 100, 1500, 300, color, , fast RGB Also you should check the Errorlevel: if (ErrorLevel = 0) { sleep, 100 mousemove, x1, y1 } if Error...
- 07 Mar 2016, 03:58
- Forum: Gaming
- Topic: is it possible to pixelsearch area 200x200 without freezing AHK?
- Replies: 4
- Views: 1412
Re: is it possible to pixelsearch area 200x200 without freezing AHK?
There should be no problem with that area size. Post your code so you can get a proper answer.
- 03 Mar 2016, 18:35
- Forum: Ask For Help
- Topic: Noob help with array
- Replies: 3
- Views: 812
Re: Noob help with array
Code: Select all
PixArray := [[268,22,"715948"],[269,22,"71965b"],[270,22,"71965b"]] ; Create arrays [ x , y , color]
Loop % PixArray.MaxIndex()
{
PixelGetColor PixColor, PixArray[A_Index,1], PixArray[A_Index,2], RGB
if (PixColor <> PixArray[A_Index,3])
Check := 1
Sleep 100
}
MsgBox % Check
- 01 Mar 2016, 00:24
- Forum: Ask For Help
- Topic: Script Esc combined with Reload
- Replies: 1
- Views: 618
Re: Script Esc combined with Reload
Code: Select all
~Esc::Reload
- 29 Feb 2016, 17:29
- Forum: Ask For Help
- Topic: goto becomes loop
- Replies: 6
- Views: 1371
Re: goto becomes loop
To get 3 letters in a row you would need to change to: random, k, 1, 3 1 liner send for fun example: F3:: loop 3 { random, m, 1, 3 random, k, 1, 3 Send, % "{" (m=1?"a":m=2?"b":"c") A_Space k "}{Enter}" } return some more fun: F3:: loop 3 { random, m, 97, 99 random, k, 1, 3 Send, % "{" chr(m) A_Space...
- 12 Feb 2016, 04:05
- Forum: Forum Issues
- Topic: Login indication
- Replies: 6
- Views: 2338
Re: Login indication
If it showed your user name you would also know that you are logged in.
- 08 Feb 2016, 13:31
- Forum: Ask For Help
- Topic: Using Variables to retreive values from an array
- Replies: 2
- Views: 705
Re: Using Variables to retreive values from an array
You are passing the string "VAR1" instead of the contents of the variable.
Try:
Try:
Code: Select all
Send % Array[VAR1]
- 19 Dec 2015, 16:20
- Forum: Ask For Help
- Topic: Cannot escape char in autohotkeys Topic is solved
- Replies: 1
- Views: 652
Re: Cannot escape char in autohotkeys Topic is solved
Code: Select all
::funcarg::function(){{}console.log(arguments){}}
- 10 Dec 2015, 03:14
- Forum: Ask For Help
- Topic: testing is alpha...
- Replies: 5
- Views: 1188
Re: testing is alpha...
sry its late i forgot to add this:
Note: The operators "between", "is", "in", and "contains" are not supported in expressions.
HTH
Note: The operators "between", "is", "in", and "contains" are not supported in expressions.
HTH
- 10 Dec 2015, 03:12
- Forum: Ask For Help
- Topic: testing is alpha...
- Replies: 5
- Views: 1188
Re: testing is alpha...
q:: { mystring1 = A mystring2 = ? mystring3 = 1 if mystring1 is alpha msgbox %mystring1% is an alphabet if mystring2 is alpha msgbox %mystring2% is an alphabet if mystring3 is alpha msgbox %mystring3% is an alphabet } return Try it like this.
- 27 Nov 2015, 14:44
- Forum: Ask For Help
- Topic: Help for slowing script
- Replies: 2
- Views: 700
Re: Help for slowing script
Indented for readability, read comments at bottom of script. ;NoRecoil if GetKeyState(key_shoot) { ;AK-47 if ak { loop { DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0) sleep 50 if !GetKeyState(key_shoot) { DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0) break } Dll...
- 27 Nov 2015, 14:26
- Forum: Gaming
- Topic: Need help i expected a wreid error
- Replies: 4
- Views: 1280
Re: Need help i expected a wreid error
Your last line should be:
Code: Select all
return
- 15 Nov 2015, 20:49
- Forum: About This Community
- Topic: New Homepage suggestions
- Replies: 114
- Views: 68094
Re: « What's on your mind? »
NiceBlackholyman wrote:Here is an Homepage example from me
https://357faf41e42c15d0b2d616a06c38feb ... index.html
Just used the images I had that are okay to use...
- 15 Nov 2015, 15:45
- Forum: Ask For Help
- Topic: Baffled - basic hotkey and auto-replace.
- Replies: 6
- Views: 1432
Re: Baffled - basic hotkey and auto-replace.
I would try running your original script as admin.
- 15 Nov 2015, 03:51
- Forum: Offtopic
- Topic: « What's on your mind? »
- Replies: 4491
- Views: 1069813
Re: « What's on your mind? »

- 15 Nov 2015, 03:41
- Forum: Ask For Help
- Topic: Baffled - basic hotkey and auto-replace.
- Replies: 6
- Views: 1432
Re: Baffled - basic hotkey and auto-replace.
Code: Select all
~+~^p::Send {ASC 718}
~+~^l::Send {ASC 697}
~+~^o::Send {ASC 449}
~+~^k::Send {ASC 448}
~+~^m::Send {ASC 8212}
~+~^i::Send {ASC 8804}
~+~^j::Send {ASC 8805}
- 15 Nov 2015, 03:25
- Forum: Gaming
- Topic: Diablo II - Multi instance
- Replies: 3
- Views: 1643
Re: Diablo II - Multi instance
Check the Docs for the Run command and take a look at the PID parameter.
This should get you started on how to know which instance is which.
HTH
This should get you started on how to know which instance is which.
HTH
- 15 Nov 2015, 03:18
- Forum: Gaming
- Topic: auto scope when aiming
- Replies: 2
- Views: 1598
Re: auto scope when aiming
Maybe this will give you an idea:
Code: Select all
~RButton::
Send, {MButton}
keywait, RButton
Send, {MButton}
return