<?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 for The UnSocial</title>
	<atom:link href="http://www.revfry.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.revfry.com</link>
	<description>RevFry&#039;s low traffic public facing presence</description>
	<lastBuildDate>Wed, 24 Mar 2010 05:47:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on MonoTouch and null by Rev</title>
		<link>http://www.revfry.com/?p=431#comment-557</link>
		<dc:creator>Rev</dc:creator>
		<pubDate>Wed, 24 Mar 2010 05:47:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.revfry.com/?p=431#comment-557</guid>
		<description>Yeah, they changed the API and I just haven&#039;t bothered to update my code. Got bored with being able to own the whole thing.</description>
		<content:encoded><![CDATA[<p>Yeah, they changed the API and I just haven&#8217;t bothered to update my code. Got bored with being able to own the whole thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MonoTouch and null by No One</title>
		<link>http://www.revfry.com/?p=431#comment-556</link>
		<dc:creator>No One</dc:creator>
		<pubDate>Sun, 07 Mar 2010 00:46:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.revfry.com/?p=431#comment-556</guid>
		<description>Ha I beat yer mytown rite aid score</description>
		<content:encoded><![CDATA[<p>Ha I beat yer mytown rite aid score</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IE &#8220;Object doesn&#8217;t support this action&#8221; by Duane G</title>
		<link>http://www.revfry.com/?p=406#comment-541</link>
		<dc:creator>Duane G</dc:creator>
		<pubDate>Wed, 17 Feb 2010 21:42:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.revfry.com/?p=406#comment-541</guid>
		<description>Thank you sir ....

var item = element.parent(); -- FAIL

I couldn&#039;t for the life of me figure it out, then you saved the day, thanks.</description>
		<content:encoded><![CDATA[<p>Thank you sir &#8230;.</p>
<p>var item = element.parent(); &#8212; FAIL</p>
<p>I couldn&#8217;t for the life of me figure it out, then you saved the day, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on wp-hascash error solution by Joseph Ugoretz</title>
		<link>http://www.revfry.com/?p=358#comment-518</link>
		<dc:creator>Joseph Ugoretz</dc:creator>
		<pubDate>Sat, 06 Feb 2010 18:37:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.revfry.com/?p=358#comment-518</guid>
		<description>Thanks very much for this.  I had no idea how to fix that error, and this did it perfectly!</description>
		<content:encoded><![CDATA[<p>Thanks very much for this.  I had no idea how to fix that error, and this did it perfectly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IE &#8220;Object doesn&#8217;t support this action&#8221; by Rob Y</title>
		<link>http://www.revfry.com/?p=406#comment-540</link>
		<dc:creator>Rob Y</dc:creator>
		<pubDate>Mon, 01 Feb 2010 22:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.revfry.com/?p=406#comment-540</guid>
		<description>You saved my bacon today - thanks!  I was doing something with complex object structures that was failing and IE and I was not looking forward to ripping my code apart to find it.  Thanks to this post, it was certainly my poorly-named variable.</description>
		<content:encoded><![CDATA[<p>You saved my bacon today &#8211; thanks!  I was doing something with complex object structures that was failing and IE and I was not looking forward to ripping my code apart to find it.  Thanks to this post, it was certainly my poorly-named variable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MonoTouch and UIImage.FromFile by Driss</title>
		<link>http://www.revfry.com/?p=427#comment-554</link>
		<dc:creator>Driss</dc:creator>
		<pubDate>Thu, 28 Jan 2010 23:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.revfry.com/?p=427#comment-554</guid>
		<description>I&#039;m having a NullPointerException that I can&#039;t figure out, as the img is not null, here&#039;s the code
			// Set the image for the Move Up button and the Move Down button
			UIImage img = UIImage.FromFile(&quot;Images/UpArrow.png&quot;);
			
			if (img == null) {
				Console.WriteLine(&quot;Resource - UpArrow.png was not found&quot;);
			}
			else {
				btnUp.SetImage(img, UIControlState.Normal);
			}

I get to the btnUp.SetImage and it tanks with a Null, any ideas? The file is there, marked as content and the img is NOT null. btnUp is not null as well.</description>
		<content:encoded><![CDATA[<p>I&#8217;m having a NullPointerException that I can&#8217;t figure out, as the img is not null, here&#8217;s the code<br />
			// Set the image for the Move Up button and the Move Down button<br />
			UIImage img = UIImage.FromFile(&#8220;Images/UpArrow.png&#8221;);</p>
<p>			if (img == null) {<br />
				Console.WriteLine(&#8220;Resource &#8211; UpArrow.png was not found&#8221;);<br />
			}<br />
			else {<br />
				btnUp.SetImage(img, UIControlState.Normal);<br />
			}</p>
<p>I get to the btnUp.SetImage and it tanks with a Null, any ideas? The file is there, marked as content and the img is NOT null. btnUp is not null as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IE &#8220;Object doesn&#8217;t support this action&#8221; by Paul S</title>
		<link>http://www.revfry.com/?p=406#comment-539</link>
		<dc:creator>Paul S</dc:creator>
		<pubDate>Mon, 25 Jan 2010 22:30:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.revfry.com/?p=406#comment-539</guid>
		<description>Thank you sir! I&#039;d like to echo the sentiments of JimboJones, Troy, Andy et al.

Since I am not aware of any debug tools for IE6 I was about to embark on an evening of writing alert(&#039;got here&#039;); statements, but thought I&#039;d use Google first, this was result number 2 for &quot;object doens&#039;t support this action&quot; and it was spot on.

I had a local variable called &#039;item&#039; which I renamed to &#039;thing&#039; and it all started working ;)</description>
		<content:encoded><![CDATA[<p>Thank you sir! I&#8217;d like to echo the sentiments of JimboJones, Troy, Andy et al.</p>
<p>Since I am not aware of any debug tools for IE6 I was about to embark on an evening of writing alert(&#8216;got here&#8217;); statements, but thought I&#8217;d use Google first, this was result number 2 for &#8220;object doens&#8217;t support this action&#8221; and it was spot on.</p>
<p>I had a local variable called &#8216;item&#8217; which I renamed to &#8216;thing&#8217; and it all started working <img src='http://www.revfry.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IE &#8220;Object doesn&#8217;t support this action&#8221; by Nathan</title>
		<link>http://www.revfry.com/?p=406#comment-538</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Wed, 20 Jan 2010 03:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.revfry.com/?p=406#comment-538</guid>
		<description>It is interesting in that all day long I have been testing code on IE8 that
has worked on *most* browsers rather transparently for a good year or so.

With out fault every time IE8 en counters a &quot;for var in&quot; statement it is throwing an &quot;Object doesn&#039;t support this action&quot; error.
ON EVERY SINGLE &quot;for (var XXX in YYY) &quot; statement, PERIOD!

I can try:
for (var sangfroid in smurf) {
 alert(smurf[sangfroid]);
}
And every time :
Object doesn&#039;t support this action!</description>
		<content:encoded><![CDATA[<p>It is interesting in that all day long I have been testing code on IE8 that<br />
has worked on *most* browsers rather transparently for a good year or so.</p>
<p>With out fault every time IE8 en counters a &#8220;for var in&#8221; statement it is throwing an &#8220;Object doesn&#8217;t support this action&#8221; error.<br />
ON EVERY SINGLE &#8220;for (var XXX in YYY) &#8221; statement, PERIOD!</p>
<p>I can try:<br />
for (var sangfroid in smurf) {<br />
 alert(smurf[sangfroid]);<br />
}<br />
And every time :<br />
Object doesn&#8217;t support this action!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on wp-hascash error solution by Barry</title>
		<link>http://www.revfry.com/?p=358#comment-517</link>
		<dc:creator>Barry</dc:creator>
		<pubDate>Mon, 18 Jan 2010 22:53:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.revfry.com/?p=358#comment-517</guid>
		<description>you rock sir.</description>
		<content:encoded><![CDATA[<p>you rock sir.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MonoTouch and UIImage.FromFile by H</title>
		<link>http://www.revfry.com/?p=427#comment-553</link>
		<dc:creator>H</dc:creator>
		<pubDate>Sun, 10 Jan 2010 17:00:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.revfry.com/?p=427#comment-553</guid>
		<description>Thanks - also (just in case anyone else is struggling) note that this takes a file name - not a path name - it doesn&#039;t work if you start to use paths!</description>
		<content:encoded><![CDATA[<p>Thanks &#8211; also (just in case anyone else is struggling) note that this takes a file name &#8211; not a path name &#8211; it doesn&#8217;t work if you start to use paths!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
