Search the web
Sign In
New User? Sign Up
AutoHotkey
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 204 - 241 of 528   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
204
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...
Chris
cmallett2
Offline Send Email
Oct 3, 2005
7:17 pm
205
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 (...
Germán Blando
germanblando
Offline Send Email
Oct 4, 2005
10:05 am
206
... “(“ with a “)” automatically. The same with characters [], {}, “” ... These hotstrings not be a perfect solution, but seem to work pretty well....
Chris
cmallett2
Offline Send Email
Oct 4, 2005
10:28 am
207
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...
Jack Horsfield
jack_horsfield
Online Now Send Email
Oct 4, 2005
11:49 am
208
... 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...
Chris
cmallett2
Offline Send Email
Oct 4, 2005
12:34 pm
209
It works very well for me. Thank you! Saludos, Germn Blando Chris escribi: ... character ( with a ) automatically. The same with characters [], {}, ... These...
Germán Blando
germanblando
Offline Send Email
Oct 5, 2005
10:20 am
210
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...
Chris
cmallett2
Offline Send Email
Oct 11, 2005
6:12 pm
215
In the ongoing campaign against spam, the list member who sent the previous message has been banned....
Chris
cmallett2
Offline Send Email
Jan 20, 2006
7:04 pm
216
(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...
Chris
cmallett2
Offline Send Email
Jan 23, 2006
1:16 am
217
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...
Chris
cmallett2
Offline Send Email
Feb 11, 2006
11:26 pm
219
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...
karl_strassburg
Online Now Send Email
Feb 28, 2006
3:15 am
220
... 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...
Chris
cmallett2
Offline Send Email
Feb 28, 2006
9:43 pm
221
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...
Bhante Upatissa
sadhu44
Offline Send Email
Mar 1, 2006
3:15 am
222
Hello. New group member. Glad to find a AutoHotKey group! I have already RTFM'd. I need the code to write out a file with the name 20060306100624 ...
Dave Przebiegelec
an_american_...
Online Now Send Email
Mar 6, 2006
4:17 pm
223
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...
A N Suresh Kumar
goyyah
Offline Send Email
Mar 6, 2006
4:35 pm
224
=> 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...
Dave Przebiegelec
an_american_...
Online Now Send Email
Mar 7, 2006
3:03 am
225
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...
A N Suresh Kumar
goyyah
Offline Send Email
Mar 7, 2006
7:26 am
227
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...
Chris
cmallett2
Offline Send Email
Mar 28, 2006
2:22 am
228
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...
danthetaliban
Offline Send Email
Mar 28, 2006
8:49 pm
229
... wrote: sorry, made a type, i meant to write %OutputVar% in the appropriate places. even corrected i get the error though....
danthetaliban
Offline Send Email
Mar 28, 2006
8:54 pm
230
... 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...
Chris
cmallett2
Offline Send Email
Mar 29, 2006
12:21 am
233
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...
mark_kolber
Offline Send Email
Apr 12, 2006
8:27 pm
234
Dear Rank Newbie, :) You may try: ^!F5::Send, `% Regards, :)...
goyyah
Offline Send Email
Apr 13, 2006
5:26 am
235
... Ah! Literal character! How wonderfully obvious. Well, see, I told you! :) Thank you....
mark_kolber
Offline Send Email
Apr 13, 2006
11:47 am
236
... ...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...
mark_kolber
Offline Send Email
Apr 13, 2006
12:00 pm
237
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...
jack horsfield
jack_horsfield
Online Now Send Email
Apr 13, 2006
1:10 pm
238
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...
mark_kolber
Offline Send Email
Apr 13, 2006
3:16 pm
239
Just make sure that you backup and restore the current clipboard contents: ^!5:: clipboardBak := clipboard clipboard = ° Send, ^v clipboard := clipboardBak ...
F.D.
ace_noone
Offline Send Email
Apr 13, 2006
3:32 pm
240
An AutoHotkey newsletter has been set up at http://www.autohotkey.com/lists/?p=subscribe Rather than replacing the Yahoo mailing list, the newsletter is...
Chris
cmallett2
Offline Send Email
Apr 14, 2006
1:17 pm
241
Here are the changes: Changed SendInput to use "SetKeyDelay -1, 0" when it reverts to SendEvent mode (unless SendEvent's KeyDelay "-1,-1", in which case...
Chris
cmallett2
Offline Send Email
Apr 18, 2006
3:49 am
Messages 204 - 241 of 528   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help