Search found 5 matches

by Boxof
20 May 2020, 06:10
Forum: Ask for Help (v1)
Topic: How do I click x, y from an array
Replies: 3
Views: 718

How do I click x, y from an array

Hello, I'm making a script that autoclicks chosen xy but I have a problem with accessing array variables... CoordMode, Mouse, Screen memory := [100, 200, 300, 400] i := 1 Space:: memoryCount := memory.maxIndex() loop, %memoryCount% { Click, memory[i], memory[i + 1] i += 2 sleep 100 } memory := [] re...
by Boxof
16 Mar 2019, 08:26
Forum: Ask for Help (v1)
Topic: Swaping keys - 71 hotkeys have been received
Replies: 1
Views: 592

Swaping keys - 71 hotkeys have been received

Hello. I'm creating a swap-key script but when I use one of the keys, script sends me an error message "71 hotkeys have been received in last .... ms". I tried so hard to fix it but it just doesnt work. Code: i := 1 keyboard := ["q", "w", "e", "r", "t", "y", "u", "i", "o", "p", "a", "s", "d", "f", "...
by Boxof
18 Aug 2018, 10:23
Forum: Ask for Help (v1)
Topic: How to click the mouse without moving the pointer
Replies: 6
Views: 8875

Re: How to click the mouse without moving the pointer

It isn't possible but you can do something like this:

Code: Select all

SetMouseDelay, 0
MouseGetPos, x, y
Click, 100, 100
MouseMove, x, y, 0
Change 100 to position you want click.
Be creative! :)
by Boxof
16 Aug 2018, 07:57
Forum: Scripts and Functions (v1)
Topic: AHK Autoclicker Project (ClickEXPERT)
Replies: 0
Views: 961

AHK Autoclicker Project (ClickEXPERT)

Hello everyone! I've created third version of my autoclicker written in AHK. Now, I'm working on 4th version. Unfortunately I've lost source code of this version but you can view it at the bottom of exe file. You can download .exe file here - https://drive.google.com/file/d/1aOPHNHL0uRjpIn7yhKJyRw0X...
by Boxof
16 Aug 2018, 07:01
Forum: Ask for Help (v1)
Topic: GUI question
Replies: 3
Views: 813

Re: GUI question

Here is missing "v" before CallAddress.
Should be vCallAddress

Go to advanced search