February 23, 2003

Adding AppleScript to Printing Save As As PDF

An article on the web mentioned that you can just add applescript support to any Print dialog through the Save As PDF option like below.




I'll explain more details below.

To add a menu item to the PDF workflow pop-up menu, simply add one of the supported item types to any of the following directories:


  • /Library/PDF Services

  • ~/Library/PDF Services

  • /Network/Library/PDF Services


You can add the following type of items:

  • a folder or an alias to a folder

  • an application or an alias to an application

  • a UNIX tool or an alias to a UNIX tool

  • an AppleScript file or an alias to an AppleScript file


The following applescript will create a new message in the Mail application and attach the PDF.

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 ¬
(document file this_name of the parent_folder )as alias
end tell
tell application "Mail"
set the new_message to ¬
(make new outgoing message with properties ¬
{visible:true, content:" "})
tell the new_message
tell content
make new attachment with properties ¬
{file name: target_file } at ¬
before the first character
end tell
end tell
end tell

on error error_message number error_number
if the error_number is not -128 then
tell application (path to frontmost application as string)
display dialog error_message buttons {"OK"} default button 1
end tell
else
tell application "Finder" to delete parent_folder
end if
end try

end open


Cool! (Sorry the code indenting above is a bit warped :) )

Posted by zoo at February 23, 2003 10:39 PM
Comments

Well! I just spent three hours coding my own and it looks like yours works a lot better. Kudos!

Posted by: d chalmers on April 12, 2003 09:46 AM

Hmmm. I get an NSContainerSpecifierError when I try to use this. It appears to be at or around the line "make new attachment with properties {file name: target_file } at before the first character". Garrr.

Posted by: d chalmers on April 12, 2003 09:54 AM

Nice of you to repost Apple content. The JPG file is lifted from the apple site (didn't even change the name), the text of this article simply has a few lines cut out, and the script is lifted from Apple's site. Nice of you to make it appear to be yours.

Posted by: tom on August 3, 2003 09:53 AM

Nice article.

Posted by: discount term life insurance on October 5, 2003 06:13 PM

Air Filters Guide is the name recognized globally for the precise approach to each peace of information we deliver to our customers.

Posted by: furnace air filters on April 6, 2004 02:18 PM

Welcome to the greatest house-plans resource. Our online catalog will help you to chose one of the best and cheapest house and garage plans. Most plans are an unique work of art made by the best designers from all over the world. Using our site you will receive the cheapest plan of the magnificent house or garage - unique in whole country. This distinctive list of only outstanding plans will give you a perfect opportunity to be the best among your neighbors. Our service is licensed by leading house planning companies, which gives you guarantee of excellent quality combined with cheap prices for each and every house and garage plan you choose. Your house must be perfect, because it is more like that you will spend years there. It is rather hard to choose a house or a garage plan among thousands of excellent samples.

Posted by: custom house plans on April 6, 2004 03:11 PM

Today our site is able to book flights and fares from more than 450 airlines worldwide. Savings are not limited to airfares - discounted hotel and car rental rates are available too. Being the only professional resource, our site is successfully competing on air ticket market. Our cheap prices cash-desks are existing due to non-commercial aim. As you can see we don't overload our site with nonsense graphic features as some of similar sites do.

Posted by: cheap international airline tickets on April 6, 2004 04:05 PM

Quick cash-desk will help you to start traveling right now. Students and other privileged citizens will be able to by tickets on reduced prices. There is a handy system of discounts for your air travels. Ultimate air-travel resource is at your service.

Posted by: consolidator discount airline tickets on April 6, 2004 04:55 PM

Asked Questions (and Answers) about Contact Lenses.

Posted by: halloween contact lenses on April 6, 2004 05:44 PM

You will be pleasantly surprised with quantity of bonuses and prices for any class of airline tickets price. Besides of the cash-desk, you will receive an excellent service upon traveling insurance. The majority of our clients are business-class customers, so we guarantee excellent quality of service. See the cheapest tickets in links below. The structure is easy - the higher is the link - the lower price tickets you receive with the same quality.

Posted by: online airline tickets on April 6, 2004 06:32 PM

On the contrary - we do not use anything to make our plans expensive. The cheapest and the most exciting plans in internet are put in listings on our sites. Use links below, which will guide you through house plans catalogues.

Posted by: low country house plans on April 6, 2004 07:21 PM

Modified by the leading designers, this house and garage plans combine rich Victorian style design and all modern conveniences needed for cozy home.

Posted by: gothic victorian house plans on April 6, 2004 08:09 PM

The CCTV (Closed Circuit Television) is a modern technology used for visual surveillance designed to monitor all the variety of rooms, spaces and activities. CCTV is called a "closed circuit" because cameras and monitors are linked with a constant connection.

Posted by: cctv systems birmingham on April 6, 2004 09:00 PM

- Texas hold'em FAQ.

Posted by: texas holdem charts on April 6, 2004 09:53 PM

Internet users, who speak computer slang, use the ADWARE term to express the Advertising Supported Software. It's a convenient way of making money from a shareware product authors in other way, then selling it to users. A row of large media companies, who offer to put their banner on your site for exchange of free production usage as a revenue for banner sales.

Posted by: free spyware killer on April 6, 2004 10:46 PM

You will find complete information about contact lenses, colored contact lenses, prescriptions, online and usual shops and medical points of view. The articles on your right contain more in-depth, common information on contact lenses. In case if you are new to contact lenses, you may have many reasonable questions due to the subject: What should I do first? How can I understand the prescription?

Posted by: accuvue contact lenses on April 6, 2004 11:39 PM

Airline Tickets
Web Hosting Companies
Cheap Domain Names
Buy Mobile Phones
Buy Cheap Books
Cheap Levitra
Buy Viagra
Propecia
Cheapest Viagra
Buy Xenical
Buy Renova
Buy Ultram
Buy Valtrex
Buy Zyban
Link Exchange

Posted by: propecia on April 29, 2004 03:01 AM
Post a comment