Search found 9 matches

by nadjibSoft
28 Jan 2018, 16:29
Forum: Ask for Help (v1)
Topic: Struggling with infinite loop Topic is solved
Replies: 6
Views: 1466

Re: Struggling with infinite loop Topic is solved

I've made a video about that in my channel in youtube: search in youtube for:

"Autohotkey stop and restart a loop(loop toggle)"
by nadjibSoft
03 Jan 2018, 18:03
Forum: Gaming Help (v1)
Topic: Argh, this is confusing!
Replies: 3
Views: 1049

Re: Argh, this is confusing!

Numpad1::
Send, {Numpad1}
Return

BUT HERE there is an infinite loop, cause; when you send {Numpad1}, this call the hotkey Numpad1 and so on!... to fix this problem write...
numpad1::
hotkey, numpad1, off
send, {numpad1}
hotkey, numpad1, on
return

and the same thing for other numbers
by nadjibSoft
03 Jan 2018, 17:56
Forum: Gaming Help (v1)
Topic: Argh, this is confusing!
Replies: 3
Views: 1049

Re: Argh, this is confusing!

Key board recording ?
by nadjibSoft
03 Jan 2018, 17:50
Forum: Gaming Help (v1)
Topic: Noob needs help Topic is solved
Replies: 9
Views: 1751

Re: Noob needs help Topic is solved

No one can understand your code :shock: ... use indentations
by nadjibSoft
03 Jan 2018, 14:50
Forum: Ask for Help (v1)
Topic: Single variable function returning variable name and value
Replies: 5
Views: 1762

Re: Single variable function returning variable name and value

Put the value and the name in array.... and return the array
clear ?
by nadjibSoft
29 Dec 2017, 15:38
Forum: Ask for Help (v1)
Topic: How could AHK read a web page in google chrome and click words
Replies: 3
Views: 881

Re: How could AHK read a web page in google chrome and click words

you can not parse google chrom... use imageSearch instead
by nadjibSoft
29 Dec 2017, 15:35
Forum: Ask for Help (v1)
Topic: Script will only run the first two run items and nothing else
Replies: 6
Views: 1409

Re: Script will only run the first two run items and nothing else

you may be run other programs from the script "autocorrect.ahk"
by nadjibSoft
29 Dec 2017, 15:26
Forum: Ask for Help (v1)
Topic: if #IfWinActive 'xx' AND the pixel_color of this position is 123 Topic is solved
Replies: 4
Views: 1393

Re: if #IfWinActive 'xx' AND the pixel_color of this position is 123 Topic is solved

if your title is "my pge". and the pixel is:"0x85C78B" ___________________________________ pixelExist(color, X, Y) { ;return true if the pixel exist, and false if alse } IfWinActive , Gumroad - Mozilla Firefox { if(pixelExist("0x85C78B", X, Y)) { MsgBox, OK } } if you want a help inter my profile
by nadjibSoft
29 Dec 2017, 15:11
Forum: Gaming Help (v1)
Topic: help script for pac man game
Replies: 2
Views: 779

Re: help script for pac man game

I think the keyboard recording is a bad choice to make a bot for that game, because these other four animals(i name them animals :) ) have not a specific movement. the best thing to do is capturing the place of the animals and the wait points and move yours to safe places by your key board... i can ...

Go to advanced search