<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: My First AppleScript Part 2: The AppleScript Dictionary</title>
	<atom:link href="http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/feed/" rel="self" type="application/rss+xml" />
	<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/</link>
	<description>TheAppleBlog, published by and for the day-to-day Apple user, is a prominent source for news, reviews, walkthroughs, and real life application of all Apple products.</description>
	<pubDate>Fri, 21 Nov 2008 13:24:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Adam  Olson</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-119370</link>
		<dc:creator>Adam  Olson</dc:creator>
		<pubDate>Fri, 08 Aug 2008 13:45:10 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-119370</guid>
		<description>Oh boy completely excited.  I just discovered the record button thanks to http://www.vtc.com/products/AppleScript-2006-tutorials.htm much quicker and easier way to record locations and have scripts written for locations in the Finder.  Just navigate to where you want in column view and then double click on the folder that you want to be the path.  I was able to run the script above first and then run record in a new applescript click on the folders and navigate to their location and then cut and paste the newly generated script to the bottom of the old one and it works.  Yeah!

property monitor_width : 1920
property monitor_height : 1200
set the startup_disk to (path to startup disk)
tell application "Finder"
	activate
	set visible of (every process whose visible is true and frontmost is false) ¬
		to false
	-- BOTTOM WINDOW
	set this_window to make new Finder window
	set the target of this_window to the startup_disk
	set the bounds of this_window to {0, (monitor_height * 0.55) div 1, ¬
		monitor_width, monitor_height}
	set the current view of this_window to column view
	
end tell
set display_x_size to 6000

set cur_app to (path to frontmost application as Unicode text)

tell application cur_app
	tell front window
		set {x1, y1, x2, y2} to (get bounds)
		set win_width to (x2 - x1)
		set room_right to (display_x_size - x2)
		if room_right &#62; win_width then
			set x1 to (x1 + win_width)
			set x2 to (x2 + win_width)
		else
			set x2 to display_x_size
			set x1 to (display_x_size - win_width)
		end if
		set bounds to {x1, y1, x2, y2}
	end tell
end tell
set the startup_disk to (path to startup disk)
tell application "Finder"
	activate
	set visible of (every process whose visible is true and frontmost is false) ¬
		to false
	
	-- TOP WINDOW
	set this_window to make new Finder window
	set the target of this_window to the startup_disk
	set the bounds of this_window to {0, (monitor_height * 0.036) div 1, ¬
		monitor_width, (monitor_height * 0.53) div 1}
	set the current view of this_window to column view
end tell
set display_x_size to 6000

set cur_app to (path to frontmost application as Unicode text)

tell application cur_app
	tell front window
		set {x1, y1, x2, y2} to (get bounds)
		set win_width to (x2 - x1)
		set room_right to (display_x_size - x2)
		if room_right &#62; win_width then
			set x1 to (x1 + win_width)
			set x2 to (x2 + win_width)
		else
			set x2 to display_x_size
			set x1 to (display_x_size - win_width)
		end if
		set bounds to {x1, y1, x2, y2}
	end tell
end tell
tell application "Finder"
	activate
	select Finder window 1
	set target of Finder window 1 to folder "Desktop" of folder "adamwolson" of folder "Users" of startup disk
	set current view of Finder window 1 to list view
	select Finder window 2
	set target of Finder window 1 to folder "Tutorial Sections" of folder "UCD Thesis" of folder "Personal Documents" of folder "Documents" of folder "My Files" of disk "Media 1TB"
	set current view of Finder window 1 to list view
