Here are the changes: Fixed the Input command to properly capture keystrokes sent by a hotkey or hotstring for which the user is physically holding down SHIFT,...
The last change below may impact scripts that use the keyboard or mouse hook. If you have any mission-critical scripts that rely on them, it is recommended...
Great! Is there any way to put ended signs in a text processor environment? E.g., when Im using an IDE for programming, I would like to close the character (...
since installing .39 I keep getting the following message when giving focus to my vmware session: 71 hotkeys have been received in the last 1110 ms Do you want...
... focus to my vmware session: 71 hotkeys have been received in the last 1110 ms Do you want to continue? That warning dialog is usually caused by a hotkey...
It works very well for me. Thank you! Saludos, Germn Blando Chris escribi: ... character ( with a ) automatically. The same with characters [], {}, ... These...
Here are the changes: Fixed the mouse and keyboard hooks so that failure to activate them behaves correctly. Changed the Send command for Russian and other...
(This version was released a few days ago; sorry for the delayed e-mail.) Here are the changes: Fixed "Transform HTML", which was broken by v1.0.40.02. [thanks...
Here are the changes: Fixed expressions such as "If not Installed" not to be misinterpreted as "If not in List". [thanks Toralf] Fixed certain unusual...
Hi, I am new to this but have used AutoHotkey in the last week or so to do simple stuff like expand text (tefffic feature that!) I would like to be able to...
... That goal is a little vague. If you haven't already, be sure to read the Quick-start Tutorial: http://www.autohotkey.com/docs/Tutorial.htm If you get...
I would like to suggest that this application, if I understand you correctly, might be better handled by standard Windows functions such as adding functions to...
Dear Dave, Filename = % A_Now ;assigns the curennt time string to variable Filename Filename = % A_Now ".txt" ; for a filename with .txt extension ;To Append...
=> Thank you <= That got me close enough to do a hotkey timestamped archive of a critical file I work in a lot. Dave -- In AutoHotkey@yahoogroups.com, "A N...
Dear Dave, I would love to see you @ AHK Forum. Please find time to visit http://www.autohotkey.com/forum/ Regards, Goyyah aka Suresh ... From: Dave...
Although this release has been extensively tested and is not expected to break any existing scripts, several changes were made to the sending of keystrokes and...
Hi, i have read relevant parts of the documentation but do not understand why this gives me an error IniRead, OutputVar, config.ini, Config, Key MsgBox, You...
... Since remappings like a::b are activated before the script begins running, you can't have a variable reference like %OutputVar% in them. To work around...
I know the standard way of using autohotkey to create standard ASCII characters. For example, both ^!5::Send, {ASC 0176} and ... will produce the degrees...
... ...except that it turns out it doesn't work. Same rseult. Even when entered in a text box in Firefox, the character appears in the google search box. I'll...
I haven't tried it... but what about using the chr function to load your character on to the clipboard, then paste that in? jack It's not the despair - I can...
I ended up using the clipboard to solve the problem: ^!5:: clipboard=° send, ^v return works just fine. Thanks for the help. The ideas I received sent me on...