Delay processing of different files in a folder

Just wondering if there is a way to delay the processing of sequential files that match a rule?
I have an "a better finder rename" droplet that is set to make files windows safe so they can be moved to a network drive.
The rule is:
Currently, if multiple files are matched simultaneously, only the first one will hit the droplet, because hazel sends all the files one after the other before the droplet has the time to finish loading the first one (which only takes about 2 seconds).
So basically, Im looking for some way to make hazel wait a few seconds before processing each of the matched files. I tried adding a "delay 30" applescript to the rule, but it didn't make any difference. Seems each file is matched and run regardless of if the rules for the file before it have finished running.
Ageing rules obviously won't work, because then the first file would be delayed by the same amount and I'd hit the same problem, just a little delayed.
I also tried opening the file with an applescript and building in a delay, but I can't get applescript to work nicely with an open command and the droplet.
help please!!
I have an "a better finder rename" droplet that is set to make files windows safe so they can be moved to a network drive.
The rule is:
- Code: Select all
if ......blah blah.....
then open with "droplet"
Currently, if multiple files are matched simultaneously, only the first one will hit the droplet, because hazel sends all the files one after the other before the droplet has the time to finish loading the first one (which only takes about 2 seconds).
So basically, Im looking for some way to make hazel wait a few seconds before processing each of the matched files. I tried adding a "delay 30" applescript to the rule, but it didn't make any difference. Seems each file is matched and run regardless of if the rules for the file before it have finished running.
Ageing rules obviously won't work, because then the first file would be delayed by the same amount and I'd hit the same problem, just a little delayed.
I also tried opening the file with an applescript and building in a delay, but I can't get applescript to work nicely with an open command and the droplet.
help please!!