<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: iChat AppleScript / Apple Event Gotcha With &#8220;set status&#8221;</title>
	<atom:link href="http://vgable.com/blog/2009/01/18/ichat-applescript-apple-event-bug-with-set-status/feed/" rel="self" type="application/rss+xml" />
	<link>http://vgable.com/blog/2009/01/18/ichat-applescript-apple-event-bug-with-set-status/</link>
	<description>my weblog.</description>
	<lastBuildDate>Thu, 17 May 2012 17:13:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Kentzo</title>
		<link>http://vgable.com/blog/2009/01/18/ichat-applescript-apple-event-bug-with-set-status/comment-page-1/#comment-1248</link>
		<dc:creator>Kentzo</dc:creator>
		<pubDate>Thu, 03 Feb 2011 19:20:42 +0000</pubDate>
		<guid isPermaLink="false">http://vgable.com/blog/2009/01/18/ichat-applescript-apple-event-bug-with-set-status/#comment-1248</guid>
		<description>Try to call sleep function between setting status and status message:
tell application &quot;iChat&quot;
	set status to away
	do shell script &quot;sleep 0.1&quot;
	set status message to &quot;Away&quot;
end tell
That helps me.</description>
		<content:encoded><![CDATA[<p>Try to call sleep function between setting status and status message:<br />
tell application &#8220;iChat&#8221;<br />
	set status to away<br />
	do shell script &#8220;sleep 0.1&#8243;<br />
	set status message to &#8220;Away&#8221;<br />
end tell<br />
That helps me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent Gable</title>
		<link>http://vgable.com/blog/2009/01/18/ichat-applescript-apple-event-bug-with-set-status/comment-page-1/#comment-1225</link>
		<dc:creator>Vincent Gable</dc:creator>
		<pubDate>Sun, 16 Jan 2011 12:52:17 +0000</pubDate>
		<guid isPermaLink="false">http://vgable.com/blog/2009/01/18/ichat-applescript-apple-event-bug-with-set-status/#comment-1225</guid>
		<description>I&#039;m afraid I have no suggestions, except reporting it at: &lt;a href=&quot;http://bugreport.apple.com&quot; rel=&quot;nofollow&quot;&gt;http://bugreport.apple.com&lt;/a&gt;. Good luck!</description>
		<content:encoded><![CDATA[<p>I&#8217;m afraid I have no suggestions, except reporting it at: <a href="http://bugreport.apple.com" rel="nofollow">http://bugreport.apple.com</a>. Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lantrix</title>
		<link>http://vgable.com/blog/2009/01/18/ichat-applescript-apple-event-bug-with-set-status/comment-page-1/#comment-1224</link>
		<dc:creator>Lantrix</dc:creator>
		<pubDate>Sun, 16 Jan 2011 12:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://vgable.com/blog/2009/01/18/ichat-applescript-apple-event-bug-with-set-status/#comment-1224</guid>
		<description>With the current version of iChat under OS 10.6.6, I can&#039;t get the workaround to work.
This fails to do both, and I only get the message, without the status changing:

&lt;code&gt;
tell application &quot;iChat&quot;
	set status to away
	set status message to &quot;Do Not Disturb&quot;
end tell
&lt;/code&gt;

However this works:
&lt;code&gt;
tell application &quot;iChat&quot;
	set status to away
end tell
&lt;/code&gt;

and this works:
&lt;code&gt;
tell application &quot;iChat&quot;
	set status message to &quot;Do Not Disturb&quot;
end tell
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>With the current version of iChat under OS 10.6.6, I can&#8217;t get the workaround to work.<br />
This fails to do both, and I only get the message, without the status changing:</p>
<p><code><br />
tell application "iChat"<br />
	set status to away<br />
	set status message to "Do Not Disturb"<br />
end tell<br />
</code></p>
<p>However this works:<br />
<code><br />
tell application "iChat"<br />
	set status to away<br />
end tell<br />
</code></p>
<p>and this works:<br />
<code><br />
tell application "iChat"<br />
	set status message to "Do Not Disturb"<br />
end tell<br />
</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>

