Paul Howard wrote:
Trouble is the amount of them. I was hoping there was some way of
easily automating the process but automator doesn't seem to have a
"save as" option as part of the workflow options.
use Applescript (with Automator too). You can mimic the keyboard with
this kind of block
tell app "system events"
tell process "Openoffice"
keystroke "s" using {command down}
end tell
end tell
See here for basic starting.
http://www.makeuseof.com/tag/applescripts-ui-scripting-mac/
My tip -- build in delays ("delay 1" will delay a second) between the
keystrokes. Sometimes it all gets out of sequence with these things.
probably by the time you've got the script working, you'll have done
about a hundred debugging steps so it dpends if you want to learn
Applescript or not, usually, with jobs like this;) (but the next time is
easier...)
--
You received this message because you are subscribed to the Google Groups "Sussex
Mac User Group" group.
To post to this group, send an email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at
http://groups.google.com/group/smug?hl=en-GB.