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

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 222 - 258 of 528   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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_...
Offline 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_...
Offline 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
244
Here are the changes: Fixed SendInput not to revert to SendEvent merely because another script has a mouse hook. Only another keyboard hook should do that....
Chris
cmallett2
Offline Send Email
Apr 26, 2006
12:00 am
245
Here are the changes: Improved PixelGetColor with two alternate modes that work in a broader variety of windows and full-screen apps. [thanks TDMedia] Improved...
Chris
cmallett2
Offline Send Email
Apr 29, 2006
1:23 am
246
Here are the changes: Fixed %A_WorkingDir% on Windows 9x, which was sometimes blank. [thanks Points] Improved BlockInput with a new mode that blocks only...
Chris
cmallett2
Offline Send Email
May 1, 2006
3:52 pm
249
Here are the changes: Fixed OnClipboardChange to work even when the script is displaying a MsgBox or other dialog. Fixed FileCreateDir not to report ErrorLevel...
Chris
cmallett2
Offline Send Email
May 15, 2006
1:49 am
250
Here are the changes: Fixed StatusBar's grabbing of UpDowns that are added after it. [thanks Tekl] Changed Round() to display exactly N decimal places rather...
Chris
cmallett2
Offline Send Email
May 15, 2006
9:41 pm
251
In v1.0.44.02, hotkeys that use "&" and "~" together have been fixed (e.g. ~a & b and ~LButton & RButton) (broken by v1.0.44). Download it at...
Chris
cmallett2
Offline Send Email
May 21, 2006
1:51 am
252
hi,guys: I am a first to use the sutohotkey language .but now ,I have some question need your help: first : I don't know how to run the script ,I created a...
lkyuier
Offline Send Email
May 22, 2006
3:32 am
253
Dear lkyuier, :) #Space translates to Windows_Key+Space! You have to press WIN+Space to trigger the action. Visit the forum for more help:...
goyyah
Offline Send Email
May 22, 2006
8:08 am
254
; ::#space::run www.google.com Not this way #space:: run www.google.com ; FYI the semi colon is a comment line ; If you you more than one line for a hot key ;...
Tom George
tomseeker0031
Offline Send Email
May 22, 2006
11:20 am
255
Here are the changes: Fixed FileExist() to report "X" rather than "" for files whose attributes are all undefined. [thanks Peter] Fixed Tab controls so that...
Chris
cmallett2
Offline Send Email
May 30, 2006
1:53 am
256
I am also new to this forum and just started using AHK. My use of AHK is in working with multimedia type files and directories. Just now beginning to think...
Sri Sridharan
infinisri
Offline Send Email
May 31, 2006
10:25 am
257
Your best bet will be to ask on the forums - glad you've already found Titan's functions there. AFAIK, you can use the forums without having to login, though...
fdg001@...
ace_noone
Offline Send Email
May 31, 2006
10:30 am
258
Here are the changes: Fixed double-colon warning dialog appearing upon launch of certain scripts. (broken by 1.0.44.03) Fixed combination hotkeys like "a & b"...
Chris
cmallett2
Offline Send Email
Jun 1, 2006
2:02 pm
Messages 222 - 258 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