[Juho's AutoHotkey Tutorial #8 Click And Controlclick] Part 1 - Mouse Control Basics

preview_player
Показать описание
Hi! This is the first part of a two-part series covering the topic of controlling your mouse with AutoHotkey. This video will cover:
• Mouse Left Click
• Mouse Right Click
• Double Click
• Left Click and Hold Down
• Mouse Wheel
• Click a Coordinate
• Get Mouse Coordinates

Some other relevant videos to watch:

Other useful scripts:

To take a look at my AutoHotkey tutorial plan:
• select the dwutorial Plan Here'

AutoHotkey Playlists

#AutoHotkey #Automation #Programming #Coding #Course #Tutorial #AHK #Productivity #Efficiency #Office #Shortcut #Shortkey #Hotkey #Macro
Рекомендации по теме
Комментарии
Автор

I love these AHK tutorials! They really help me.

propanescripts
Автор

Wow it took me 30 minutes to actually find this excellent most basic AHK starter guide.
I've gotten some scripts to hold left and right mouse button at the same time (toggle), but none worked, errors all over the place

Anomynous
Автор

I have a monitor that I need to manually adjust the brightness. I hate it! You solved my problem of "double click the icon on the desk top, find and click the desired setting, and then minimize." With a !Numpad0, 1, and 2 I have my three setting! Thanks so very 👏👏👏👏👏

AbdicateDotNet
Автор

Hello good video, what version of Autokey is this?

TURURURU
Автор

This is so helpful! Im trying to streamline a game I play.

tim_percent
Автор

Hey! I have a faulty Razer NAGA PRO which randomly actuates my middle mouse button x2 or even x3 times in a single click.
Heard you have to de-bounce this button in AutoHotkey ? How do you accomplish that?
I need it to register a x1 click, like it should. And i need it to be ok with pressing and holding this middle mouse button (as it is used as a "hypershift" that as you press it- you can press other mouse buttons which now have an alternate function in the Razer drivers. So I need this button to be kept pressed on when I do).
Basically I need to use AutoHotkey to register this mouse like it should, so I wonder how to program AutoHotkey for that button.👏👏

eladbari
Автор

what is the code i would write if my hotkey preformed its action and i wanted to return the mouse back to the position it was when i pressed the hotkey? the return position wont always be the same so i cant just put x, y positions in the script

RunescapeShorts
Автор

@juho Lee Not sure if you gonna see this message, but maybe ou can help me with this. How would you go about mapping Ctrl +Alt + Left Mouse Click/Hold = To Middle Mouse Click/Hold? Any help appreciated

milkyway
Автор

Hi, congratulations for the video, I wanted to ask you a question since you are a master at what you do, do you think it is possible to click a specific position of a window, even if it is minimized? I would like to press a specific key and that key pretends to press the left mouse button to apply a check to a specific program

d_arashi
Автор

hello! question is there a way to reverse that? or is that impossible

clarification: if i move my mouse to the left -100 then it presses numpad4 is what i want it to do

stefgen
Автор

Wow Very Nice Video, Thank you So Much

EmmanStudio
Автор

TYSM I BEEN TRYING TO STOP THE AUTOHOTKEY

ZaneGtag
Автор

while i set the ahk to Send, {LButton}, or click, all i follow, but there no respond on my mouse click ???

diuniasing
Автор

A = hold middle mouse button + move left ( then move cursor back to original position?
How to make this command

mehfoozzansari
Автор

hello can you help me .. i have a auto hotkey made by a friend of a friend but the problem is i want it to click it left .. because its been set up right clicking .. can you help me edit it?

johnrickaves
Автор

Plz tell me
I want to select 5 digit from left side with press mouse scroll

husnainsaleem
Автор

Do you have a script for Mouse CLick Down and move Mouse Left/Right by 6 pixel relative to first position then if no activity within 200milisecond Click, L, up? Its like Mouse Click Drag?

arnelbarbarona
Автор

hi is there any way to make this script start and stop with the same hotkey? heres the script-



Clicker:=false
loop
{
getkeystate, state, F6
if state = D
{
Clicker:=true
}

getkeystate, state, F7
if state = D
{
Clicker:=false
}

}


*~$LButton::

While Clicker==true && getkeystate("LButton", "P") {

click
sleep 21


}
return






instead of starting it with f6 and ending it with f7 i wanna be able to both start and stop it with Ctrl + r

tdmn
Автор

Hello man, how do i set my left mouse button holding down for 5 seconds?

manhwamaxxing
Автор

Mouse5 isn't a valid input for autohotkey even though that is exactly what it is called

Darthmufin