THis is so SICK! Absolutely Zero Support

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
Guest

THis is so SICK! Absolutely Zero Support

24 May 2017, 09:23

Hello.

This is so FKN sick, there is absolutely no help or insight with this AutoHotKeys Program.

I have fully read the tutorial. (ABSOLUTELY NO HELP)
I watched serveral YT videos from ranging from 7:00 - 1:00:00 in basic breakdowns of the program (They don't focus on what im trying to do)
Tried Self Scripting (Nothing Happens) - EXAMPLE of my script

MY SCRIPT:
^spacebar:: - /// CTRL + Spacebar
LONG Click - /// Hotstring to equal LONG CLICK when command is entered

There are zero tutorials or explainations of anything of what i intent to do with the program outside of elaborating that it CAN be done.....but doesn't explain how..... what i need to do for a script, is to long click the LEFT mouse button for approximately 1-2 second when the AUTOHOTKEY CMD of [CTRL + Spacebar} is triggered. Any help?
kon
Posts: 1756
Joined: 29 Sep 2013, 17:11

Re: THis is so SICK! Absolutely Zero Support

24 May 2017, 10:17

Putting aside the childish ranting,
what i need to do for a script, is to long click the LEFT mouse button for approximately 1-2 second when the AUTOHOTKEY CMD of [CTRL + Spacebar} is triggered.

Code: Select all

^Space::  ; This is a comment. What you were doing before is not valid code.
Send, {LButton Down}  ; Press the left mouse button down
Sleep, 2000  ; Wait 2 seconds
Send, {LButton Up}  ; Release the left mouse button
return
Sorry you were unable to understand the docs. Many other people seem to be able to read them without difficulty.

Edit: Also https://autohotkey.com/docs/commands/Click.htm
When reading the docs, look at the examples at the bottom of each page.

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: CrowexBR and 264 guests