Jump to content

PDF conversion


nanni

This topic is 6965 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Do you need a PDF of one invoice (1 record in your table)?

Or do you need many PDFs of many invoices in your file?

Or do you need one PDF document, which contains many invoices?

Anyway, with Mac OS X you can save a PDF document in every application by simply choosing the option

Link to comment
Share on other sites

You can do it by printing; OSX has a "Save as PDF" button right there in the print dialog.

Or, of you'd like to send the pdf straight to an email client, employ Applescript;

Add a folder "PDF Services" to ~/Library or /Library; then put an applescript in it like such (this is an entourage example)

on open these_items

try

set this_file to item 1 of these_items

tell application "Finder"

set the file_name to the name of this_file

set the parent_folder to (the container of this_file) as alias

end tell

tell application (path to frontmost application as string)

repeat

display dialog "Enter a name for file:" default answer file_name

set this_name to the text returned of the result

if this_name is not "" then exit repeat

end repeat

end tell

tell application "Finder"

set the name of this_file to this_name

set the target_file to

Link to comment
Share on other sites

This topic is 6965 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.