hello,
It happens regularly that I have to print multiple documents.
It would be nice if I could create a macro that I could trigger with a shortcut, simply to print a blank page.
I would trigger the macro between each document printout, which will make the exercise of sorting out the printouts less tedious.
thank you in advance for your time and help
Something like this should work:
set blankFilePath to "/Users/<YourMacUserName>/Documents/TEST/KM/Source for RegEx KM/BlankFile.txt"
set blankFileHFS to POSIX file blankFilePath
tell application "Finder"
print file blankFileHFS
end tell
1 Like
works perfectly. thank you very much !
1 Like