I want to write an AppleScript which combines 2 pdf's. I found on the internet that it can be done with a shell script. But, If my Mac doesn't want to do it. I don't know if I make a mistake in calling the script or if I make a mistake in my filenames (my homedirectory contains spaces). I tried a lot of things, but nothing solved the problem. It drives me nuts!
My current code is:
My current code is:
Code:
tell application "Terminal"
do shell script "python /System/Library/Automator/Combine\\ PDF\\ Pages.action/Contents/Resources/join.py -o '/System/Users/Amelie\\ 1\\ 2\\ 3/Desktop/pdf3.pdf' '/System/Users/Amelie\\ 1\\ 2\\ 3/Desktop/pdf1.pdf' '/System/Users/Amelie\\ 1\\ 2\\ 3/Desktop/pdf2.pdf'"
end tell