end tell</description>
		<content:encoded><![CDATA[<p>Oh boy completely excited.  I just discovered the record button thanks to <a href="http://www.vtc.com/products/AppleScript-2006-tutorials.htm" rel="nofollow">http://www.vtc.com/products/AppleScript-2006-tutorials.htm</a> much quicker and easier way to record locations and have scripts written for locations in the Finder.  Just navigate to where you want in column view and then double click on the folder that you want to be the path.  I was able to run the script above first and then run record in a new applescript click on the folders and navigate to their location and then cut and paste the newly generated script to the bottom of the old one and it works.  Yeah!</p>
<p>property monitor_width : 1920<br />
property monitor_height : 1200<br />
set the startup_disk to (path to startup disk)<br />
tell application &#8220;Finder&#8221;<br />
	activate<br />
	set visible of (every process whose visible is true and frontmost is false) ¬<br />
		to false<br />
	&#8211; BOTTOM WINDOW<br />
	set this_window to make new Finder window<br />
	set the target of this_window to the startup_disk<br />
	set the bounds of this_window to {0, (monitor_height * 0.55) div 1, ¬<br />
		monitor_width, monitor_height}<br />
	set the current view of this_window to column view</p>
<p>end tell<br />
set display_x_size to 6000</p>
<p>set cur_app to (path to frontmost application as Unicode text)</p>
<p>tell application cur_app<br />
	tell front window<br />
		set {x1, y1, x2, y2} to (get bounds)<br />
		set win_width to (x2 - x1)<br />
		set room_right to (display_x_size - x2)<br />
		if room_right &gt; win_width then<br />
			set x1 to (x1 + win_width)<br />
			set x2 to (x2 + win_width)<br />
		else<br />
			set x2 to display_x_size<br />
			set x1 to (display_x_size - win_width)<br />
		end if<br />
		set bounds to {x1, y1, x2, y2}<br />
	end tell<br />
end tell<br />
set the startup_disk to (path to startup disk)<br />
tell application &#8220;Finder&#8221;<br />
	activate<br />
	set visible of (every process whose visible is true and frontmost is false) ¬<br />
		to false</p>
<p>	&#8211; TOP WINDOW<br />
	set this_window to make new Finder window<br />
	set the target of this_window to the startup_disk<br />
	set the bounds of this_window to {0, (monitor_height * 0.036) div 1, ¬<br />
		monitor_width, (monitor_height * 0.53) div 1}<br />
	set the current view of this_window to column view<br />
end tell<br />
set display_x_size to 6000</p>
<p>set cur_app to (path to frontmost application as Unicode text)</p>
<p>tell application cur_app<br />
	tell front window<br />
		set {x1, y1, x2, y2} to (get bounds)<br />
		set win_width to (x2 - x1)<br />
		set room_right to (display_x_size - x2)<br />
		if room_right &gt; win_width then<br />
			set x1 to (x1 + win_width)<br />
			set x2 to (x2 + win_width)<br />
		else<br />
			set x2 to display_x_size<br />
			set x1 to (display_x_size - win_width)<br />
		end if<br />
		set bounds to {x1, y1, x2, y2}<br />
	end tell<br />
end tell<br />
tell application &#8220;Finder&#8221;<br />
	activate<br />
	select Finder window 1<br />
	set target of Finder window 1 to folder &#8220;Desktop&#8221; of folder &#8220;adamwolson&#8221; of folder &#8220;Users&#8221; of startup disk<br />
	set current view of Finder window 1 to list view<br />
	select Finder window 2<br />
	set target of Finder window 1 to folder &#8220;Tutorial Sections&#8221; of folder &#8220;UCD Thesis&#8221; of folder &#8220;Personal Documents&#8221; of folder &#8220;Documents&#8221; of folder &#8220;My Files&#8221; of disk &#8220;Media 1TB&#8221;<br />
	set current view of Finder window 1 to list view<br />
end tell</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam  Olson</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-119359</link>
		<dc:creator>Adam  Olson</dc:creator>
		<pubDate>Fri, 08 Aug 2008 01:59:43 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-119359</guid>
		<description>For example I can get this path to run by itself

tell application "Finder" to open desktop

and the second window I want to open the following path which I can get to run by itself but I want both windows to open in the specified size like the preveous script does.

tell application "Finder" to open folder "Media 1TB:My Files:Documents:Personal Documents:UCD Thesis"

Thanks for any help on the matter!</description>
		<content:encoded><![CDATA[<p>For example I can get this path to run by itself</p>
<p>tell application &#8220;Finder&#8221; to open desktop</p>
<p>and the second window I want to open the following path which I can get to run by itself but I want both windows to open in the specified size like the preveous script does.</p>
<p>tell application &#8220;Finder&#8221; to open folder &#8220;Media 1TB:My Files:Documents:Personal Documents:UCD Thesis&#8221;</p>
<p>Thanks for any help on the matter!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam  Olson</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-119358</link>
		<dc:creator>Adam  Olson</dc:creator>
		<pubDate>Fri, 08 Aug 2008 01:57:07 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-119358</guid>
		<description>Is there a way to modify this script that I have been piecing together to make it open a specific path in the two windows so it will always open two folders I transfer files between regularly?

This script sets up two windows to open and then moves them to my second 23" monitor.

property monitor_width : 1920
property monitor_height : 1200
set the startup_disk to (path to startup disk)
tell application "Finder"
	activate
	set visible of (every process whose visible is true and frontmost is false) ¬
		to false
	-- BOTTOM WINDOW
	set this_window to make new Finder window
	set the target of this_window to the startup_disk
	tell application "Finder" to open desktop
	set the bounds of this_window to {0, (monitor_height * 0.55) div 1, ¬
		monitor_width, monitor_height}
	set the current view of this_window to column view
	
end tell
set display_x_size to 6000

set cur_app to (path to frontmost application as Unicode text)

tell application cur_app
	tell front window
		set {x1, y1, x2, y2} to (get bounds)
		set win_width to (x2 - x1)
		set room_right to (display_x_size - x2)
		if room_right &#62; win_width then
			set x1 to (x1 + win_width)
			set x2 to (x2 + win_width)
		else
			set x2 to display_x_size
			set x1 to (display_x_size - win_width)
		end if
		set bounds to {x1, y1, x2, y2}
	end tell
end tell
set the startup_disk to (path to startup disk)
tell application "Finder"
	activate
	set visible of (every process whose visible is true and frontmost is false) ¬
		to false
	
	-- TOP WINDOW
	set this_window to make new Finder window
	set the target of this_window to the startup_disk
	set the bounds of this_window to {0, (monitor_height * 0.036) div 1, ¬
		monitor_width, (monitor_height * 0.53) div 1}
	set the current view of this_window to column view
end tell
set display_x_size to 6000

set cur_app to (path to frontmost application as Unicode text)

tell application cur_app
	tell front window
		set {x1, y1, x2, y2} to (get bounds)
		set win_width to (x2 - x1)
		set room_right to (display_x_size - x2)
		if room_right &#62; win_width then
			set x1 to (x1 + win_width)
			set x2 to (x2 + win_width)
		else
			set x2 to display_x_size
			set x1 to (display_x_size - win_width)
		end if
		set bounds to {x1, y1, x2, y2}
	end tell
end tell</description>
		<content:encoded><![CDATA[<p>Is there a way to modify this script that I have been piecing together to make it open a specific path in the two windows so it will always open two folders I transfer files between regularly?</p>
<p>This script sets up two windows to open and then moves them to my second 23&#8243; monitor.</p>
<p>property monitor_width : 1920<br />
property monitor_height : 1200<br />
set the startup_disk to (path to startup disk)<br />
tell application &#8220;Finder&#8221;<br />
	activate<br />
	set visible of (every process whose visible is true and frontmost is false) ¬<br />
		to false<br />
	&#8211; BOTTOM WINDOW<br />
	set this_window to make new Finder window<br />
	set the target of this_window to the startup_disk<br />
	tell application &#8220;Finder&#8221; to open desktop<br />
	set the bounds of this_window to {0, (monitor_height * 0.55) div 1, ¬<br />
		monitor_width, monitor_height}<br />
	set the current view of this_window to column view</p>
<p>end tell<br />
set display_x_size to 6000</p>
<p>set cur_app to (path to frontmost application as Unicode text)</p>
<p>tell application cur_app<br />
	tell front window<br />
		set {x1, y1, x2, y2} to (get bounds)<br />
		set win_width to (x2 - x1)<br />
		set room_right to (display_x_size - x2)<br />
		if room_right &gt; win_width then<br />
			set x1 to (x1 + win_width)<br />
			set x2 to (x2 + win_width)<br />
		else<br />
			set x2 to display_x_size<br />
			set x1 to (display_x_size - win_width)<br />
		end if<br />
		set bounds to {x1, y1, x2, y2}<br />
	end tell<br />
end tell<br />
set the startup_disk to (path to startup disk)<br />
tell application &#8220;Finder&#8221;<br />
	activate<br />
	set visible of (every process whose visible is true and frontmost is false) ¬<br />
		to false</p>
<p>	&#8211; TOP WINDOW<br />
	set this_window to make new Finder window<br />
	set the target of this_window to the startup_disk<br />
	set the bounds of this_window to {0, (monitor_height * 0.036) div 1, ¬<br />
		monitor_width, (monitor_height * 0.53) div 1}<br />
	set the current view of this_window to column view<br />
end tell<br />
set display_x_size to 6000</p>
<p>set cur_app to (path to frontmost application as Unicode text)</p>
<p>tell application cur_app<br />
	tell front window<br />
		set {x1, y1, x2, y2} to (get bounds)<br />
		set win_width to (x2 - x1)<br />
		set room_right to (display_x_size - x2)<br />
		if room_right &gt; win_width then<br />
			set x1 to (x1 + win_width)<br />
			set x2 to (x2 + win_width)<br />
		else<br />
			set x2 to display_x_size<br />
			set x1 to (display_x_size - win_width)<br />
		end if<br />
		set bounds to {x1, y1, x2, y2}<br />
	end tell<br />
end tell</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peg</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-111432</link>
		<dc:creator>Peg</dc:creator>
		<pubDate>Tue, 30 Oct 2007 21:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-111432</guid>
		<description>Great tip.

Anyone knows how to write a script to for InDesign to state the x and y coordinates of the top left corner of a frame (both text and picture frames)?

P</description>
		<content:encoded><![CDATA[<p>Great tip.</p>
<p>Anyone knows how to write a script to for InDesign to state the x and y coordinates of the top left corner of a frame (both text and picture frames)?</p>
<p>P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-105456</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Mon, 14 May 2007 07:33:04 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-105456</guid>
		<description>nice the second part was even better thanks again</description>
		<content:encoded><![CDATA[<p>nice the second part was even better thanks again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jean</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-61285</link>
		<dc:creator>Jean</dc:creator>
		<pubDate>Fri, 25 Aug 2006 03:54:12 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-61285</guid>
		<description>Thanks all for the replies.

 It's working now :)


J</description>
		<content:encoded><![CDATA[<p>Thanks all for the replies.</p>
<p> It&#8217;s working now <img src='http://theappleblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>J</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Evan</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60997</link>
		<dc:creator>Evan</dc:creator>
		<pubDate>Mon, 21 Aug 2006 06:33:48 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60997</guid>
		<description>This worked for me:

open folder "macintosh hd:applications"

My Applications folder is not in the home folder, but in Macintosh HD (name of drive).</description>
		<content:encoded><![CDATA[<p>This worked for me:</p>
<p>open folder &#8220;macintosh hd:applications&#8221;</p>
<p>My Applications folder is not in the home folder, but in Macintosh HD (name of drive).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RJ</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60955</link>
		<dc:creator>RJ</dc:creator>
		<pubDate>Sun, 20 Aug 2006 17:26:44 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60955</guid>
		<description> i believe "Home:Applications" would indicate an Applications folder inside the Home directory. this would be in addition to the root level Applications folder.

however, i cannot get an Applescript to function using this : filepath notation. i continually get "Finder got an error: Can’t get folder" no matter what i try.  </description>
		<content:encoded><![CDATA[<p> i believe &#8220;Home:Applications&#8221; would indicate an Applications folder inside the Home directory. this would be in addition to the root level Applications folder.</p>
<p>however, i cannot get an Applescript to function using this : filepath notation. i continually get &#8220;Finder got an error: Can’t get folder&#8221; no matter what i try.  </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60929</link>
		<dc:creator>Ken</dc:creator>
		<pubDate>Sun, 20 Aug 2006 09:01:41 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60929</guid>
		<description>@Jean

Try - 

open folder "Applications" of startup disk

instead of 

open folder "Home:Applications"</description>
		<content:encoded><![CDATA[<p>@Jean</p>
<p>Try - </p>
<p>open folder &#8220;Applications&#8221; of startup disk</p>
<p>instead of </p>
<p>open folder &#8220;Home:Applications&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jean</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60861</link>
		<dc:creator>Jean</dc:creator>
		<pubDate>Fri, 18 Aug 2006 18:08:38 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60861</guid>
		<description>Hi,


I copied the script but always get an error saying:

Error in Finder: impossible to obtain folder  "Home:Applications".


I tried other folders inside home but to no avail.


Any help would be appreciated



Using Script Editor 2.1.1. / 10.4.7.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I copied the script but always get an error saying:</p>
<p>Error in Finder: impossible to obtain folder  &#8220;Home:Applications&#8221;.</p>
<p>I tried other folders inside home but to no avail.</p>
<p>Any help would be appreciated</p>
<p>Using Script Editor 2.1.1. / 10.4.7.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60786</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 17 Aug 2006 14:40:17 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60786</guid>
		<description>Are there any simple scripts that does back ups to a specific folders?  I'd like to toy around with that after my backup software eats some of my addresses.

Thanks</description>
		<content:encoded><![CDATA[<p>Are there any simple scripts that does back ups to a specific folders?  I&#8217;d like to toy around with that after my backup software eats some of my addresses.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Guthrie</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60519</link>
		<dc:creator>Jason Guthrie</dc:creator>
		<pubDate>Tue, 15 Aug 2006 00:45:38 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60519</guid>
		<description>Interesting question AS.  I've never done it before, but I don't see why it couldn't be done.  I'll look into it.

In the meantime, have you looked into using IMAP instead of POP?  IMAP enables you to do exactly what you're talking about.  And from within Mail you can even download and 'synch' a local copy of your IMAP folders so that just in case your IMAP server fails, you still have a local copy.</description>
		<content:encoded><![CDATA[<p>Interesting question AS.  I&#8217;ve never done it before, but I don&#8217;t see why it couldn&#8217;t be done.  I&#8217;ll look into it.</p>
<p>In the meantime, have you looked into using IMAP instead of POP?  IMAP enables you to do exactly what you&#8217;re talking about.  And from within Mail you can even download and &#8217;synch&#8217; a local copy of your IMAP folders so that just in case your IMAP server fails, you still have a local copy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AS</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60502</link>
		<dc:creator>AS</dc:creator>
		<pubDate>Mon, 14 Aug 2006 20:32:43 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60502</guid>
		<description>Thank you Jason for an interesting article. Here's a question. Can Applescript do this? I have a Pop account in Mail but with multiple computers. I've set Mail to delete from the Server as soon as email is checked. However, every once in a while, there is an email I want to put back on the server so that it can be accessed from another computer. Is there an Applescript that can be written so that it tells the computer than when I mark an email as "unread" it goes back to the server as unread (so that next time someone checks email, including from another computer, the email will be downloaded for them as "new"). I hope this makes sense. Thanks.</description>
		<content:encoded><![CDATA[<p>Thank you Jason for an interesting article. Here&#8217;s a question. Can Applescript do this? I have a Pop account in Mail but with multiple computers. I&#8217;ve set Mail to delete from the Server as soon as email is checked. However, every once in a while, there is an email I want to put back on the server so that it can be accessed from another computer. Is there an Applescript that can be written so that it tells the computer than when I mark an email as &#8220;unread&#8221; it goes back to the server as unread (so that next time someone checks email, including from another computer, the email will be downloaded for them as &#8220;new&#8221;). I hope this makes sense. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Guthrie</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60485</link>
		<dc:creator>Jason Guthrie</dc:creator>
		<pubDate>Mon, 14 Aug 2006 16:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60485</guid>
		<description>Great idea - thanks!  I went ahead and added a screenshot of my desktop after I login.</description>
		<content:encoded><![CDATA[<p>Great idea - thanks!  I went ahead and added a screenshot of my desktop after I login.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fabien.</title>
		<link>http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60483</link>
		<dc:creator>fabien.</dc:creator>
		<pubDate>Mon, 14 Aug 2006 15:15:44 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2006/08/14/my-first-applescript-part-2-the-applescript-dictionary/#comment-60483</guid>
		<description>Nice tutorial. I'd be good to have a screenshot of the way your desktop looks at startup now.</description>
		<content:encoded><![CDATA[<p>Nice tutorial. I&#8217;d be good to have a screenshot of the way your desktop looks at startup now.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
