<?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 Tim Ashworth</title>
	<atom:link href="http://www.timashworth.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.timashworth.co.uk</link>
	<description>Code, cooking and opinion, all my own work!</description>
	<lastBuildDate>Fri, 30 Apr 2010 09:56:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>Comment on Flash, iPad, iPod Apple Row by setmajer</title>
		<link>http://www.timashworth.co.uk/2010/02/flash-ipad-ipod-apple-row/comment-page-1/#comment-264</link>
		<dc:creator>setmajer</dc:creator>
		<pubDate>Fri, 30 Apr 2010 09:56:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=152#comment-264</guid>
		<description>Actually, the blind developer in our office ( http://uk.linkedin.com/in/arturortega ) quite likes his iPhone.</description>
		<content:encoded><![CDATA[<p>Actually, the blind developer in our office ( <a href="http://uk.linkedin.com/in/arturortega" rel="nofollow">http://uk.linkedin.com/in/arturortega</a> ) quite likes his iPhone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flash, iPad, iPod Apple Row by Afraz Khan</title>
		<link>http://www.timashworth.co.uk/2010/02/flash-ipad-ipod-apple-row/comment-page-1/#comment-176</link>
		<dc:creator>Afraz Khan</dc:creator>
		<pubDate>Thu, 11 Feb 2010 12:35:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=152#comment-176</guid>
		<description>I believe it&#039;s more to do with their other distribution system, that ibominable dungeon; iTunes.

Once you have access to all the video and music flash sites out their for free, you&#039;re more likely to see most iTunes content for it&#039;s real worth i.e. nothing (though the &quot;worth&quot; thing is another argument, you&#039;ll agree that you&#039;ll at least be less likely to buy from iTunes).

Microsoft is like a cartoon Hitler; you know they&#039;re evil, but they&#039;re so incompetant that you&#039;re not too worried. Apple on the other hand, are both evil and capable.</description>
		<content:encoded><![CDATA[<p>I believe it&#8217;s more to do with their other distribution system, that ibominable dungeon; iTunes.</p>
<p>Once you have access to all the video and music flash sites out their for free, you&#8217;re more likely to see most iTunes content for it&#8217;s real worth i.e. nothing (though the &#8220;worth&#8221; thing is another argument, you&#8217;ll agree that you&#8217;ll at least be less likely to buy from iTunes).</p>
<p>Microsoft is like a cartoon Hitler; you know they&#8217;re evil, but they&#8217;re so incompetant that you&#8217;re not too worried. Apple on the other hand, are both evil and capable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TortoiseSVN, Subclipse, how&#8217;s it all work? by Anthony Linotn</title>
		<link>http://www.timashworth.co.uk/2007/12/tortoisesvn-subclipse-hows-it-all-work/comment-page-1/#comment-170</link>
		<dc:creator>Anthony Linotn</dc:creator>
		<pubDate>Fri, 11 Dec 2009 00:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=9#comment-170</guid>
		<description>I didn&#039;t really know where to start. But thankfully your guide really helped.

Took me a while to work out why my repository URL wasn&#039;t working. Turns out it&#039;s because you NEED the file:///. I find that a bit odd since I&#039;ve never seen that as a requirement before in any other programs.</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t really know where to start. But thankfully your guide really helped.</p>
<p>Took me a while to work out why my repository URL wasn&#8217;t working. Turns out it&#8217;s because you NEED the file:///. I find that a bit odd since I&#8217;ve never seen that as a requirement before in any other programs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Papervision 3D for ActionScript 2 by Grit</title>
		<link>http://www.timashworth.co.uk/2008/06/papervision-3d-for-actionscript-2/comment-page-1/#comment-169</link>
		<dc:creator>Grit</dc:creator>
		<pubDate>Wed, 25 Nov 2009 14:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=58#comment-169</guid>
		<description>like this (get the PV3D repository from googlecode):


container = this.createEmptyMovieClip(&quot;container&quot;, this.getNextHighestDepth());
container._x = Stage.width / 2;
container._y = Stage.height / 2;

scene = new org.papervision3d.scenes.Scene3D(container);

camera = new org.papervision3d.cameras.Camera3D();
camera.zoom = 1;
camera.focus = 500;
camera.z = -2000;

// bmpImage = bitmap in library
bmap = new org.papervision3d.materials.BitmapAssetMaterial(&quot;bmpImage&quot;);
bmap.oneSide = false;

plane = new org.papervision3d.objects.Plane(bmap);
scene.push(plane);

scene.renderCamera(camera);</description>
		<content:encoded><![CDATA[<p>like this (get the PV3D repository from googlecode):</p>
<p>container = this.createEmptyMovieClip(&#8220;container&#8221;, this.getNextHighestDepth());<br />
container._x = Stage.width / 2;<br />
container._y = Stage.height / 2;</p>
<p>scene = new org.papervision3d.scenes.Scene3D(container);</p>
<p>camera = new org.papervision3d.cameras.Camera3D();<br />
camera.zoom = 1;<br />
camera.focus = 500;<br />
camera.z = -2000;</p>
<p>// bmpImage = bitmap in library<br />
bmap = new org.papervision3d.materials.BitmapAssetMaterial(&#8220;bmpImage&#8221;);<br />
bmap.oneSide = false;</p>
<p>plane = new org.papervision3d.objects.Plane(bmap);<br />
scene.push(plane);</p>
<p>scene.renderCamera(camera);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Papervision 3D for ActionScript 2 by admin</title>
		<link>http://www.timashworth.co.uk/2008/06/papervision-3d-for-actionscript-2/comment-page-1/#comment-166</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 16 Nov 2009 23:25:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=58#comment-166</guid>
		<description>OK just sorting myself out in a new office - promise I will pop up a link to the flas abd source asap!</description>
		<content:encoded><![CDATA[<p>OK just sorting myself out in a new office &#8211; promise I will pop up a link to the flas abd source asap!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Papervision 3D for ActionScript 2 by Scot</title>
		<link>http://www.timashworth.co.uk/2008/06/papervision-3d-for-actionscript-2/comment-page-1/#comment-165</link>
		<dc:creator>Scot</dc:creator>
		<pubDate>Mon, 16 Nov 2009 23:12:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=58#comment-165</guid>
		<description>I&#039;d be very interested that as well!

Thanks</description>
		<content:encoded><![CDATA[<p>I&#8217;d be very interested that as well!</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Papervision 3D for ActionScript 2 by admin</title>
		<link>http://www.timashworth.co.uk/2008/06/papervision-3d-for-actionscript-2/comment-page-1/#comment-164</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 09 Nov 2009 09:30:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=58#comment-164</guid>
		<description>Thanks.

It&#039;s been a while (and a couple of machines ago) but I&#039;ll see if I can dig out the FLAs and classes and pop&#039;em up for download.</description>
		<content:encoded><![CDATA[<p>Thanks.</p>
<p>It&#8217;s been a while (and a couple of machines ago) but I&#8217;ll see if I can dig out the FLAs and classes and pop&#8217;em up for download.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Papervision 3D for ActionScript 2 by Marek</title>
		<link>http://www.timashworth.co.uk/2008/06/papervision-3d-for-actionscript-2/comment-page-1/#comment-163</link>
		<dc:creator>Marek</dc:creator>
		<pubDate>Mon, 09 Nov 2009 00:27:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=58#comment-163</guid>
		<description>Hi!
I got to Your website after hours of searching for PV3d examples for AS2.0. Yours&#039; are amazing ;)
Could You please show some resources how to do that? Or fla file or anything for PV3d for AS2.0. It would be really nice. Thank You!</description>
		<content:encoded><![CDATA[<p>Hi!<br />
I got to Your website after hours of searching for PV3d examples for AS2.0. Yours&#8217; are amazing <img src='http://www.timashworth.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
Could You please show some resources how to do that? Or fla file or anything for PV3d for AS2.0. It would be really nice. Thank You!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My SWC isn&#8217;t Compiling properly! by admin</title>
		<link>http://www.timashworth.co.uk/2008/07/my-swc-isnt-compiling-properly/comment-page-1/#comment-162</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 12 Oct 2009 19:45:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=60#comment-162</guid>
		<description>OK another gotcha - check that you don&#039;t have errors in your library. It will not compile the swc, but as you aren&#039;t actually using it directly then you will be able to compile the swf but may not get the error warnings. I&#039;m sure you&#039;ve done this, but clean all the projects as this can sometimes case problems too.

Good luck</description>
		<content:encoded><![CDATA[<p>OK another gotcha &#8211; check that you don&#8217;t have errors in your library. It will not compile the swc, but as you aren&#8217;t actually using it directly then you will be able to compile the swf but may not get the error warnings. I&#8217;m sure you&#8217;ve done this, but clean all the projects as this can sometimes case problems too.</p>
<p>Good luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My SWC isn&#8217;t Compiling properly! by zeroin</title>
		<link>http://www.timashworth.co.uk/2008/07/my-swc-isnt-compiling-properly/comment-page-1/#comment-161</link>
		<dc:creator>zeroin</dc:creator>
		<pubDate>Mon, 12 Oct 2009 18:17:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.timashworth.co.uk/?p=60#comment-161</guid>
		<description>Hi,

I am experiencing the same nightmare. I have a flex project which compiles nicely. However when I create Flex library project using the classes of this project, the builder doesn&#039;t compile the swc file. I am sure I do everything correctly, as I tried to do this with some simple project (2-3 classes only) and the swc file compiles. However, when I use my big project with a lot of classes, the swc file is not compiled. Sometimes I have luck to get the swc file if I uncheck some of the classes so that they wouln&#039;t be included in swc, however this happens without any obvious rule.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am experiencing the same nightmare. I have a flex project which compiles nicely. However when I create Flex library project using the classes of this project, the builder doesn&#8217;t compile the swc file. I am sure I do everything correctly, as I tried to do this with some simple project (2-3 classes only) and the swc file compiles. However, when I use my big project with a lot of classes, the swc file is not compiled. Sometimes I have luck to get the swc file if I uncheck some of the classes so that they wouln&#8217;t be included in swc, however this happens without any obvious rule.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

