vote up 1 vote down star
1

Is there a way to print all of the Microsoft Word documents(.doc) in a folder using applescript?

flag

64% accept rate

1 Answer

vote up 1 vote down

This is untested, since I don't have my Mac at work, but you get the idea...

tell application "Finder"
try
set the source_folder to choose folder with prompt ¬
"Pick a folder containing the documents to process:"
set these_files to every file of the source_folder
repeat with 
tell application "Microsoft Word"
repeat with doc in these_files
print-out doc
end repeat
end tell
end tell
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.