How can I print from this script?
How can I print from this script?
- Subject: How can I print from this script?
- From: "Craig M. Berry" <email@hidden>
- Date: Tue, 26 Jun 2001 16:01:07 -0500 (CDT)
Okay, here is what I am working with!
Only one prob, when I run the script, it prompts me to hit the print
button, then it asks me if I want to save the file. I tried to add
close aFile saving no, and it did not work. I would like to have the
script run and not have to hit any buttons after I start the script. Can
anyone help? Thanks in advance!
tell application "Finder"
set fList to (files in folder "Macintosh HD:cberry:quark files") as
alias list
repeat with aFile in fList
open aFile
print aFile
close aFile
end repeat
end tell