<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Doug&#039;s AppleScripts for iTunes &#187; Bugs</title>
	<atom:link href="http://dougscripts.com/itunes/category/bugs/feed/" rel="self" type="application/rss+xml" />
	<link>http://dougscripts.com</link>
	<description>AppleScripts for iTunes</description>
	<lastBuildDate>Thu, 09 Feb 2012 15:10:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='dougscripts.com' port='80' path='/itunes/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Thousands of Empty Playlists?</title>
		<link>http://dougscripts.com/itunes/2011/12/thousands-of-empty-playlists/</link>
		<comments></comments>
		<pubDate>Thu, 08 Dec 2011 20:37:39 +0000</pubDate>
		<dc:creator>dougscripts</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[iTunes Match]]></category>

		<guid isPermaLink="false">http://dougscripts.com/itunes/?p=1443</guid>
		<description><![CDATA[I&#8217;ve been hearing of an iTunes Match glitch that somehow or another creates thousands of empty playlists. Here&#8217;s a script that will delete every empty playlist:

tell application &#8220;iTunes&#8221;
	set y to (get index of last user playlist)
	repeat with i from y to 1 by -1
		try
			set thisPlaylist to user playlist i
			if special kind of thisPlaylist is none [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been hearing of an iTunes Match glitch that somehow or another creates thousands of empty playlists. Here&#8217;s a script that will delete every empty playlist:</p>
<div class="upmproto">
<p style="margin: 0.0px 0.0px 0.0px 41.6px; text-indent: -41.6px; font: 12.0px Verdana"><b>tell</b> <span style="color: #4300ff"><i>application</i></span> &#8220;iTunes&#8221;</p>
<p style="margin: 0.0px 0.0px 0.0px 83.2px; text-indent: -83.2px; font: 12.0px Verdana"><span style="white-space:pre">	</span><b>set</b> <span style="color: #269900">y</span> <b>to</b> (<b>get</b> <span style="color: #9500e4">index</span> <b>of</b> <b>last</b> <span style="color: #4300ff"><i>user playlist</i></span>)</p>
<p style="margin: 0.0px 0.0px 0.0px 83.2px; text-indent: -83.2px; font: 12.0px Verdana"><span style="white-space:pre">	</span><b>repeat</b> <b>with</b> <span style="color: #269900">i</span> <b>from</b> <span style="color: #269900">y</span> <b>to</b> 1 <b>by</b> -1</p>
<p style="margin: 0.0px 0.0px 0.0px 124.8px; text-indent: -124.9px; font: 12.0px Verdana"><span style="white-space:pre">	</span><span style="white-space:pre">	</span><b>try</b></p>
<p style="margin: 0.0px 0.0px 0.0px 166.5px; text-indent: -166.5px; font: 12.0px Verdana; color: #4300ff"><span style="color: #000000"><span style="white-space:pre">	</span><span style="white-space:pre">	</span><span style="white-space:pre">	</span><b>set</b> </span><span style="color: #269900">thisPlaylist</span><span style="color: #000000"> <b>to</b> </span><i>user playlist</i><span style="color: #000000"> </span><span style="color: #269900">i</span></p>
<p style="margin: 0.0px 0.0px 0.0px 166.5px; text-indent: -166.5px; font: 12.0px Verdana"><span style="white-space:pre">	</span><span style="white-space:pre">	</span><span style="white-space:pre">	</span><b>if</b> <span style="color: #9500e4">special kind</span> <b>of</b> <span style="color: #269900">thisPlaylist</span> <b>is</b> <span style="color: #690097">none</span> <b>then</b></p>
<p style="margin: 0.0px 0.0px 0.0px 208.1px; text-indent: -208.2px; font: 12.0px Verdana"><span style="white-space:pre">	</span><span style="white-space:pre">	</span><span style="white-space:pre">	</span><span style="white-space:pre">	</span><b>if</b> <b>not</b> (<span style="color: #4300ff"><b>exists</b></span> <span style="color: #4300ff"><i>track</i></span> 1 <b>of</b> <span style="color: #269900">thisPlaylist</span>) <b>then</b></p>
<p style="margin: 0.0px 0.0px 0.0px 249.8px; text-indent: -249.8px; font: 12.0px Verdana; color: #269900"><span style="color: #000000"><span style="white-space:pre">	</span><span style="white-space:pre">	</span><span style="white-space:pre">	</span><span style="white-space:pre">	</span><span style="white-space:pre">	</span></span><span style="color: #4300ff"><b>delete</b></span><span style="color: #000000"> </span>thisPlaylist</p>
<p style="margin: 0.0px 0.0px 0.0px 208.1px; text-indent: -208.2px; font: 12.0px Verdana"><span style="white-space:pre">	</span><span style="white-space:pre">	</span><span style="white-space:pre">	</span><span style="white-space:pre">	</span><b>end</b> <b>if</b></p>
<p style="margin: 0.0px 0.0px 0.0px 166.5px; text-indent: -166.5px; font: 12.0px Verdana"><span style="white-space:pre">	</span><span style="white-space:pre">	</span><span style="white-space:pre">	</span><b>end</b> <b>if</b></p>
<p style="margin: 0.0px 0.0px 0.0px 124.8px; text-indent: -124.9px; font: 12.0px Verdana"><span style="white-space:pre">	</span><span style="white-space:pre">	</span><b>end</b> <b>try</b></p>
<p style="margin: 0.0px 0.0px 0.0px 83.2px; text-indent: -83.2px; font: 12.0px Verdana"><span style="white-space:pre">	</span><b>end</b> <b>repeat</b></p>
<p style="margin: 0.0px 0.0px 0.0px 41.6px; text-indent: -41.6px; font: 12.0px Verdana"><b>end</b> <b>tell</b></p>
<p><a href="applescript://com.apple.scripteditor?action=new&#038;script=tell%20application%20%22iTunes%22%0D%09set%20y%20to%20(get%20index%20of%20last%20user%20playlist)%0D%09repeat%20with%20i%20from%20y%20to%201%20by%20-1%0D%09%09try%0D%09%09%09set%20thisPlaylist%20to%20user%20playlist%20i%0D%09%09%09if%20special%20kind%20of%20thisPlaylist%20is%20none%20then%0D%09%09%09%09if%20not%20(exists%20track%201%20of%20thisPlaylist)%20then%0D%09%09%09%09%09delete%20thisPlaylist%0D%09%09%09%09end%20if%0D%09%09%09end%20if%0D%09%09end%20try%0D%09end%20repeat%0Dend%20tell" title="Click to open in AppleScript Editor. Works via most modern Mac browsers."><img src="http://dougscripts.com/itunes/pix/clickscriptsmall.jpg" alt="" /></a>
</div>
<p>It may time-out because the number of actions it has to perform is so large. Just run it until the empties are gone.</p>
<hr/><small><a href="http://dougscripts.com/itunes/dougsupdated.rss" title="Take me to your reader">30 Most Recent RSS Feed</a> | <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Script Stats Page</a> by <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Name</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Most Recent&op=y">Most Recent</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Download Count&op=y">Download Count</a></small>]]></content:encoded>
			</item>
		<item>
		<title>Artwork-Related Scripting Bug Follow-Up</title>
		<link>http://dougscripts.com/itunes/2011/03/artwork-related-scripting-bug-follow-up/</link>
		<comments></comments>
		<pubDate>Thu, 17 Mar 2011 16:03:01 +0000</pubDate>
		<dc:creator>dougscripts</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Managing Artwork]]></category>

		<guid isPermaLink="false">http://dougscripts.com/itunes/?p=1244</guid>
		<description><![CDATA[Not long ago I posted about a possible bug introduced with iTunes 10.2 regarding reading PICT file data for use as track artwork (Possible Artwork-Related Scripting Bug in iTunes 10.2?). Essentially, a tried-and-true AppleScript routine for importing PICT image data fails in iTunes 10.2. After some investigation, it turns out that iTunes 10.2 now uses [...]]]></description>
			<content:encoded><![CDATA[<p>Not long ago I posted about a possible bug introduced with iTunes 10.2 regarding reading PICT file data for use as track artwork (<a href="http://dougscripts.com/itunes/2011/03/possible-artwork-related-scripting-bug-in-itunes-10-2/">Possible Artwork-Related Scripting Bug in iTunes 10.2?</a>). Essentially, a tried-and-true AppleScript routine for importing PICT image data fails in iTunes 10.2. After some investigation, it turns out that iTunes 10.2 now uses ImageIO for all image handling instead of QuickTime and the ImageIO framework no longer supports PICT files. No one should really be surprised since the PICT format has largely been deprecated. But even so, until recently, PICT was still supported in iTunes.</p>
<p>So it&#8217;s not a bug but a <em>side effect of modernity</em>.</p>
<p>The fix for iTunes 10.2 and above is to simply read in the data from a PNG or JPEG file:</p>
<pre style="margin-bottom:1em;">
<b>tell</b> <span style="color:blue;">application</span> "iTunes" <b>to</b> <b>set</b> <span style="color:purple;">data</span> <b>of</b> <span style="color:blue;">artwork</span> 1 <b>of</b> <span style="color:green;">theTrack</span> <b>to</b> (<span style="color:blue;"><b>read</b></span> (<span style="color:blue;">file</span> <span style="color:green;">targetImageFile</span>) <span style="color:blue;">as</span> <span style="color:blue;">picture</span>)
</pre>
<p>Where <em>theTrack</em> is a reference to a <strong>file track</strong> in iTunes and <em>targetImageFile</em> is the path to a valid PNG or JPEG image file.</p>
<p>A couple of my scripts that need the fix will be posted later today.</p>
<hr/><small><a href="http://dougscripts.com/itunes/dougsupdated.rss" title="Take me to your reader">30 Most Recent RSS Feed</a> | <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Script Stats Page</a> by <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Name</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Most Recent&op=y">Most Recent</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Download Count&op=y">Download Count</a></small>]]></content:encoded>
			</item>
		<item>
		<title>Possible Artwork-Related Scripting Bug in iTunes 10.2?</title>
		<link>http://dougscripts.com/itunes/2011/03/possible-artwork-related-scripting-bug-in-itunes-10-2/</link>
		<comments></comments>
		<pubDate>Mon, 07 Mar 2011 16:09:34 +0000</pubDate>
		<dc:creator>dougscripts</dc:creator>
				<category><![CDATA[Bugs]]></category>

		<guid isPermaLink="false">http://dougscripts.com/itunes/?p=1236</guid>
		<description><![CDATA[Several users have reported, and I can verify, that an AppleScript routine used to apply image data to a track as artwork fails with an error -206 when used on iTunes 10.2. Essentially, the error is tripped when the following code&#8211;or similar&#8211;is run; theTrack is a reference to an iTunes file track and thePictFile is [...]]]></description>
			<content:encoded><![CDATA[<p>Several users have reported, and I can verify, that an AppleScript routine used to apply image data to a track as artwork fails with an error -206 when used on iTunes 10.2. Essentially, the error is tripped when the following code&#8211;or similar&#8211;is run; <em>theTrack</em> is a reference to an iTunes file track and <em>thePictFile</em> is a valid PICT image file:</p>
<pre style="margin-bottom:1em;">
<b>set</b> <span style="color:purple;">data</span> <b>of</b> <span style="color:blue;">artwork</span> 1 <b>of</b> <span style="color:green;">theTrack</span> <b>to</b> (<span style="color:blue;"><b>read</b></span> (<span style="color:green;">thePictFile</span> <b>as</b> <span style="color:blue;">alias</span>) <span style="color:blue;">from</span> 513 <span style="color:blue;">as</span> <span style="color:blue;">picture</span>)
</pre>
<p>There are a couple a scripts here that use a variation of that (<a href="http://dougscripts.com/itunes/scripts/ss.php?sp=reapplydownsized" title="Resample selected tracks' artwork to user-set size limit">Re-Apply Downsized Artwork</a> is one) and thus they will error when run with iTunes 10.2. The snippet works fine in versions before 10.2. I can use it on v10.1.2, for example. It <em>might</em> be a bug so I&#8217;ll keep my eye on this.</p>
<hr/><small><a href="http://dougscripts.com/itunes/dougsupdated.rss" title="Take me to your reader">30 Most Recent RSS Feed</a> | <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Script Stats Page</a> by <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Name</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Most Recent&op=y">Most Recent</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Download Count&op=y">Download Count</a></small>]]></content:encoded>
			</item>
		<item>
		<title>Fix a iOS Sorting Anomaly</title>
		<link>http://dougscripts.com/itunes/2011/01/fix-a-ios-sorting-anomaly/</link>
		<comments></comments>
		<pubDate>Tue, 11 Jan 2011 18:05:52 +0000</pubDate>
		<dc:creator>dougscripts</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Managing Track Info]]></category>
		<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://dougscripts.com/itunes/?p=1198</guid>
		<description><![CDATA[Correspondent Roy Gatsby brought this GigaOM article to my attention which discusses a supposed bug in the latest iOS regarding the sorting of TV Shows on iOS devices. Apparently, non-iTunes Store TV Show episodes may not sort correctly if the Artist is not also the Show name. The recommended fix, therefore, is to open up [...]]]></description>
			<content:encoded><![CDATA[<p>Correspondent Roy Gatsby brought <a href="http://gigaom.com/apple/quick-fix-sorting-tv-shows-on-ios-devices/">this GigaOM article</a> to my attention which discusses a supposed bug in the latest iOS regarding the sorting of TV Shows on iOS devices. Apparently, non-iTunes Store TV Show episodes may not sort correctly if the Artist is not also the Show name. The recommended fix, therefore, is to open up a track&#8217;s Get Info window and manually copy the <strong>Show</strong> tag text and paste it to the <strong>Artist</strong> tag.</p>
<p>Wait. <em>Manually?</em></p>
<p>I recommend using the &#8220;Put This in That&#8221; script from the <a href="http://dougscripts.com/itunes/scripts/ss.php?sp=thistagthattag" title="Four scripts assist with swapping, copying, appending data between track tags">This Tag, That Tag Scripts</a> collection. It will allow you to copy <strong>Show</strong> to <strong>Artist</strong> on a batch of selected tracks.</p>
<p>By the way, changing the Artist tag does not compel iTunes to change the location of the TV Show file since iTunes does not organize TV Shows in the iTunes Media folder by the Artist tag as it does with Music files.</p>
<hr/><small><a href="http://dougscripts.com/itunes/dougsupdated.rss" title="Take me to your reader">30 Most Recent RSS Feed</a> | <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Script Stats Page</a> by <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Name</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Most Recent&op=y">Most Recent</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Download Count&op=y">Download Count</a></small>]]></content:encoded>
			</item>
		<item>
		<title>iTunes 10 Breakage (Nothing Serious)</title>
		<link>http://dougscripts.com/itunes/2010/09/itunes-10-breakage-nothing-serious/</link>
		<comments></comments>
		<pubDate>Thu, 02 Sep 2010 16:03:47 +0000</pubDate>
		<dc:creator>dougscripts</dc:creator>
				<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[iTunes 10]]></category>

		<guid isPermaLink="false">http://dougscripts.com/itunes/?p=1069</guid>
		<description><![CDATA[Some AppleScripts from this site use a routine that checks for the version of iTunes you are running. Some of the scripts that use these routines are broken under iTunes 10. So when running a script with iTunes 10.0 you may run into a dialog that erroneously reports something like &#8220;This script requires iTunes 6.0.2 [...]]]></description>
			<content:encoded><![CDATA[<p>Some AppleScripts from this site use a routine that checks for the version of iTunes you are running. Some of the scripts that use these routines are broken under iTunes 10. So when running a script with iTunes 10.0 you may run into a dialog that erroneously reports something like &#8220;This script requires iTunes 6.0.2 or better&#8221;. This is <em>not</em> a bug in iTunes, but a problem with the way the script does the version check. (Long story short: the version number once was a number, but more modern versions of apps use a string. Thus &#8220;10.0&#8243; is not necessarily greater than &#8220;9.2.1&#8243; and the routine fails to accommodate this.) You can edit/comment out the version check routine yourself or wait until I get around to fixing the handful or so scripts that are affected. In that case, let me know if you see the error.</p>
<hr/><small><a href="http://dougscripts.com/itunes/dougsupdated.rss" title="Take me to your reader">30 Most Recent RSS Feed</a> | <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Script Stats Page</a> by <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Name</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Most Recent&op=y">Most Recent</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Download Count&op=y">Download Count</a></small>]]></content:encoded>
			</item>
		<item>
		<title>Scripting Bug with iTunes 9.2.1?</title>
		<link>http://dougscripts.com/itunes/2010/07/scripting-bug-with-itunes-9-2-1/</link>
		<comments></comments>
		<pubDate>Sun, 25 Jul 2010 12:28:05 +0000</pubDate>
		<dc:creator>dougscripts</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[iTunes9]]></category>

		<guid isPermaLink="false">http://dougscripts.com/itunes/?p=1047</guid>
		<description><![CDATA[I have received two reports over the past couple of days of some unusual behavior that occurs with iTunes 9.2.1 and some AppleScripts. After running a script that changes the track name tag, the track&#8217;s Genre tag is replaced with a number in parentheses, eg, &#8220;(10)&#8221;. In such cases, it appears that this is a [...]]]></description>
			<content:encoded><![CDATA[<p>I have received two reports over the past couple of days of some unusual behavior that occurs with iTunes 9.2.1 and some AppleScripts. After running a script that changes the track name tag, the track&#8217;s Genre tag is replaced with a number in parentheses, eg, &#8220;(10)&#8221;. In such cases, it appears that this is a number representing the specific Genre, such that Rock = 30, Jazz = 10, and so on. Like this:</p>
<p style="text-align:center;"><img src="http://dougscripts.com/itunes/pix/921genrebug.png" /></p>
<p>Each report involved a different script which until now presented no problems. Experience suggests that this is not an issue with the scripts (since nothing about the script has changed) but with iTunes.</p>
<p>I have not seen this behavior myself, but I have not yet done any rigorous testing. Since I have only received two reports at this point my guess is that this may be a problem with something else <em>and</em> iTunes; a misconfigured plug-in or background app. But that may be wishful thinking and the problem may indeed just belong to iTunes.</p>
<p>If you have seen any behavior like this please let me know as soon as you can. I&#8217;d like as much information as possible before I test and eventually report this to Apple.</p>
<p>[<strong>UPDATE</strong>: see <a href="http://dougscripts.com/itunes/2010/07/re-scripting-bug-with-itunes-9-2-1/">here for the fix</a>.]</p>
<hr/><small><a href="http://dougscripts.com/itunes/dougsupdated.rss" title="Take me to your reader">30 Most Recent RSS Feed</a> | <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Script Stats Page</a> by <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Name</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Most Recent&op=y">Most Recent</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Download Count&op=y">Download Count</a></small>]]></content:encoded>
			</item>
		<item>
		<title>Join Together v6.0 Bug Reports</title>
		<link>http://dougscripts.com/itunes/2010/04/join-together-v6-0-bug-reports/</link>
		<comments></comments>
		<pubDate>Sat, 03 Apr 2010 11:35:41 +0000</pubDate>
		<dc:creator>dougscripts</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Join Together]]></category>

		<guid isPermaLink="false">http://dougscripts.com/itunes/?p=979</guid>
		<description><![CDATA[Several users have reported (and are helping me trouble-shoot) a bug in the latest Join Together, which is v6.0. Essentially, the issue seems to be that the join never leaves &#8220;Finishing export&#8221;. I&#8217;m working to solve the issue and have an update early in the coming week. Thanks for your patience.
]]></description>
			<content:encoded><![CDATA[<p>Several users have reported (and are helping me trouble-shoot) a bug in the latest Join Together, which is v6.0. Essentially, the issue seems to be that the join never leaves &#8220;Finishing export&#8221;. I&#8217;m working to solve the issue and have an update early in the coming week. Thanks for your patience.</p>
<hr/><small><a href="http://dougscripts.com/itunes/dougsupdated.rss" title="Take me to your reader">30 Most Recent RSS Feed</a> | <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Script Stats Page</a> by <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Name</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Most Recent&op=y">Most Recent</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Download Count&op=y">Download Count</a></small>]]></content:encoded>
			</item>
		<item>
		<title>Confirmed: iTunes 9.0.2 Script Menu App Bundle Bug</title>
		<link>http://dougscripts.com/itunes/2009/10/confirmed-itunes-9-0-2-script-menu-app-bundle-bug/</link>
		<comments></comments>
		<pubDate>Sat, 31 Oct 2009 14:17:45 +0000</pubDate>
		<dc:creator>dougscripts</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[iTunes9]]></category>

		<guid isPermaLink="false">http://dougscripts.com/itunes/?p=902</guid>
		<description><![CDATA[iTunes 9.0.2 will not display AppleScript Application Bundles in its Script menu. The apps are still where they are supposed to be, ~/Library/iTunes/Scripts/ or /Library/iTunes/Scripts/, and they still work when fired from the Finder. It&#8217;s just that iTunes doesn&#8217;t recognize them for inclusion in the Script Menu. Apple is aware of the issue.
This is a [...]]]></description>
			<content:encoded><![CDATA[<p>iTunes 9.0.2 will not display AppleScript Application Bundles in its Script menu. The apps are still where they are supposed to be, <em>~/Library/iTunes/Scripts/</em> or <em>/Library/iTunes/Scripts/</em>, and they still work when fired from the Finder. It&#8217;s just that iTunes doesn&#8217;t recognize them for inclusion in the Script Menu. Apple is aware of the issue.</p>
<p>This is a problem in Snow Leopard since the default build type for AppleScript applications <em>is</em> the bundled type&#8211;there is no longer an option to create &#8220;plain&#8221; application scripts. Thus any AppleScript applications created in Snow Leopard will not appear in iTunes&#8217; Script menu, as well as, of course, any AppleScript application ever saved as Application Bundle.</p>
<p>Scripts affected will display <strong>Kind: Application (Universal)</strong> in their Get Info window.</p>
<p>Affected apps that you simply gotta access while iTunes is frontmost can be copied/moved to <em>~/Library/Scripts/Applications/iTunes/</em> and they will appear in the system-wide Scripts menu.</p>
<hr/><small><a href="http://dougscripts.com/itunes/dougsupdated.rss" title="Take me to your reader">30 Most Recent RSS Feed</a> | <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Script Stats Page</a> by <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Name</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Most Recent&op=y">Most Recent</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Download Count&op=y">Download Count</a></small>]]></content:encoded>
			</item>
		<item>
		<title>Apps Not Displaying</title>
		<link>http://dougscripts.com/itunes/2009/10/apps-not-displaying/</link>
		<comments></comments>
		<pubDate>Fri, 30 Oct 2009 17:39:52 +0000</pubDate>
		<dc:creator>dougscripts</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[iTunes9]]></category>

		<guid isPermaLink="false">http://dougscripts.com/itunes/?p=896</guid>
		<description><![CDATA[On further investigation, it appears that AppleScript applications with bundles are not displaying in the iTunes 9.0.2 Script menu. This means that any app written under 10.6 will not appear since app bundles are the default application build style. Apps written without bundles pre-10.6 will display. Regular scripts, with or without bundles, seem fine.
UPDATE: ScriptPal [...]]]></description>
			<content:encoded><![CDATA[<p>On further investigation, it appears that AppleScript applications with bundles are not displaying in the iTunes 9.0.2 Script menu. This means that any app written under 10.6 will not appear since app bundles are the default application build style. Apps written <em>without</em> bundles pre-10.6 will display. Regular scripts, with or without bundles, seem fine.</p>
<p>UPDATE: <a href="http://dougscripts.com/itunes/itinfo/scriptpal.php">ScriptPal</a> is a good workaround.</p>
<hr/><small><a href="http://dougscripts.com/itunes/dougsupdated.rss" title="Take me to your reader">30 Most Recent RSS Feed</a> | <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Script Stats Page</a> by <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Name</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Most Recent&op=y">Most Recent</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Download Count&op=y">Download Count</a></small>]]></content:encoded>
			</item>
		<item>
		<title>Interesting iTunes 9.0.2 Mystery</title>
		<link>http://dougscripts.com/itunes/2009/10/interesting-itunes-9-0-2-mystery/</link>
		<comments></comments>
		<pubDate>Fri, 30 Oct 2009 17:26:04 +0000</pubDate>
		<dc:creator>dougscripts</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[iTunes9]]></category>

		<guid isPermaLink="false">http://dougscripts.com/itunes/?p=894</guid>
		<description><![CDATA[A Correspondent alerted me to an unusual behavior with iTunes 9.0.2 and the script application Needle Drop: it doesn&#8217;t appear in iTunes&#8217; Script menu, under Leopard or Snow Leopard. I don&#8217;t know what to suspect yet.
Of course, it still works if you double-click it in the Finder, but that kind of defeats the purpose of [...]]]></description>
			<content:encoded><![CDATA[<p>A Correspondent alerted me to an unusual behavior with iTunes 9.0.2 and the script application <a href="http://dougscripts.com/itunes/scripts/ss.php?sp=needledrop" title="Play through each track in a playlist at your set interval">Needle Drop</a>: it doesn&#8217;t appear in iTunes&#8217; Script menu, under Leopard or Snow Leopard. I don&#8217;t know what to suspect yet.</p>
<p>Of course, it still works if you double-click it in the Finder, but that kind of defeats the purpose of having a Script menu.</p>
<p>I will investigate.</p>
<hr/><small><a href="http://dougscripts.com/itunes/dougsupdated.rss" title="Take me to your reader">30 Most Recent RSS Feed</a> | <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Script Stats Page</a> by <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Name&op=y">Name</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Most Recent&op=y">Most Recent</a>, <a href="http://dougscripts.com/itunes/scripts/scriptcount.php?sortBy=Download Count&op=y">Download Count</a></small>]]></content:encoded>
			</item>
	</channel>
</rss>

