| Author |
Message |
Topic: DotStar - Yet Another RegEx Tester |
keybored
Replies: 2
Views: 359
|
Forum: Scripts & Functions Posted: Sun Jun 01, 2008 6:51 pm Subject: hurray for occums razor |
Icarus, Love the name DotStar and appreciate the simplicity.
From trying it there are only two things that might be nice. The Haystack to allow multiple lines. When copying to clipboard using `r`n ... |
Topic: CreateDriveShortcut |
keybored
Replies: 3
Views: 279
|
Forum: Scripts & Functions Posted: Thu May 22, 2008 7:52 am Subject: CreateDriveShortcut |
The fix works.
I thought the extra code to handle drive names was a bit much, but it will come in handy if your drive letter is stored as a variable. Thanks for the update. |
Topic: CreateDriveShortcut |
keybored
Replies: 3
Views: 279
|
Forum: Scripts & Functions Posted: Tue May 20, 2008 3:33 pm Subject: CreateDriveShortcut |
| k3ph I ran it as is, but my D doesn't have a label so it was just an icon. Perhaps for drives with no label it should use the drive letter. |
Topic: PixelSearch Help |
keybored
Replies: 10
Views: 234
|
Forum: Ask for Help Posted: Tue May 20, 2008 4:03 am Subject: PixelSearch Help |
| salcorn it worked for me. Are you running the latest ahk. I can't think of anything else to consider. |
Topic: Script Help |
keybored
Replies: 1
Views: 84
|
Forum: Ask for Help Posted: Tue May 20, 2008 3:58 am Subject: read faq |
How to get answers affectively;
http://www.autohotkey.com/forum/viewtopic.php?t=4986
List of all commands;
http://www.autohotkey.com/docs/commands.htm |
Topic: Moving windows over three monitors |
keybored
Replies: 3
Views: 181
|
Forum: Ask for Help Posted: Tue May 20, 2008 3:49 am Subject: the code |
| Post the updated code I will have another look. |
Topic: Grabbing info from an email |
keybored
Replies: 6
Views: 181
|
Forum: Ask for Help Posted: Sun May 18, 2008 5:51 pm Subject: that outlook |
Yep that's a good sign
Tried your code remotely logged in from work. It is a limitation that the window has to be open. My code works either way, which was a happy surprise really, because I didn't ... |
Topic: Grabbing info from an email |
keybored
Replies: 6
Views: 181
|
Forum: Ask for Help Posted: Sun May 18, 2008 4:46 pm Subject: many thanks |
ahklerner, It occurs to me he didn't say he has Outlook.
I will dig into your functions. I am making a tool for aggregating lots of emailed data we receive at work. |
Topic: Grabbing info from an email |
keybored
Replies: 6
Views: 181
|
Forum: Ask for Help Posted: Sun May 18, 2008 4:27 pm Subject: meet grabby (well part of him) |
jonathan,
Just so happens I am working on the same problem.
The code below works for non HTML emails if they contains CWP or UID (my work sends emails with this Universal ID etc...). I loop throug ... |
Topic: Moving the Windows task bar from the bottom to the right |
keybored
Replies: 9
Views: 198
|
Forum: Ask for Help Posted: Sun May 18, 2008 2:37 pm Subject: delegate it to someone else |
1. drag your mouse to the bottom of the screen.
2. right click select properties
3. if lock taskbar is checked uncheck and press OK
4. again drag your mouse to the bottom of the screen
5. click an ... |
Topic: show a message when a certain control appears |
keybored
Replies: 2
Views: 93
|
Forum: Ask for Help Posted: Sat May 17, 2008 1:37 pm Subject: missing parameter? |
Guest. It seems the window title is missing from ControlGetPos. Using "A" takes the current active window so it may work for you.
ControlGetPos, x, y, w, h, Button12, A |
Topic: auto refresh current internet explorer pages |
keybored
Replies: 7
Views: 244
|
Forum: Ask for Help Posted: Sat May 17, 2008 12:17 pm Subject: single line commands etc |
If you place your command to the right of the hotkey it acts as a single line of code with a return after it. Used for single lines of code.
So the code last posted only executes "F1::Suspend&qu ... |
Topic: auto refresh current internet explorer pages |
keybored
Replies: 7
Views: 244
|
Forum: Ask for Help Posted: Sat May 17, 2008 7:31 am Subject: auto refresh current internet explorer pages |
Yes, but put loop under the hotkey.
!n::
Loop,
{
Sleep, 10000
Send, F5
}
return |
Topic: Moving windows over three monitors |
keybored
Replies: 3
Views: 181
|
Forum: Ask for Help Posted: Sat May 17, 2008 7:29 am Subject: hmm |
OK I see at least part of the problem (see error message below).
You had the variable enclosed in %%
WinGetActiveTitle, ActTitle2
Error: The following variable name contains an illegal characte ... |
Topic: run Autohotkey when another app is opened |
keybored
Replies: 2
Views: 106
|
Forum: Ask for Help Posted: Sat May 17, 2008 7:14 am Subject: a start |
I tried IfExist and it recognized when I put a dvd in.
loop
{
Sleep, 5
IfExist, H:\
MsgBox, The drive exists.
}
return |
| |