Ask for Help (v2) • Re: v2 error
It’s a bug that has been reported. A temporary fix is shared on that page.Statistics: Posted by boiler — 3 minutes ago
View ArticleScripts and Functions (v2) • AHKv2 Quick Speed Test GUI
Credits: original function viewtopic.php?f=7&t=6413WAZAAAAA viewtopic.php?f=7&t=6413 CODE: #Requires Autohotkey v2#SingleInstance Force;AutoGUI 2.5.8 creator: Alguimist...
View ArticleAsk for Help (v2) • Re: ClipCursor() with vertical axis help
Wouldn't you want x1 and x2 to be the same?Statistics: Posted by mikeyww — less than a minute ago
View ArticleAsk for Help (v2) • Re: ExitApp to abort current script
Welcome to this AutoHotkey forum!Key delay cannot be interrupted, but sleep can.CODE: #Requires AutoHotkey v2.0Esc::SoundBeep(1500), ExitApp()^1::{ Static str :=...
View ArticleAsk for Help (v1) • Re: GetKeyState(...) to detect NumPad direction keys too
Good. So do some other things, too. Post your script if you get stuck.Statistics: Posted by mikeyww — Today, 11:59
View ArticleAsk for Help (v2) • Re: Send RAlt key stroke twice?
Thanks! For the quick response!! Script runs I get a beep but the RAlt does not seem to fire. I take it Elapsed is in milliseconds?This is the historyVK...
View ArticleIch brauche Hilfe • Re: Deutsche Hilfe für AHK v2 und v1
Hallo,in https://ahkde.github.io/docs/v2/Objects.htm#object-literal fehlt ein nichtJedes Paar besteht aus einem direkt geschriebenen (nicht in Anführungszeichen gesetzten) Eigenschaftsnamen …Each pair...
View ArticleBug Reports • Re: Hotkeys stop working after some time with 32-bit AHK on...
Ultimately, it doesn't seem worth the risk given that 64-bit AutoHotkey doesn't appear to be subject to removal of the hook.On the Discord server @geek, @ShambleS1980, @luigislam and I spent a couple...
View ArticleBug Reports • Keyboard Hook being removed in 64-bit AHK
Same issue as this post viewtopic.php?f=14&t=82158I'm using 64-bit AHK on 64-bit Windows 10.Link to discord thread, for extra...
View ArticleAsk for Help (v1) • Re: Delete File or Folders Using the Clipboard
hi mikeywwThanks for your reply.I have managed to find a work around which works for me, but will take onboard your comments regarding provide more detailed information on issues.Thanks...
View ArticleBug Reports • Re: Keyboard Hook being removed in 64-bit AHK
Sooo REAL Qriist here. Apparently the forum url includes a sid token that just logs people in as you on other systems. Could we, like, nuke that feature so this doesn't happen again?Statistics: Posted...
View ArticlePedir Ayuda • Re: automatizar y poder expandir textos
Hola: Sin ver el código es difícil dar una opinión sensata, más allá de afirmar que eso no corresponde con un funcionamiento normal. Así que te propongo que publiques el código —no te olvides de...
View ArticleWish List • Re: Dynamic Variable Creation
@chinagreenelvis, MonCol := [[Map()]] is not enough, as it will create only one column for one monitor. If you know the number of monitors and columns beforehand then you can define the MonCol...
View ArticleIch brauche Hilfe • Re: Run(Wait) - Ergebnis prüfen
...Der Aufruf muss dann angepasst werden:CODE: RunWait, %ComSpec% meinprogramm.exe %MeineParameterVariable%Sorry, da habe ich beim Tippen des Beitrags geschlampt. Sollte nicht vorkommen ....Was das...
View ArticleAsk for Help (v2) • Re: is the ListLines history available for a script to peek?
CODE: #Requires AutoHotkey v2.0logFile := 'lines.log'WinMove -1000,,,, A_ScriptHwndListLinesFileAppend ControlGetText('Edit1', A_ScriptHwnd) '`n', logFileRun 'notepad.exe "' logFile...
View ArticleAsk for Help (v2) • Re: Manage dual GUIs
You like to create short programs (but I'm getting better and better at reading these)One of my objections this time is that the function init() is executed, and the program code "runs" on.if the code...
View ArticleAsk for Help (v1) • Open a new tab of Chrome, in an active window
So I am trying to create a shortcut that will allow me to open a specific website in a new tab, when chrome is already open. To start I was trying to open a new tab in chrome. I got a script to work...
View ArticleAsk for Help (v2) • Re: How do I make a message box that disappears after X...
I think what you need is a better grasp on variables, literals and expressions. I would suggest reading the section on Variables and Expressions for a better understanding of what @mikeyww gave you....
View ArticleAsk for Help (v1) • Re: Open a new tab of Chrome, in an active window
WinExist() is a function, and would need function syntax with parentheses and quotes for literal strings (see docs for examples). This would make sense with a regular If.But you are checking the same...
View ArticleAsk for Help (v2) • Re: Overriding other app's window style without a flash
I see, then I guess I'd also need to implement all the logic inside that DLL file. Do you know whether it's actually possible, though, not to only apply styles, but update window size/position, and,...
View Article