| Author |
Message |
Topic: Need to read a slip.txt file and make an input.txt file |
poo_noo
Replies: 4
Views: 100
|
Forum: Ask for Help Posted: Thu Sep 04, 2008 4:27 am Subject: Need to read a slip.txt file and make an input.txt file |
Look up Fileread and Fileappend
This should get you started.
IfExist input.txt ;check for an existing file
{
msgbox, I exist
Filedelete input.txt ;delete if found
}
FileRead, sa ... |
Topic: Perl Script to ahk |
poo_noo
Replies: 7
Views: 174
|
Forum: Ask for Help Posted: Tue Sep 02, 2008 12:30 pm Subject: Perl Script to ahk |
http://thomaslauer.com/comp/Calling_Perl_from_AHK_or_AU3
http://www.autohotkey.com/forum/viewtopic.php?t=12333perl
the above might help |
Topic: Using IniRead to read multiple keys |
poo_noo
Replies: 3
Views: 48
|
Forum: Ask for Help Posted: Mon Sep 01, 2008 4:18 am Subject: Using IniRead to read multiple keys |
Thanks, I wish I could take credit but it is my adaptation of the work of others with help from the forum.
http://www.autohotkey.com/forum/viewtopic.php?t=24302
http://www.autohotkey.com/forum/vi ... |
Topic: Using IniRead to read multiple keys |
poo_noo
Replies: 3
Views: 48
|
Forum: Ask for Help Posted: Mon Sep 01, 2008 3:58 am Subject: Using IniRead to read multiple keys |
;############# Read variables from INI file ################################################
; adapted from http://www.autohotkey.com/forum/viewtopic.php?t=21346
; adapted from http ... |
Topic: logonto wireless |
poo_noo
Replies: 11
Views: 229
|
Forum: Ask for Help Posted: Sun Aug 31, 2008 7:39 am Subject: logonto wireless |
you might want to look at REGWRITE & http://www.autohotkey.com/forum/viewtopic.php?t=33726wireless to see if you can set the wireless key programatically.
However all beyond me. |
Topic: logonto wireless |
poo_noo
Replies: 11
Views: 229
|
Forum: Ask for Help Posted: Fri Aug 29, 2008 6:34 am Subject: logonto wireless |
; assumes that the Wireless Network is enabled
run ::{7007acc7-3202-11d1-aad2-00805fc1270e}
sleep 5000
Send,w ; select Wireless Network Connection (starts with the letter W& ... |
Topic: logonto wireless |
poo_noo
Replies: 11
Views: 229
|
Forum: Ask for Help Posted: Fri Aug 29, 2008 12:03 am Subject: logonto wireless |
tested but crude.
run ::{7007acc7-3202-11d1-aad2-00805fc1270e}
sleep 5000
Send,w ; select Wireless Network Connection (starts with the letter W)
Send,{APPSKEY} ... |
Topic: logonto wireless |
poo_noo
Replies: 11
Views: 229
|
Forum: Ask for Help Posted: Wed Aug 27, 2008 11:20 pm Subject: logonto wireless |
| http://www.autohotkey.com/docs/misc/CLSID-List.htm |
Topic: logonto wireless |
poo_noo
Replies: 11
Views: 229
|
Forum: Ask for Help Posted: Wed Aug 27, 2008 11:17 am Subject: logonto wireless |
look up CLSID List (Windows Class Identifiers) in the help
run ::{7007acc7-3202-11d1-aad2-00805fc1270e} ; Network Connections
It might get you started |
Topic: double click start button to launch windows explorer |
poo_noo
Replies: 3
Views: 98
|
Forum: Ask for Help Posted: Sun Aug 24, 2008 12:30 pm Subject: double click start button to launch windows explorer |
| this sort of works ( but only on the 2nd double click so I have messed something up). It might get you started. It is based on ~*LButton:: ; [VxE]'s version of the Double-click Hotkey ... |
Topic: Else with no matching if error, need help |
poo_noo
Replies: 7
Views: 105
|
Forum: Ask for Help Posted: Sat Aug 23, 2008 11:01 am Subject: Else with no matching if error, need help |
| maybe the first ELSE should be an ELSE IF..... or maybe the last ELSE is an orphan. |
Topic: User defined Loop count |
poo_noo
Replies: 3
Views: 74
|
Forum: Ask for Help Posted: Fri Aug 22, 2008 1:49 pm Subject: User defined Loop count |
testedInputBox, N, Loops, Please tell me how many loops to do, , ,
Loop, %N%
{
MsgBox, Loops requested is %N%`nLoop number is %A_Index%.
Sleep, 100
}
|
Topic: Combine many scripts into one. |
poo_noo
Replies: 3
Views: 130
|
Forum: Ask for Help Posted: Fri Aug 22, 2008 12:41 pm Subject: Combine many scripts into one. |
how does this look ? Untested though
loop,
{
WinWait, Program Manager,
IfWinNotActive, Alaka , WinActivate, Alaka,
WinWait, Onay,
IfWinExist , Onay
{
send,{tab}{ ... |
Topic: Symantec Antivirus deleted my exe files |
poo_noo
Replies: 18
Views: 453
|
Forum: Ask for Help Posted: Mon Aug 18, 2008 7:38 am Subject: Symantec Antivirus deleted my exe files |
Oh I forgot to mention that I recompiled after renaming/removing UPX.exe and these new files escaped the AV scanner.
Its been a busy day. |
Topic: Symantec Antivirus deleted my exe files |
poo_noo
Replies: 18
Views: 453
|
Forum: Ask for Help Posted: Mon Aug 18, 2008 4:05 am Subject: Symantec Antivirus deleted my exe files |
Hi
I am struggling against this too. In our network (with lotsa PCs), my compiled AutoHotkey EXEs are being nuked by Symantec.
Currently we are excluding the AHK Program folder (c:\Program Files ... |
| |