blog.scriptdigital.com [Archives]

Emmanuel M Décarie's weblog on scripting.
Mostly PHP, Radio UserLand, Perl, Applescript and OS X.
RSS/XML Feed | scriptdigital.com | Picture | Search
Categories: AppleScript | BBEdit | Internet | Javascript | OS X | Perl | PHP | Python | Review | Radio UserLand
Technorati URL search for http://blog.scriptdigital.com.
Search Technorati for information relating to the URL or keyword of your choice.
... Original post: blog.scriptdigital.com: Emmanuel M Décarie's weblog on scripting. by at Daypop Search - filter replacement ...
Filter Replacement View Technorati URL search

AppleScript

Fri 14 Feb 2003

Bill Cheeseman: Notes on AppleScript in 10.2.4

[Via AppleScript Info]

Bill Cheeseman:

You can find some notes about changes in AppleScript in Mac OS X 10.2.4 at the MacScripter.net site and on the AppleScript Info blog. Here are some less interesting items, which I haven't seen mentioned elsewhere:

Mac OS X 10.2.4 includes a new copy of the Digital Hub Scripting OSAX. The old one is version 1.0 with creation and modification dates of 7/29/02. The new one is still version 1.0, but it has a modification date of 2/11/03. The dictionary is unchanged. I have no idea what, if anything, was changed internally.

Mac OS X 10.2.4 includes a whole bunch of new Apple System Profiler reporter modules, and System Profiler is upped from version 3.0 to 3.0.1. I see no changes in the dictionary. Most likely, nothing was changed relating to AppleScript.

Mac OS X 10.2.4 includes Finder 10.2.1, up from 10.2. I haven't yet taken the time to see whether there are any dictionary changes.

--

[email deleted]
Quechee Software, Quechee, Vermont, USA http://www.quecheesoftware.com
The AppleScript Sourcebook - http://www.AppleScriptSourcebook.com
Vermont Recipes - http://www.stepwise.com/Articles/
VermontRecipes Croquet Club of Vermont - http://members.valley.net/croquetvermont

More:
http://lists.apple.com/mhonarc/applescript-users/msg34425.html
http://lists.apple.com/mhonarc/applescript-users/msg34426.html

comments: 0

11:19AM EST [ /AppleScript/Updates | # ]

Fri 07 Feb 2003

Getting the Path to Eudora's Mail Folder

Here's a nice tip from Rob Jorgensen of AppleScript Info fame to get from Eudora the path to a mail folder. It was posted today to the Macintosh Scripting Systems list (aka MACSCRPT@LISTSERV.DARTMOUTH.EDU). As anyone that ever scripted Eudora, you can do a lot from AppleScript of Frontier/Radio, but its dictionnary is, to say the least, rather unconventional. Well this example is not so unconventional after all, it was just hard to guess...

I modifed slightly the original script.

tell application "Eudora" to set mailboxPath to (get file of mailbox 1) as string
tell application "Finder" to set mailFolderPath to (container of mailboxPath) as string

comments: 0

2:28AM EST [ /AppleScript/Eudora | # ]