Quantcast
Channel: AutoHotkey Community
Browsing all 579 articles
Browse latest View live

Gaming • Re: RButton and loop help?

CODE: #Requires AutoHotkey v2.0ct := () => Send('^t')~RButton::eF3:: { Static on := False If on := !on SetTimer(ct, 10720), ct() Else SetTimer(ct, 0) SoundBeep 1000 + 500 * on}Statistics: Posted by...

View Article


Image may be NSFW.
Clik here to view.

Ask for Help (v2) • About menu()

CODE: #SingleInstanceMyMenu := Menu()MyMenu.Add "Item 1", MenuHandlerMyMenu.Add "Item 2", MenuHandlerMenuHandler(Item, *) { ToolTip "You selected " Item}#HotIf;~ #HotIf WinActive("ahk_class...

View Article


Ask for Help (v2) • Re: New to Regex - pls help

Welcome to this AutoHotkey forum!CODE: #Requires AutoHotkey v2.0str := '(lots oh html<span>🍑Eat steak🍑 </span><span>41</span>more html<span>🍑Hold horse🍑...

View Article

Image may be NSFW.
Clik here to view.

Ajuda e Suporte Geral • Alguem pode me ajudar com um script por favor?

Feliz ano novo, gente! Pessoal, eu to tentando criar um código para um jogo, só que não to conseguindo de forma alguma, alguem pode me ajudar? preciso da seguinte função, preciso que o script faça com...

View Article

Ask for Help (v2) • Re: About menu()

It worked here.Generally speaking, after a menu appears, its program is "halted" until the menu is resolved.Statistics: Posted by mikeyww — 57 minutes ago

View Article


Ask for Help (v1) • Scrip crashes when using Modifier Keys

Happy new year everyone! atm i try to figure out why the script below crashes (no more input possible, cant even close it with F1 anymore). This happens when i press the ShiftKey and Right Mouse...

View Article

Ask for Help (v1) • Re: Scrip crashes when using Modifier Keys

To at least allow your hotkey to work for exiting the script, change it to *F1::ExitApp so that it works even if modifier keys are in the down state. You should probably also have that hotkey release...

View Article

Scripts and Functions (v2) • Re: Focus application window if open, else open...

If you’re going to post a script by someone else, you should credit them and/or provide a link to where it was first posted.Thank youThe script was given to me by...

View Article


Ask for Help (v1) • KeyOpt(...): difference between KeyOpt( ...,...

Hallo.About keyOpt(Keys, KeyOptions) I need to know the difference betweenInputHook.KeyOpt(Key, "N")andInputHook.NotifyNonTextThe only difference is theat the first option allows the set for any...

View Article


Image may be NSFW.
Clik here to view.

Bug Reports • Invalid type in DllCall but not throw

It should throw through the document but it won't:CODE: myVar:='123ABC'DllCall("CharLower", "UStr",myVar) ; it will not throw but output "123abc" instead.OutputDebug(myVar)Statistics: Posted by V2User...

View Article

Ask for Help (v1) • Re: KeyOpt(...): difference between KeyOpt( ...,...

The only difference is theat the first option allows the set for any single key, and the second option set for all keys?Read here: https://www.autohotkey.com/docs/v1/lib/InputHook.htm#NotifyNonTextIf...

View Article

Off-topic Discussion • Basic Dartmouth / vDOS / new DOS computer / Cassette tape

... ca 60 years ago ...------------------------- Cassette Tape 1963-----------------------https://birdinflight.com/en/world/kak-lu-ottens-izobrel-audiokassetu.html “We expected it to be a success, but...

View Article

Ask for Help (v1) • Sleep, % Random Syntax error

I am having difficulty with some syntax regarding the sleep and random function. I am running V1.1.36.02From what I've seen from documentation/other scripts this should be right:CODE: Sleep, %...

View Article


Image may be NSFW.
Clik here to view.

Ask for Help (v1) • Re: How to wait long times in loops but still break out...

Thanks as always mikeywww. Yes I had an epiphany about the time math right after I posted my message so that in fact, I had it all figured it out around the time you replied. Prior to that I couldn't...

View Article

Ask for Help (v2) • Re: Func() of v1 has been deleted in v2

@ntepathank you !!Statistics: Posted by cgx5871 — Today, 09:51

View Article


Ask for Help (v1) • Issues with using the Windows Key

Hello, i tried to implement a hotkey for the Windows Magnifier that enlarges my view when being hold down. If i now run the script below it shows some weird behavior, first it repeats itself (this is...

View Article

Ask for Help (v1) • Re: Issues with using the Windows Key

In AHK v1, you should end your (multi-line) hotkey subroutines with a return. Otherwise, code execution will fall through into following code.(In v2, hotkeys are functions - and braces ( { ...} )...

View Article


C# • Re: Keysharp - the resurrection of IronAHK

Release 0.0.0.5 has been posted on the downloads page here:https://bitbucket.org/mfeemster/keysharp/downloads/The usual list of caveats and differences from AHK v2 are...

View Article

Gaming Help (v1) • I need help with my triggerbot script

Im a new user of ahk, and after reading some topics, i made a triggerbot script, but its not working, i was trying to figure out what i need to fix for 3-4 hours, but it doesnt seem to help.Ill be...

View Article

Ask for Help (v1) • Re: Sleep, % Random Syntax error

Hallo,try:CODE: MsgBox, % (2000, 5000) ; 2000MsgBox, % Random (2000, 5000) ; 2000The first 2000 shows that the expression (2000, 5000) has the numerical value 2000.The second 2000 is the result of the...

View Article
Browsing all 579 articles
Browse latest View live