John, I’ve had to use GetInfo on the droplet| script
to increase the amount of preferred memory assigned
to the application; this app does an archive of a folder
to a backup folder when they are dropped on it.
Ed
: To part answer my own question, I have found that : set
: num_files to count files of my_folder
: repeat with file_number from 1 to num_files
: set the_file to file file_number of my_folder as alias
: – do stuff here
: end repeat
: lets me walk the folder without memory issues, but it
: does make the logic of the job I’m doing tougher, so
: I’d still be interested to know if there is a way
: round the ‘memory’ issue…
: Thanks!
: John Milton