| Author |
Message |
Topic: Script to move files older than 2 weeks into another folder |
scriptmonkey
Replies: 2
Views: 153
|
Forum: Ask for Help Posted: Mon May 12, 2008 8:59 pm Subject: Script to move files older than 2 weeks into another folder |
I am trying to create a script that moves files AND folders over 2 weeks old into a "old" folder.
Before I started moving things, I am trying to get the day values correct. I am having t ... |
Topic: Need to read a dir and sub dir for all .jpg |
scriptmonkey
Replies: 3
Views: 184
|
Forum: Ask for Help Posted: Fri Nov 16, 2007 3:57 pm Subject: Need to read a dir and sub dir for all .jpg |
Thanks. This should work fine. I can rename the txt file to CSV and pop it into Excel.
Question though, how can I replace the semicolons with commas?
fileappend,%LFN%;%LFM%;%LFP%`r`n,%F1%
C ... |
Topic: Directory > File listing - "dir /b /s *.mp3 > fil |
scriptmonkey
Replies: 4
Views: 253
|
Forum: Ask for Help Posted: Fri Nov 16, 2007 9:10 am Subject: Directory > File listing - "dir /b /s *.mp3 > fil |
I am trying to do something similar to what the dir command does in Windows command line, but with Autohotkey.
I need to go thru a dir and any sub dirs and export the path,filename, and modificatio ... |
Topic: Need to read a dir and sub dir for all .jpg |
scriptmonkey
Replies: 3
Views: 184
|
Forum: Ask for Help Posted: Fri Nov 16, 2007 9:06 am Subject: Need to read a dir and sub dir for all .jpg |
| I am trying to find duplicate files in a number of folders. What I need to do choose a directory, then the script goes thru the dir and sub dirs and find all .jpg files. The path, filename, and modi ... |
Topic: Whats the best way to save combo box data to file for later? |
scriptmonkey
Replies: 12
Views: 309
|
Forum: Ask for Help Posted: Mon Oct 15, 2007 5:11 am Subject: Whats the best way to save combo box data to file for later? |
You need to identify bottlenecks in your code
Thanks for the tip and code  |
Topic: Is there a way to rename files besides doing a FileMove ? |
scriptmonkey
Replies: 4
Views: 254
|
Forum: Ask for Help Posted: Sun Oct 14, 2007 9:37 pm Subject: Is there a way to rename files besides doing a FileMove ? |
| The only way I see how to rename a file is to do a FileMove, according to the Help file. Doing this on a large group of files takes some time, since you are overwriting the existing file with a new f ... |
Topic: Whats the best way to save combo box data to file for later? |
scriptmonkey
Replies: 12
Views: 309
|
Forum: Ask for Help Posted: Sun Oct 14, 2007 8:22 pm Subject: Whats the best way to save combo box data to file for later? |
Specify the delimiter to |
Sort, VarName, D|
Thanks, thats what I needed.
The script works exactly how I want it, but its not as fast as I would like it to be.
Since I am using an external p ... |
Topic: Whats the best way to save combo box data to file for later? |
scriptmonkey
Replies: 12
Views: 309
|
Forum: Ask for Help Posted: Sun Oct 14, 2007 8:15 am Subject: Whats the best way to save combo box data to file for later? |
I ended up doing this for the Delete button.
bDelete:
GuiControlGet,PrefixName
CurrentPrefix =%PrefixName%
If CurrentPrefix = Untitled
{
MsgBox You cannot delete this prefix.
Ret ... |
Topic: Whats the best way to save combo box data to file for later? |
scriptmonkey
Replies: 12
Views: 309
|
Forum: Ask for Help Posted: Sun Oct 14, 2007 3:11 am Subject: Whats the best way to save combo box data to file for later? |
A simple text file should suffice. No need to introduce Ini bottlenecks if you just have one value you need to store.
Save a text file with the following contents:
Trip To Beach|Christmas 2007
... |
Topic: Whats the best way to save combo box data to file for later? |
scriptmonkey
Replies: 12
Views: 309
|
Forum: Ask for Help Posted: Sun Oct 14, 2007 2:36 am Subject: Whats the best way to save combo box data to file for later? |
Thanks for the replys. I'm a bit confused. Below is the script I am working on. Disregard the listbox and Reload button, I am using that to help create this script.
The script basically renames ... |
Topic: Whats the best way to save combo box data to file for later? |
scriptmonkey
Replies: 12
Views: 309
|
Forum: Ask for Help Posted: Sun Oct 14, 2007 12:37 am Subject: Whats the best way to save combo box data to file for later? |
| I am trying to figure out how to save data in a Combo box to a seperate file. When my script loads, I would like the Combo box to be populated with the data in the file. This will allow me to reuse ... |
Topic: Simple question, how to update a Text Control? |
scriptmonkey
Replies: 2
Views: 119
|
Forum: Ask for Help Posted: Sun Oct 14, 2007 12:10 am Subject: Simple question, how to update a Text Control? |
Still learning... thanks  |
Topic: Simple question, how to update a Text Control? |
scriptmonkey
Replies: 2
Views: 119
|
Forum: Ask for Help Posted: Sat Oct 13, 2007 11:18 pm Subject: Simple question, how to update a Text Control? |
I have a text control that a user enters some data. At the end of my script, I want the Text control to default back to "Untitled". At the end of my script, I have
PrefixName =
How ... |
Topic: Is there a chat channel for AutoHotkey help? |
scriptmonkey
Replies: 1
Views: 115
|
Forum: Ask for Help Posted: Sat Oct 13, 2007 9:08 pm Subject: Is there a chat channel for AutoHotkey help? |
| It would be nice to have a channel for AutoHotkey help. Does one exist? |
Topic: How can I trigger a script when a user drag/drops images? |
scriptmonkey
Replies: 3
Views: 167
|
Forum: Ask for Help Posted: Fri Oct 12, 2007 11:16 pm Subject: How can I trigger a script when a user drag/drops images? |
| Thanks, thats a start. I figured out how to add the files to a list view, but it show the entire path. How can I get the value of each files filename and path, so they are in a separate string? |
| |