Tengo un AppleScript para abrir mover una página web de Safari a la vista de Reader y luego a Guardar como PDF.
Me gustaría guardar como el PDF con el nombre de archivo predeterminado, pero siempre en la misma ubicación específica. No estoy seguro de cómo hacer esto.
Actualmente el AppleScript se ejecuta como:
tell application "System Events"
tell application process "Safari"
set frontmost to true
repeat until window 1 exists
end repeat
# Render page in Safari Reader
keystroke "r" using {command down, shift down}
delay 0.02
-- Print; wait until the sheet is visible
click menu item "Print…" of menu 1 of menu bar item "File" of menu bar 1
repeat until sheet 1 of window 1 exists
end repeat
set thePopUp to first pop up button of sheet 1 of window 1 whose description is "Presets"
click thePopUp
click menu item "Default Settings" of menu 1 of thePopUp --replace if desired with your preferred preset
click menu button "PDF" of sheet 1 of window 1
click menu item "Save as PDF…" of menu 1 of menu button "PDF" of sheet 1 of window 1 -- Save as PDF...
tell application "Finder"
set filesavepath to "/Users/Ariel/Google Drive/To print"
end tell
end tell
Los bits finales de AppleScript, desde 'tell application finder' no hacen que la página se guarde en la ubicación deseada. Por favor, ¿podrías ayudarme a esto? Gracias por cualquier ayuda.