Search found 72 matches

by SonGokuBg
17 Apr 2019, 09:17
Forum: Ask for Help (v1)
Topic: Hold
Replies: 12
Views: 1545

Re: Hold

Rohwedder wrote:
17 Apr 2019, 08:39
Hallo,
if you hold LButton, RButton will be held additionally.

Code: Select all

~LButton::RButton
not work
by SonGokuBg
17 Apr 2019, 08:03
Forum: Ask for Help (v1)
Topic: Hold
Replies: 12
Views: 1545

Hold

Hello, #NoEnv #SingleInstance, force SendMode, Input #UseHook CoordMode, Mouse, Screen #If !mouseInRegion(719, 942, 1317, 1075) LButton::RButton LButton:: if (A_TickCount - RButton_Tick <= 350) AND (RButton_Tick >= 1) Send {g} else { Send {RButton down} } SetTimer, ClickBackUp, -1 RButton_Tick := A_...
by SonGokuBg
17 Apr 2019, 03:47
Forum: Ask for Help (v1)
Topic: Combine Topic is solved
Replies: 2
Views: 643

Re: Combine Topic is solved

After 1 week I did it! #NoEnv #SingleInstance, force SendMode, Input #UseHook CoordMode, Mouse, Screen #If !mouseInRegion(719, 942, 1317, 1075) LButton::RButton LButton:: if (A_TickCount - RButton_Tick <= 350) AND (RButton_Tick >= 1) Send {g} else { Send {RButton down} } SetTimer, ClickBackUp, -1 RB...
by SonGokuBg
13 Apr 2019, 02:59
Forum: Ask for Help (v1)
Topic: Combine Topic is solved
Replies: 2
Views: 643

Re: Combine Topic is solved

up
by SonGokuBg
12 Apr 2019, 07:06
Forum: Ask for Help (v1)
Topic: Combine Topic is solved
Replies: 2
Views: 643

Combine Topic is solved

Hello, how can I use both scripts without cancel each others? CoordMode, Mouse, Screen m::Suspend #If !mouseInRegion(719, 942, 1317, 1075) LButton::RButton mouseInRegion(x1, y1, x2, y2) { MouseGetPos x, y return (x >= x1) && (x <= x2) && (y >= y1) && (y <= y2) } LButton act like RButton but ignore i...
by SonGokuBg
09 Apr 2019, 13:18
Forum: Ask for Help (v1)
Topic: Coordinates
Replies: 11
Views: 2762

Re: Coordinates

remap LButton to RButton if u want it to do the holding thing #If !mouseInRegion(719, 942, 995, 1008) LButton::RButton the rest i dont understand. its not clear what the end result should be after melding both scripts Thank You :bravo: ! Then why LButton::Send {RButton} inserted of just LButton::RB...
by SonGokuBg
09 Apr 2019, 06:59
Forum: Ask for Help (v1)
Topic: Coordinates
Replies: 11
Views: 2762

Re: Coordinates

I want to understand right how to do these " if mouse cursor is on parameter. x, x, x ,x"
by SonGokuBg
09 Apr 2019, 01:46
Forum: Ask for Help (v1)
Topic: Coordinates
Replies: 11
Views: 2762

Re: Coordinates

some refactoring: CoordMode, Mouse, Screen m::Suspend #If !mouseInRegion(719, 942, 995, 1008) LButton::Send {RButton} mouseInRegion(x1, y1, x2, y2) { MouseGetPos x, y return (x >= x1) && (x <= x2) && (y >= y1) && (y <= y2) } It works!!!!! Thank You. But I don't understand it. #If !mouseInRegion(719...
by SonGokuBg
08 Apr 2019, 15:33
Forum: Ask for Help (v1)
Topic: Coordinates
Replies: 11
Views: 2762

Re: Coordinates

It doesn't activate below Y942, but activate everywhere after X719
by SonGokuBg
08 Apr 2019, 12:04
Forum: Ask for Help (v1)
Topic: Coordinates
Replies: 11
Views: 2762

Re: Coordinates

If you know Leagues of Legends I want it where QWER is. (items will be good too)
by SonGokuBg
08 Apr 2019, 11:59
Forum: Ask for Help (v1)
Topic: Coordinates
Replies: 11
Views: 2762

Re: Coordinates

Already tried that if (posX >= 719) && (posX <= 995) && (posY >= 942) && (posY <= 1008)
not work where I want
by SonGokuBg
08 Apr 2019, 10:37
Forum: Ask for Help (v1)
Topic: Coordinates
Replies: 11
Views: 2762

Re: Coordinates

LButton act like RButton except when mouse cursor is on the written coordinates
by SonGokuBg
08 Apr 2019, 10:24
Forum: Ask for Help (v1)
Topic: Coordinates
Replies: 11
Views: 2762

Coordinates

How to make coordinates like that? https://imgur.com/a/O4btNMX NOT like that https://imgur.com/a/QcQBaQu. Here is my script LButton:: CoordMode, Mouse, Screen MouseGetPos, posX, posY if ((posX >= 719) && (posY >= 942)) || ((posX >= 995) && (posY >= 1008)) { SendInput {LButton down} Sleep, 100 SendIn...
by SonGokuBg
06 Apr 2019, 03:24
Forum: Gaming Help (v1)
Topic: mouse gesture
Replies: 0
Views: 809

mouse gesture

Hello, I found this script http hp.vector.co.jp /authors/VA018351/en/mglahk.html Broken Link for safety with which i draw on the screen with the mouse. But I have disability so I can only press Left button, so I made it to draw with the Left button. I use too this script #NoEnv #SingleInstance, forc...
by SonGokuBg
06 Apr 2019, 03:21
Forum: Ask for Help (v1)
Topic: Mouse Gesture
Replies: 2
Views: 511

Re: Mouse Gesture

no one?
by SonGokuBg
05 Apr 2019, 11:00
Forum: Ask for Help (v1)
Topic: Mouse Gesture
Replies: 2
Views: 511

Re: Mouse Gesture

If both scripts are ON, If I am in game the FIRST script NOT work, If I am NOT in game the SECOND script NOT work. lol
by SonGokuBg
05 Apr 2019, 04:59
Forum: Ask for Help (v1)
Topic: Mouse Gesture
Replies: 2
Views: 511

Mouse Gesture

Hello, I found this script http hp.vector.co.jp /authors/VA018351/en/mglahk.html Broken Link for safety with which i draw on the screen with the mouse. But I have disability so I can only press Left button, so I made it to draw with the Left button. I use too this script #NoEnv #SingleInstance, forc...
by SonGokuBg
03 Apr 2019, 15:03
Forum: Ask for Help (v1)
Topic: Mouse movement = click Topic is solved
Replies: 16
Views: 3049

Re: Mouse movement = click Topic is solved

I learn with the help you give me. I tried many things by myself (not just wait), but nothing worked. that you give me press and release like not hold, but press fast. I don't know how to describe it better.
by SonGokuBg
03 Apr 2019, 07:24
Forum: Ask for Help (v1)
Topic: Mouse movement = click Topic is solved
Replies: 16
Views: 3049

Re: Mouse movement = click Topic is solved

What is not clear?
by SonGokuBg
03 Apr 2019, 03:33
Forum: Ask for Help (v1)
Topic: Mouse movement = click Topic is solved
Replies: 16
Views: 3049

Re: Mouse movement = click Topic is solved

Maybe it's impossible to do what I want :(

Go to advanced search