| Author |
Message |
Topic: Do you wish to have a GUI with AutoHotKey? |
PenP
Replies: 17
Views: 2021
|
Forum: Wish List Posted: Thu Jul 15, 2004 3:32 pm Subject: Do you wish to have a GUI with AutoHotKey? |
Just to see how many people would like a GUI with AutoHotKey
Please vote....
Grtz,
PenP
PS, I think AutoHotKey is great the way it is now, but maybe with some GUI options it would even ... |
Topic: Variable Expansion |
PenP
Replies: 13
Views: 1154
|
Forum: Ask for Help Posted: Tue Jul 13, 2004 9:52 pm Subject: Variable Expansion |
Hi,
%SystemRoot%\cmd.exe is not the same as %COMSPEC%, try this:
MsgBox, COMSPEC = %COMSPEC%`nSystemRoot = %SystemRoot%\cmd.exe
This is my result:
COMSPEC = C:\WINDOWS\system32\cmd.exe
Syst ... |
Topic: Using CTRL+string as hotkey |
PenP
Replies: 3
Views: 541
|
Forum: Ask for Help Posted: Tue Jul 13, 2004 9:26 pm Subject: Using CTRL+string as hotkey |
Hi,
I would not use the Control-key if I were you. Because the ^C is used for the ClipBoard. Maybe this will do it for you instead,
Lalt & C:: Run, calc.exe
Lalt & i:: ... |
Topic: Automatic #SingleInstance |
PenP
Replies: 1
Views: 784
|
Forum: Wish List Posted: Tue Jul 13, 2004 9:06 pm Subject: Automatic #SingleInstance |
I think it's an good idea! Most script are used with an SingleInstance therefore it will be handy if its only required when you don't want to use it.
Grtz,
PenP |
Topic: GUI for my scripts |
PenP
Replies: 32
Views: 6388
|
Forum: Scripts & Functions Posted: Tue Jul 13, 2004 8:55 pm Subject: GUI for my scripts |
Hi,
I'm also looking for a nice and simple GUI to launch my scripts or get some data. I also tried GUI4Cli, but like Chris said I like to keep it as simple and clean as possible. At this moment I'm ... |
Topic: Send only works once |
PenP
Replies: 4
Views: 632
|
Forum: Ask for Help Posted: Wed Jun 30, 2004 11:12 pm Subject: Send only works once |
I think this will work,
#InstallKeybdHook
#UseHook
*RAlt::
Send, {PgDn Down}
Loop
{
Sleep, 10
GetKeyState, state, Ralt, P
if state = U ; The key has ... |
Topic: Send command doesn't work |
PenP
Replies: 6
Views: 1134
|
Forum: Ask for Help Posted: Mon May 17, 2004 10:23 pm Subject: Send command doesn't work |
You have to be sure that the window that your sending the command to is active!
Maybe this will work,
WinActivate, C:\WINDOWS\System32\cmd.exe,
Send, exit{enter}
Grtz, PenP |
Topic: Yesterday |
PenP
Replies: 13
Views: 1562
|
Forum: Ask for Help Posted: Sat May 15, 2004 12:46 pm Subject: Yesterday |
Thanks, this is much more efficient and it works great!
This is wat I made off it.
EmptyVar += 0, days
CurrentTime = %a_year%%a_mon%%a_mday%%a_hour%%a_min%%a_sec%
CurrentTime += -1, days
... |
Topic: Thank you for making life easy! |
PenP
Replies: 1
Views: 702
|
Forum: General Chat Posted: Sat May 15, 2004 1:08 am Subject: Thank you for making life easy! |
AutoHotKey is a great tool and i want to thank the creator(s) of AutoHotKey.
I created some scripts in a few minutes to automate some repeating jobs and its saving a lot of time
Tnx PenP |
Topic: Yesterday |
PenP
Replies: 13
Views: 1562
|
Forum: Ask for Help Posted: Sat May 15, 2004 12:41 am Subject: Yesterday |
Ifnotequal must be "Ifequal"
This is the script as i use it right now:
yday = %a_mday%
ymonth = %a_mon%
yyear = %a_year%
if yday <> 1
{
yday -= 1
}
else ... |
| |