| Author |
Message |
Topic: Folders with one file type |
horntail
Replies: 8
Views: 207
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 10:45 pm Subject: Folders with one file type |
| what is it failing to do? |
Topic: Folders with one file type |
horntail
Replies: 8
Views: 207
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 10:33 pm Subject: Folders with one file type |
| have you changed the directory its sending the files to? because the version i posted sends the files to a folder called test on your desktop |
Topic: Folders with one file type |
horntail
Replies: 8
Views: 207
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 8:59 pm Subject: Folders with one file type |
there you go
SetWorkingDir %A_ScriptDir%
dir_to_check = %A_ScriptDir%
move_to_dir = %A_desktop%\test
filecreatedir, %move_to_dir%
Loop, %dir_to_check%\*, 2
{
hasother=no
... |
Topic: Folders with one file type |
horntail
Replies: 8
Views: 207
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 4:19 pm Subject: Folders with one file type |
try this
SetWorkingDir %A_ScriptDir%
dir_to_check = %A_ScriptDir%
move_rars_to = ..\moved rars
Loop, %dir_to_check%\*, 2
{
hasother=no
hasrar=no
Loop, %A_LoopFileName ... |
Topic: RADIAL MENU scripts --> New: RM Themes by LiquidGravity |
horntail
Replies: 224
Views: 20880
|
Forum: Scripts & Functions Posted: Thu Nov 19, 2009 5:30 pm Subject: RADIAL MENU scripts --> New: RM Themes by LiquidGravity |
| the button shadows are a nice touch |
Topic: RADIAL MENU scripts --> New: RM Themes by LiquidGravity |
horntail
Replies: 224
Views: 20880
|
Forum: Scripts & Functions Posted: Thu Nov 19, 2009 12:09 pm Subject: RADIAL MENU scripts --> New: RM Themes by LiquidGravity |
Looking good, cant wait for version 3  |
Topic: Help for this problem |
horntail
Replies: 3
Views: 223
|
Forum: Ask for Help Posted: Sat Sep 12, 2009 10:17 pm Subject: Help for this problem |
when using id's with winactivate you need to use this method
WinActivate, ahk_id %XYZID%
that may change the programs behavour |
Topic: Help with loops/ifs? (Trying to run programs in sequence) |
horntail
Replies: 7
Views: 279
|
Forum: Ask for Help Posted: Fri Sep 04, 2009 5:15 pm Subject: Help with loops/ifs? (Trying to run programs in sequence) |
then try
winactivate
Or
winactivatebottom, supreme world: |
Topic: Help with loops/ifs? (Trying to run programs in sequence) |
horntail
Replies: 7
Views: 279
|
Forum: Ask for Help Posted: Fri Sep 04, 2009 4:50 pm Subject: Help with loops/ifs? (Trying to run programs in sequence) |
ty changing the winactivatebottom line to this,
winactivatebottom
Also, the coordmode line is not needed, cordmode defaults to what you've set anyway |
Topic: Help with loops/ifs? (Trying to run programs in sequence) |
horntail
Replies: 7
Views: 279
|
Forum: Ask for Help Posted: Thu Sep 03, 2009 10:57 pm Subject: Help with loops/ifs? (Trying to run programs in sequence) |
| do you have any other windows open at the time which start with the name Supreme World:? |
Topic: FileAppend Performance Concerns |
horntail
Replies: 9
Views: 327
|
Forum: Ask for Help Posted: Sat Aug 29, 2009 2:56 am Subject: FileAppend Performance Concerns |
test it again with this code, it should be faster and its what startTime:=A_TickCount
Input_File = C:\Input_File.TXT
Output_File = C:\Output_File.TXT
Filedelete %Output_File%
... |
Topic: Help with adding to Strings |
horntail
Replies: 7
Views: 136
|
Forum: Ask for Help Posted: Sat Aug 29, 2009 2:31 am Subject: Help with adding to Strings |
Var .= "String"
Hope that's what you are looking for
nice edit there, i was just going to correct you PurloinedHeart
the .= means that the following will be added to the var ... |
Topic: illegal characters error when using send command |
horntail
Replies: 4
Views: 136
|
Forum: Ask for Help Posted: Sat Aug 29, 2009 2:05 am Subject: illegal characters error when using send command |
| the send command wont complete untill it has sent everything, so autohotkey wont go to the next script line untill the send has finished |
Topic: How do I trap a hotkey for one app while renaming another? |
horntail
Replies: 3
Views: 94
|
Forum: Ask for Help Posted: Sat Aug 29, 2009 1:46 am Subject: How do I trap a hotkey for one app while renaming another? |
I would think that when you Goto Run
it would start the infinite loop and "Escape::..." would never get executed.
How is it that Escape still works?
my understanding of it is that t ... |
Topic: How do I trap a hotkey for one app while renaming another? |
horntail
Replies: 3
Views: 94
|
Forum: Ask for Help Posted: Sat Aug 29, 2009 1:29 am Subject: How do I trap a hotkey for one app while renaming another? |
Try this:
#IfWinActive, Visual DataFlex 12.1 Studio
goto, run
Escape::WinClose, Visual DataFlex 12.1 Studio
RenameVDF()
{
If WinExist("Visual DataFlex St ... |
| |