How to get applescript to work with Preview in Snow Leopard

applescriptosx-snow-leopardpreview

How do I get applescript to work with Preview in Snow Leopard? I'd like, for instance, my applescript for resizing a window to full screen (which works for most applications (e.g., chrome)) to work for preview.

In old versions of OS X (as ghoppe points out), one can enable this by typing

defaults write
/Applications/Preview.app/Contents/Info
NSAppleScriptEnabled -bool YES

into a terminal. This doesn't seem to work in Snow Leopard.

Best Answer

Does this help? Preview is not really that scriptable.

For what it's worth, Automator can do image manipulation more easily, it also has some PDF actions.

If you're wanting to do image manipulation with Applescript, what you're really looking for is Image Events, not Preview.

Related Question