Ask for Help (v2) • Re: bypass UAC in 2.0 - possible?
I don't think directly, but you can run a script as admin or with UI Access.Statistics: Posted by mikeyww — 17 minutes ago
View ArticleAsk for Help (v2) • Re: Need some help with multilevel submenus (for AHK v2)
An example is below.CODE: #Requires AutoHotkey v2.0; Sub-submenussubsub1 := Menu()subsub1.Add(5, subsub1_Click)subsub1.Add(6, subsub1_Click)subsub2 := Menu()subsub2.Add(7, subsub2_Click)subsub2.Add(8,...
View ArticleAsk for Help (v2) • Re: Setting an ahk menu active
MyMenu.Show displays the menu on top of whatever window is active when I press #x, notepad++ for instanceOnce displayed, the keyboard is not directed towards the menu and i can't select an item or...
View ArticleAsk for Help (v2) • Re: Macro Recorder???
Actually, I'm with you. Sometimes there are those one-off tasks that just aren't worth to write code for. TinyTask is an amazing macro tool for this. It records and plays back smooth and exact mouse...
View ArticleAsk for Help (v1) • Web automation enter data to certain input boxes
Hi all, I want to enter with a AHK scrpit data to chrome without using the mouse position (3) because the mouse position is not working very smooth from my point of view. My small testcase is...
View ArticleScripts and Functions (v2) • Re: Script template for an application with a...
Hi,This is a script template for an application with a main GUI, settings GUI, TrayMenu, and MenuBar. I'm just an intermediate AutoHotkey user. Please let me know if there is something wrong, or if...
View ArticleAsk for Help (v1) • Re: Elegant solution to send multi-line text line by line?
Thanks for taking the time to share the code. exactly what I was looking for.Statistics: Posted by TheJoe570 — Today, 09:41
View ArticleAsk for Help (v1) • Re: Web automation enter data to certain input boxes
No, those HTML elements aren’t Windows controls. There are various ways to automate websites using AHK, such as implementing the Chrome.ahk or Rufaydium libraries. Using Windows control-based...
View ArticleAsk for Help (v1) • Word inline spacing
Hi,i have this simple script:CODE: oWord := ComObjActive("Word.Application")oWord.Selection.ParagraphFormat.LineSpacing := 20but i dont know how to use a decimal values :/i want to set inline spacing...
View ArticleGaming Help (v1) • I made a loop script but it doesn't work.
I made a script for looping a sequence of inputs but it doesn't work.I want to run these inputs whenever I press 8 on my keyboard. When I press 8, it should process the inputs. And after 12 seconds,...
View ArticleAsk for Help (v1) • KeyWait vs. "key"+"key Up" hotkeys
Hello,which is the better method in this case,KeyWaitCODE: ~F1:: ToolTip, AltTab KeyWait, F1 ToolTip If (A_PriorKey = "F1") Send !{Tab}returnF1 & F2:: ToolTip, Notepad KeyWait, F2 ToolTip Run...
View ArticleGaming • Re: Script for farming credits [FH5]
CODE: #Requires AutoHotkey v2.0OnExit resetF3:: { Static on := False, sendEnter := SendEvent.Bind('`n') SetKeyDelay 25, 25 If on ^= True { SendEvent '{Space down}' SetTimer(sendEnter, 33000),...
View ArticleAsk for Help (v1) • Re: ❓ Insert timestamp and add 1 (regex increment by one)
Perfect.. Thanks a lot.Statistics: Posted by wise_mike — Today, 08:57
View ArticleAsk for Help (v1) • Re: KeyWait vs. "key"+"key Up" hotkeys
You can answer these questions by running your scripts. If they both work, take your pick. The AHK program window shows if hook is being used.Some people believe that KeyWait and the "UP" modifier...
View ArticleAsk for Help (v1) • Re: Word inline spacing
i also tried dot, same problem, but i dont understand VBA so, i am glad its works Thank you, again.Statistics: Posted by zuzu_kuc — Today, 09:47
View ArticleScripts and Functions (v2) • Re: A simple date-entry tool with monthCal that...
@emp00 Very nice! Thanks for the addition. I tried them and they work as expected. Maybe we'll get people from other cultures/countries/religions sharing their holiday definitions too. For what it's...
View ArticleGaming Help (v1) • Soundplay increase volume and then restore
I have the following code below and it works but the soundplay volume is so low. How can I make the volume higher? I tried the commands below but they do nothing. I'd appreciate your help.CODE:...
View ArticleGaming Help (v1) • Re: Soundplay increase volume and then restore
CODE: #Requires AutoHotkey v1.1.35o::SoundGet originalVolumeSoundSet 100SoundPlay *-1Sleep 400SoundSet originalVolumeReturnStatistics: Posted by mikeyww — Today, 10:46
View ArticleAsk for Help (v1) • Re: Two non-functional key combination
Hi,Can someone please convert the following v1 code to v2 code for me? Thank you in advance.CODE: s::ss & e::e & s::Send #1$e::Send eKeyWait Up, DT.2If !ErrorLevel Send xReturnStatistics:...
View ArticleAbout This Community • Re: Issues with registering, Post your username here...
Hi, my old email become compromised.Username: MiguelGFOld email: miguel8_8@live.com (delete this email)New email: magf1.6.59@gmail.com (change it for this email)Can you change my old email for the...
View Article