Newbies nanni Posted April 20, 2005 Newbies Posted April 20, 2005 I'm a little new to FM. I have spent the whole morning creating an invoice template. How do I convert a file into a pdf so I can email it. Any help would be much appreciated.
dbruggmann Posted April 20, 2005 Posted April 20, 2005 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
Tony O Posted April 22, 2005 Posted April 22, 2005 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
Recommended Posts
This topic is 7223 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 accountSign in
Already have an account? Sign in here.
Sign In Now