<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Seb Lee-Delisle</title>
	
	<link>http://sebleedelisle.com</link>
	<description>Actionscript Games, Physics and Papervision3D</description>
	<lastBuildDate>Tue, 09 Mar 2010 00:13:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/sebleedelisle" /><feedburner:info uri="sebleedelisle" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>3D engine in 10 lines*</title>
		<link>http://feedproxy.google.com/~r/sebleedelisle/~3/p8MUhnC59Tw/</link>
		<comments>http://sebleedelisle.com/2010/03/3d-engine-in-10-lines/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 00:03:55 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash 3D]]></category>
		<category><![CDATA[Particles]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[fgs]]></category>

		<guid isPermaLink="false">http://sebleedelisle.com/?p=913</guid>
		<description><![CDATA[
During my session at the Flash Gaming Summit, I showed a very simple 3D particle renderer to attempt to demystify the process of converting 3D into 2D. 

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Particles3D_1095290908"
			class="flashmovie"
			width="500"
			height="350">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2010/03/Particles3D.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2010/03/Particles3D.swf"
			name="fm_Particles3D_1095290908"
			width="500"
			height="350">
	<!--<![endif]-->
		


	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
Click and drag. 
The actual code that converts from 3D to 2D is easy! First you have to figure out how [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2007/06/flash-sparkler/' rel='bookmark' title='Permanent Link: Flash Sparkler'>Flash Sparkler</a></li>
<li><a href='http://sebleedelisle.com/2008/02/papervision-billboard-particles/' rel='bookmark' title='Permanent Link: Papervision &quot;billboard&quot; particles'>Papervision &quot;billboard&quot; particles</a></li>
<li><a href='http://sebleedelisle.com/2007/06/flash-particles-now-1000-extra-free/' rel='bookmark' title='Permanent Link: Flash Particles &#8211; now 1000% extra free!'>Flash Particles &#8211; now 1000% extra free!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p>During my session at the Flash Gaming Summit, I showed a very simple 3D particle renderer to attempt to demystify the process of converting 3D into 2D. </p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_Particles3D_1035069264"
			class="flashmovie"
			width="500"
			height="350">
	<param name="movie" value="http://sebleedelisle.com/wp-content/uploads/2010/03/Particles3D.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://sebleedelisle.com/wp-content/uploads/2010/03/Particles3D.swf"
			name="fm_Particles3D_1035069264"
			width="500"
			height="350">
	<!--<![endif]-->
		<br />
<a href="http://sebleedelisle.com/2010/03/3d-engine-in-10-lines/" ><img src="http://farm3.static.flickr.com/2710/4417877267_f312beb0d8.jpg" width="498" height="348" alt="Flash simple 3D particle renderer" /></a><br />

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object><br />
<em>Click and drag. </em></p>
<p>The actual code that converts from 3D to 2D is easy! First you have to figure out how much you have to resize things depending on how far away they are. (ie what their z position is).</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">newscale = f<span style="color: #66cc66;">/</span><span style="color: #66cc66;">&#40;</span>f+z<span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p>Where f is a notional field of view. Changing this will change how wide the (virtual) camera is. A good starting point would be 250. Then you multiply the 3D x and y positions by the newscale to get their 2D x and y positions.</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">x2d = x3d <span style="color: #66cc66;">*</span> newscale; 
y2d = y3d <span style="color: #66cc66;">*</span> newscale;</pre></div></div>

<p>So that&#8217;s where we put our particle, in this case represented by a MovieClip that we also need to resize by our new scale :</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">clip.<span style="color: #006600;">scaleX</span> = clip.<span style="color: #006600;">scaleY</span> = newscale;</pre></div></div>

<p>And then the final thing we need to do is sort by the z position so that particles in front appear above particles in the background.</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">particles.<span style="color: #0066CC;">sortOn</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;z&quot;</span>, <span style="color: #0066CC;">Array</span>.<span style="color: #006600;">DESCENDING</span> <span style="color: #66cc66;">|</span> <span style="color: #0066CC;">Array</span>.<span style="color: #006600;">NUMERIC</span><span style="color: #66cc66;">&#41;</span>; 
<span style="color: #b1b100;">for</span><span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">var</span> i:<span style="color: #0066CC;">int</span> = <span style="color: #cc66cc;">0</span>; i<span style="color: #66cc66;">&lt;</span> particles.<span style="color: #0066CC;">length</span>;i++<span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#123;</span>
	particle = particles<span style="color: #66cc66;">&#91;</span>i<span style="color: #66cc66;">&#93;</span>;
	particleClip.<span style="color: #006600;">setChildIndex</span><span style="color: #66cc66;">&#40;</span>particle.<span style="color: #006600;">clip</span>, i<span style="color: #66cc66;">&#41;</span>; 
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>There&#8217;s some other stuff in there too, to create the depth of field blur and also the bitmap trails, but have a look and see what you can do with it.</p>
<p><a href="http://sebleedelisle.com/wp-content/uploads/2010/03/Particles3D.zip">Download the source code for simple 3D engine.</a></p>
<p>* I haven&#8217;t actually counted the number of lines. I&#8217;m guessing it&#8217;s about 10. <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2007/06/flash-sparkler/' rel='bookmark' title='Permanent Link: Flash Sparkler'>Flash Sparkler</a></li>
<li><a href='http://sebleedelisle.com/2008/02/papervision-billboard-particles/' rel='bookmark' title='Permanent Link: Papervision &quot;billboard&quot; particles'>Papervision &quot;billboard&quot; particles</a></li>
<li><a href='http://sebleedelisle.com/2007/06/flash-particles-now-1000-extra-free/' rel='bookmark' title='Permanent Link: Flash Particles &#8211; now 1000% extra free!'>Flash Particles &#8211; now 1000% extra free!</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=p8MUhnC59Tw:W3b8NjBsxXU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=p8MUhnC59Tw:W3b8NjBsxXU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=p8MUhnC59Tw:W3b8NjBsxXU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=p8MUhnC59Tw:W3b8NjBsxXU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=p8MUhnC59Tw:W3b8NjBsxXU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=p8MUhnC59Tw:W3b8NjBsxXU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=p8MUhnC59Tw:W3b8NjBsxXU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=p8MUhnC59Tw:W3b8NjBsxXU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=p8MUhnC59Tw:W3b8NjBsxXU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=p8MUhnC59Tw:W3b8NjBsxXU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=p8MUhnC59Tw:W3b8NjBsxXU:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sebleedelisle/~4/p8MUhnC59Tw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2010/03/3d-engine-in-10-lines/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://sebleedelisle.com/2010/03/3d-engine-in-10-lines/</feedburner:origLink></item>
		<item>
		<title>Learning to love learning</title>
		<link>http://feedproxy.google.com/~r/sebleedelisle/~3/8YEVII5tvEQ/</link>
		<comments>http://sebleedelisle.com/2010/03/learning-to-love-learning/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 10:59:33 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Speaking]]></category>

		<guid isPermaLink="false">http://sebleedelisle.com/?p=911</guid>
		<description><![CDATA[
I&#8217;ve just published a blog post on the FITC blog where I explain what inspires me and how to learn to love the constant demand  of changing technology. 
http://blog.fitc.ca/post.cfm/stagnating-in-your-cubicle-learn-to-love-to-learn



Related posts:How I learned to stop worrying and love Adobe
Next stop : Toronto FITC
USA Euro-invasion countdown begins



Related posts:<ol><li><a href='http://sebleedelisle.com/2009/10/how-i-learned-to-stop-worrying-and-love-adobe/' rel='bookmark' title='Permanent Link: How I learned to stop worrying and love Adobe'>How I learned to stop worrying and love Adobe</a></li>
<li><a href='http://sebleedelisle.com/2008/04/next-stop-toronto-fitc/' rel='bookmark' title='Permanent Link: Next stop : Toronto FITC'>Next stop : Toronto FITC</a></li>
<li><a href='http://sebleedelisle.com/2009/10/usa-euro-invasion-countdown-begins/' rel='bookmark' title='Permanent Link: USA Euro-invasion countdown begins'>USA Euro-invasion countdown begins</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p>I&#8217;ve just published a blog post on the FITC blog where I explain what inspires me and how to learn to love the constant demand  of changing technology. </p>
<p><a href="http://blog.fitc.ca/post.cfm/stagnating-in-your-cubicle-learn-to-love-to-learn">http://blog.fitc.ca/post.cfm/stagnating-in-your-cubicle-learn-to-love-to-learn</a></p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2009/10/how-i-learned-to-stop-worrying-and-love-adobe/' rel='bookmark' title='Permanent Link: How I learned to stop worrying and love Adobe'>How I learned to stop worrying and love Adobe</a></li>
<li><a href='http://sebleedelisle.com/2008/04/next-stop-toronto-fitc/' rel='bookmark' title='Permanent Link: Next stop : Toronto FITC'>Next stop : Toronto FITC</a></li>
<li><a href='http://sebleedelisle.com/2009/10/usa-euro-invasion-countdown-begins/' rel='bookmark' title='Permanent Link: USA Euro-invasion countdown begins'>USA Euro-invasion countdown begins</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=8YEVII5tvEQ:X8Man2Ak9og:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=8YEVII5tvEQ:X8Man2Ak9og:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=8YEVII5tvEQ:X8Man2Ak9og:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=8YEVII5tvEQ:X8Man2Ak9og:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=8YEVII5tvEQ:X8Man2Ak9og:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=8YEVII5tvEQ:X8Man2Ak9og:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=8YEVII5tvEQ:X8Man2Ak9og:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=8YEVII5tvEQ:X8Man2Ak9og:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=8YEVII5tvEQ:X8Man2Ak9og:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=8YEVII5tvEQ:X8Man2Ak9og:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=8YEVII5tvEQ:X8Man2Ak9og:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sebleedelisle/~4/8YEVII5tvEQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2010/03/learning-to-love-learning/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://sebleedelisle.com/2010/03/learning-to-love-learning/</feedburner:origLink></item>
		<item>
		<title>Actionscript Hero interview</title>
		<link>http://feedproxy.google.com/~r/sebleedelisle/~3/a-g2HQK3dY0/</link>
		<comments>http://sebleedelisle.com/2010/03/actionscript-hero-interview/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 10:46:28 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Papervision3D]]></category>
		<category><![CDATA[Speaking]]></category>

		<guid isPermaLink="false">http://sebleedelisle.com/?p=907</guid>
		<description><![CDATA[
It was great to catch up with Pablo and the ActionScriptHero crew in Amsterdam, and we had a good chat about the future of Flash, the exciting changes in digital and what inspires me. 

FITC Amsterdam 2010 &#8211; Seb Lee-Delisle Interview Part 1/2 from ActionScriptHero.org on Vimeo.

FITC Amsterdam 2010 &#8211; Seb Lee-Delisle Interview Part 2/2 [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2008/10/the-fotb08-carnival-leaves-town/' rel='bookmark' title='Permanent Link: The FOTB08 carnival leaves town'>The FOTB08 carnival leaves town</a></li>
<li><a href='http://sebleedelisle.com/2010/03/learning-to-love-learning/' rel='bookmark' title='Permanent Link: Learning to love learning'>Learning to love learning</a></li>
<li><a href='http://sebleedelisle.com/2008/04/next-stop-toronto-fitc/' rel='bookmark' title='Permanent Link: Next stop : Toronto FITC'>Next stop : Toronto FITC</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p>It was great to catch up with Pablo and the ActionScriptHero crew in Amsterdam, and we had a good chat about the future of Flash, the exciting changes in digital and what inspires me. </p>
<p><object width="500" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=9865991&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff0179&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=9865991&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff0179&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="500" height="300"></embed></object>
<p><a href="http://vimeo.com/9865991">FITC Amsterdam 2010 &#8211; Seb Lee-Delisle Interview Part 1/2</a> from <a href="http://vimeo.com/actionscript">ActionScriptHero.org</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><object width="500" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=9932347&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff0179&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=9932347&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff0179&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="500" height="300"></embed></object>
<p><a href="http://vimeo.com/9932347">FITC Amsterdam 2010 &#8211; Seb Lee-Delisle Interview Part 2/2</a> from <a href="http://vimeo.com/actionscript">ActionScriptHero.org</a> on <a href="http://vimeo.com">Vimeo</a>.</p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2008/10/the-fotb08-carnival-leaves-town/' rel='bookmark' title='Permanent Link: The FOTB08 carnival leaves town'>The FOTB08 carnival leaves town</a></li>
<li><a href='http://sebleedelisle.com/2010/03/learning-to-love-learning/' rel='bookmark' title='Permanent Link: Learning to love learning'>Learning to love learning</a></li>
<li><a href='http://sebleedelisle.com/2008/04/next-stop-toronto-fitc/' rel='bookmark' title='Permanent Link: Next stop : Toronto FITC'>Next stop : Toronto FITC</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=a-g2HQK3dY0:6d1lqWR1Rdo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=a-g2HQK3dY0:6d1lqWR1Rdo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=a-g2HQK3dY0:6d1lqWR1Rdo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=a-g2HQK3dY0:6d1lqWR1Rdo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=a-g2HQK3dY0:6d1lqWR1Rdo:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=a-g2HQK3dY0:6d1lqWR1Rdo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=a-g2HQK3dY0:6d1lqWR1Rdo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=a-g2HQK3dY0:6d1lqWR1Rdo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=a-g2HQK3dY0:6d1lqWR1Rdo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=a-g2HQK3dY0:6d1lqWR1Rdo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=a-g2HQK3dY0:6d1lqWR1Rdo:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sebleedelisle/~4/a-g2HQK3dY0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2010/03/actionscript-hero-interview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://sebleedelisle.com/2010/03/actionscript-hero-interview/</feedburner:origLink></item>
		<item>
		<title>A (belated) review of 2009</title>
		<link>http://feedproxy.google.com/~r/sebleedelisle/~3/PwHWN1SQ6K8/</link>
		<comments>http://sebleedelisle.com/2010/02/a-belated-review-of-2009/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 00:55:43 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sebleedelisle.com/?p=889</guid>
		<description><![CDATA[
Yes, I know; I&#8217;m late with my review of last year. Everyone else did theirs in December, or at least January. But you know, I&#8217;ve done one every year and the OCD element in my personality just won&#8217;t let me get away with it. So allow me this minor self-indulgence just once a year (especially [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2009/01/review-of-2008-in-pictures/' rel='bookmark' title='Permanent Link: Review of 2008 &#8211; in pictures'>Review of 2008 &#8211; in pictures</a></li>
<li><a href='http://sebleedelisle.com/2008/09/flash-on-the-beach-miami/' rel='bookmark' title='Permanent Link: Flash on the Beach Miami'>Flash on the Beach Miami</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p>Yes, I know; I&#8217;m late with my review of last year. Everyone else did theirs in December, or at least January. But you know, I&#8217;ve done one every year and the OCD element in my personality just won&#8217;t let me get away with it. So allow me this minor self-indulgence just once a year (especially today of all days <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ) </p>
<p>And actually 2009 was a very extreme year, some moments of difficulty and some moments of joy! So let&#8217;s start at the beginning&#8230;<br />
<span id="more-889"></span><br />
<a href="http://sebleedelisle.com/2009/06/big-big-papervision3d-project-for-small-people/"><img src="http://farm4.static.flickr.com/3636/3584610897_2f9ee62e12.jpg" alt="" /></a></p>
<p>A major part of 2009 was <a href="http://sebleedelisle.com/2009/06/big-big-papervision3d-project-for-small-people/">Big and Small</a>, perhaps the most important Plug-in Media project so far. We were still working hard in January and we were delighted in February to get confirmation that the BBC wanted phase two, which added the garden and woods. And honestly, with the economy as it was in the first half of the year, we were very glad to have a huge project like that to get our teeth into. </p>
<p><a href="http://sebleedelisle.com/2009/01/papervision3d-wormhole-in-your-webcam/"><img src="http://farm4.static.flickr.com/3382/3237030791_342207cfe2.jpg?v=0" alt="Papervision3D AR Wormhole" /></a></p>
<p>But I still found time to play with FLARToolkit a little more, with my wormhole in January, I still need to post a full description of how I did it &#8211; anyone still interested in this? </p>
<p><a href="http://www.flickr.com/photos/jmwhittaker/3315961819/" title="Flash camp stage with Seb by jmwhittaker, on Flickr"><img src="http://farm4.static.flickr.com/3571/3315961819_2417826291.jpg" width="500" height="333" alt="Flash camp stage with Seb" /></a></p>
<p>February brought a few speaking engagements, first FlashCamp London, FITC Amsterdam, and a sell out PV3D training course in Brighton, all thoroughly enjoyable!</p>
<p>Major news on a personal front for March- <a href="http://sebleedelisle.com/2009/03/just-married/">I married Jenny</a>. Followed by an awesome honeymoon in Thailand. And I learned to tap dance, perhaps I&#8217;ll get around to editing the wedding videos to prove it&#8230; <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   </p>
<p><a href="http://sebleedelisle.com/2009/07/apollo-11-40th-anniversary-edition-of-moonlander3d/"><img src="http://farm3.static.flickr.com/2456/3736265249_d3f38ef994.jpg?v=1248044262" alt="" /></a></p>
<p>I really enjoyed April&#8217;s 5K app competition with my 3D lunar lander. Perhaps the most fun I&#8217;ve had making a game for ages! I learned an important lesson about personal projects &#8211; to make sure I can complete them in the time I have! It only took a day or so to finish, and it&#8217;s mostly because the idea and the execution was so simple; it didn&#8217;t have any complex graphics, just simple lines. </p>
<p>Just in time for the 40th Anniversary of Apollo 11 <a href="http://sebleedelisle.com/2009/07/apollo-11-40th-anniversary-edition-of-moonlander3d/">I released a special edition</a> and spawned a raft <a href="http://sebleedelisle.com/2009/07/apollo-11-40th-anniversary-edition-of-moonlander3d/comment-page-1/#comments">of comments arguing about whether man really landed on the moon</a>. But let&#8217;s not start all that again! </p>
<p>May brought chaos with an unscheduled office move. Our old landlords had majorly screwed up by not paying any electricity bills for a couple of years. The first we knew about it was when a bailiff turned up with a massive pair of wire cutters. Thankfully, <a href="http://thewerks.org.uk/">TheWerks</a> in Hove bailed us out and we decamped over there for a few months. </p>
<p><a href="http://sebleedelisle.com/2009/08/i-will-actually-pay-your-parking-ticket/"><img src="http://farm3.static.flickr.com/2518/3816121238_ab4e482125.jpg" alt="I will pay your parking ticket" /></a></p>
<p>A quick trip off to <a href="http://flashbelt.com">FlashBelt</a> in June and the inspiration for <a href="http://sebleedelisle.com/2009/08/i-will-actually-pay-your-parking-ticket/">IWillPayYourParkingTicket.com</a>. This project is currently on hold, pending some further work, I&#8217;ll let you know what happens with it. FlashBelt is a brilliant conference and I was so inspired; I&#8217;d seriously recommend it if you can get to Minneapolis. </p>
<p><a href="http://www.boomerangtv.co.uk/advertising_microsites/staraoke/" title="StaraokeStageFright"><img src="http://farm3.static.flickr.com/2768/4388753152_5a03222ab6.jpg" width="500" height="333" alt="StaraokeStageFright" /></a></p>
<p>In August we finished our first game for Boomerang TV &#8211; <a href="http://www.boomerangtv.co.uk/advertising_microsites/staraoke/" title="StaraokeStageFright">Staraoke Stage Fright</a>. It&#8217;s realtime rendered in Papervision3D complete with reflections!</p>
<p><a href="http://sebleedelisle.com/2009/08/3d-landscape-in-html-canvas/"><img src="http://farm4.static.flickr.com/3506/3848511335_e15b862020.jpg" alt="3D in HTML5" /><br />
</a></p>
<p><a href="http://sebleedelisle.com/2009/08/3d-landscape-in-html-canvas/">I started playing with 3D in HTML5</a>, just in time to do a <a href="http://sebleedelisle.com/2009/09/simple-3d-in-html5-canvas/">presentation at Barcamp in Brighton early September about it</a>. Barcamp was the perfect opportunity to get to know some of my Brighton contemporaries a little better. Brighton is swarming with brilliant digital minds, but perhaps I&#8217;ll do a separate post about that later <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>
<p>September also brought the crazy carnival to Brighton that is : <a href="http://flashonthebeach.com">Flash on the Beach</a>! It keeps getting better and better every year. I love that I get to welcome all my very favourite speakers and friends to Brighton every year for what is now an epic unmissable conference. </p>
<p><a href="www.bbc.co.uk/cbbc/bluepeter/games/turkishbizarre.shtml " title="Blue Peter Turkish Bizarre"><img src="http://farm3.static.flickr.com/2716/4378919252_bcbf02a794.jpg" width="500" height="304" alt="BluePeterTurkishBizarre" /></a></p>
<p>We also finished working on a 4 level platform game for long running BBC kids&#8217; show Blue Peter, <a href="http://www.bbc.co.uk/cbbc/games/#/lb/games/play/bluepeterturkishbizarre">Turkish Bizarre</a>. It was a real joy to get back to some old-school platform game development with Dom and the team! And we got our <a href="http://en.wikipedia.org/wiki/Blue_peter#Badge">Blue Peter badges</a> too. <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>
<p>In October I started out an epic USA trip, <a href="http://sebleedelisle.com/2009/10/usa-euro-invasion-countdown-begins/">starting with Adobe MAX as part of the EuroMaxInvasion</a>. It was the first time I&#8217;d ever experienced a corporate conference of this scale, and I was uncomfortable with much of the business posturing I encountered. </p>
<p>The people that inspire me that I love to see on the circuit are not business people, and this conference is a million miles away from the cosy community events that I love. My ambivalence for the event clearly came across in the tone of one of my blog posts and caused a minor furore (later named <em>seb-gate</em> by Phillip Kerman hehe). The lesson I learned there was to make sure that my writing accurately represented my personality. </p>
<p><a href="http://www.flickr.com/photos/sebleedelisle/3998564552/" title="P1030932 by sebleedelisle, on Flickr"><img src="http://farm4.static.flickr.com/3446/3998564552_c7b7500d41.jpg" width="500" height="375" alt="P1030932" /></a></p>
<p>And there were many positive things about the conference, I got to meet Rachel Luxemburg and John Koch from the Adobe community team who are genuinely passionate about their involvement with the user groups. We were also nominated for a MAX award, that our friends at MLB.com won and they snuck me back-stage for a meet and greet with Luke Skywalker. But I sadly failed to wrestle the award from the vice-like grip of Thaniya from MLB. <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>
<p><a href="http://www.flickr.com/photos/sebleedelisle/4089387572/" title="P1040162 by sebleedelisle, on Flickr"><img src="http://farm3.static.flickr.com/2669/4089387572_861cc05701.jpg" stlye="float:left;margin-right:10px" width="281" height="500" alt="P1040162" /></a></p>
<p>Any anxiety about <em>seb-gate</em> quickly subsided as I continued on my trip! First spending a few days in LA with the awesome <a href="http://influxis.com/">Influxis</a>, and then moving on to San Francisco where I was very pleased to meet up with friends and a trip to the YouTube offices courtesy of my friend <a href="http://blog.deconcept.com">Geoff Stearns</a>. It was a crazy time in San Francisco, also squeezing in meetings with <a href="http://www.flight404.com/blog/">Robert Hodgin</a>, <a href="http://odopod.com/">Odopod</a> and hacker-space <a href="https://www.noisebridge.net/wiki/Noisebridge">NoiseBridge</a>. </p>
<p><a href="http://www.flickr.com/photos/sebleedelisle/4088627689/" title="P1040208 by sebleedelisle, on Flickr"><img src="http://farm3.static.flickr.com/2792/4088627689_12a48dfc37.jpg" width="500" height="281" alt="P1040208" /></a></p>
<p>And then on to Pittsburg for <a href="http://flashpitt.com/">FlashPitt</a>. Awesome! And I even got to see my first ever ice hockey game with <a href="http://blog.blprnt.com/">Jer Thorpe</a>, <a href="http://deleteaso.com/">Julian Dolce</a>, <a href="http://www.thisisportable.com/blog/">Val Head</a> (the conference organiser) and her husband Jason. </p>
<p>The final leg of my trip was in NYC where <a href="http://sebleedelisle.com/2009/11/i-paid-jennifers-parking-ticket/">I met ParkingTicket winner Jennifer and paid her ticket</a>, taught a sold-out one day workshop, and was then struck by what I now have decided to call swine flu <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  It was so frustrating to be in New York and yet be bed-ridden. Hmmm. </p>
<p>Then I realeased a <a href="http://sebleedelisle.com/2009/11/simple-flash-3d-drawing-api/">simple Flash 3D drawing API</a>, more as an experiment in an interface to drawing 3D shapes than anything else. If you like it, or have suggestions, let me know. I could integrate a system like this into Papervision3D.  </p>
<p><strong>November was crazy. </strong></p>
<p><a href="http://www.flickr.com/photos/41964989@N05/4146950486/" title="P1040349 by Plug-in Media, on Flickr"><img src="http://farm3.static.flickr.com/2652/4146950486_214dd1ccff.jpg" width="500" height="375" alt="P1040349" /></a></p>
<p>Accolades had been building for <a href="http://sebleedelisle.com/2009/06/big-big-papervision3d-project-for-small-people/">Big and Small</a>, we&#8217;d been nominated for many awards: <a href="http://sebleedelisle.com/2009/08/big-and-small-finalist-in-net-awards/">.net</a>, FITC, and <a href="http://sebleedelisle.com/2009/09/big-and-small-finalists-in-adobe-max-awards/">MAX</a> but we didn&#8217;t win any of them. In fact we&#8217;d never won any award we&#8217;d been nominated for! So it was quite a shock and of course<a href="http://sebleedelisle.com/2009/12/we-won-a-freaking-bafta/"> an absolute delight to win the BAFTA</a>. We&#8217;d all worked so hard on the project that it was an emotional moment. Not only is it a great honour to have all of our hard work recognised with such a prestigious award, but it&#8217;s also been a massive boost to our business at Plug-in Media. </p>
<p>The company is going from strength to strength, new staff, bigger offices and we&#8217;re taking advance bookings for the first time ever. (And we&#8217;re hiring &#8211; send me your CV!) We&#8217;re also near finishing another Papervision3D project (even bigger than Big and Small!), and 5 more for the BBC. But we&#8217;re also working for Turner Broadcasting and others. Watch this space for announcements as soon as we can talk about them. </p>
<p><strong>And in December things didn&#8217;t let up either. </strong></p>
<p>A venting of <a href="http://sebleedelisle.com/2009/12/flash-player-settings-panel-nightmare/">my frustrations about the FlashPlayer settings panel hosted on macromedia.com</a> led to a mini campaign to get this sorted. The <a href="http://bugs.adobe.com/jira/browse/FP-783">feature request</a> rocketed into the top ten issues on the FlashPlayer bug tracker and is now &#8220;under investigation&#8221;. Yay! But I have to admit, it&#8217;s made me realise that I should probably have a could deeper look at Jira as I&#8217;m sure there are other more important things that need to be fixed&#8230;</p>
<p><a href="http://sebleedelisle.com/2009/12/revealed-my-slightly-failed-music-career/"><img src="http://farm3.static.flickr.com/2586/4158071286_587d684cfe.jpg" alt="" /></a></p>
<p>I spent some time pondering my previous existence as a semi-failed rock star and told my story at the <a href="http://sebleedelisle.com/2009/12/revealed-my-slightly-failed-music-career/">£5App Christmas special</a>. And also stretched some of my musical muscles again by <a href="http://www.youtube.com/watch?v=vqnMG_Wnx2k&#038;feature=player_embedded">recording a Christmas song with Jenny</a>. Aw. </p>
<p><strong>FlashBrighton</strong></p>
<p>Another massive part of my life that gets hardly mentioned here is <a href="http://flashbrighton.org">FlashBrighton</a>, the local Flash user group that meets every week. We have a fantastic management team, and particular kudos to <a href="http://richtextformat.co.uk/">Richard Willis</a> who imaginative descriptions for every meeting are getting increasingly inspired. In 2009 we covered <a href="http://flashbrighton.org/?p=299">Flash Games with Iain Lobb</a>, <a href="http://flashbrighton.org/?p=266">Processing.js with Brendan Dawes</a>, <a href="http://flashbrighton.org/?p=278">Bug fixing with Niqui Merret</a>, and much, much more! </p>
<p>And we&#8217;ve now started streaming our sessions every week at <a href="http://live.flashbrighton.org">live.flashbrighton.org</a> thanks again to Influxis. Tune in every Tuesday around 7.30 GMT to join us. </p>
<p><strong>So what&#8217;s new for 2010? </strong></p>
<p>So far it&#8217;s been brilliant. (Hence the belated nature of this post!) My position at Plug-in Media has changed to be less focussed on production and concentrate more on R&#038;D, training and consultancy. I&#8217;m massively excited about what&#8217;s happening this year, I&#8217;m booked to speak at many conferences, FITC Amsterdam, Flash Games Summit, FFK Cologne, FMX Stuttgart, FATC New York, FlashBelt Minneapolis and Flash At the Lake in Zurich for starters! I&#8217;m also very excited about <a href="http://sebleedelisle.com/training">my training courses</a>, and I&#8217;m even recording a video series for <a href="http://lynda.com">Lynda.com</a> in April. </p>
<p>I have a huge list of technology that I want to learn, having already started with <a href="http://sebleedelisle.com/2010/01/multi-user-gaming-in-flash-early-tests/">ElectroServer</a> and Unity3D (insanely brilliant) and moving down my list with iPhone development and OpenFrameworks. </p>
<p>This is truly an exciting time in the field of digital creativity and I&#8217;m so pleased to be a part of this community. I feel incredibly excited about what this year will bring and I hope that you continue to enjoy my sharing of these experiences. Here&#8217;s to 2010!</p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2009/01/review-of-2008-in-pictures/' rel='bookmark' title='Permanent Link: Review of 2008 &#8211; in pictures'>Review of 2008 &#8211; in pictures</a></li>
<li><a href='http://sebleedelisle.com/2008/09/flash-on-the-beach-miami/' rel='bookmark' title='Permanent Link: Flash on the Beach Miami'>Flash on the Beach Miami</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=PwHWN1SQ6K8:VTDwhJlOFKo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=PwHWN1SQ6K8:VTDwhJlOFKo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=PwHWN1SQ6K8:VTDwhJlOFKo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=PwHWN1SQ6K8:VTDwhJlOFKo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=PwHWN1SQ6K8:VTDwhJlOFKo:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=PwHWN1SQ6K8:VTDwhJlOFKo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=PwHWN1SQ6K8:VTDwhJlOFKo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=PwHWN1SQ6K8:VTDwhJlOFKo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=PwHWN1SQ6K8:VTDwhJlOFKo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=PwHWN1SQ6K8:VTDwhJlOFKo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=PwHWN1SQ6K8:VTDwhJlOFKo:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sebleedelisle/~4/PwHWN1SQ6K8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2010/02/a-belated-review-of-2009/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://sebleedelisle.com/2010/02/a-belated-review-of-2009/</feedburner:origLink></item>
		<item>
		<title>FlashPlayer 10.1 coolness</title>
		<link>http://feedproxy.google.com/~r/sebleedelisle/~3/ojg2s1WBymw/</link>
		<comments>http://sebleedelisle.com/2010/02/flashplayer-10-1-coolness/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 21:58:57 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://sebleedelisle.com/?p=896</guid>
		<description><![CDATA[
I just got back from a crazy fleeting visit to Amsterdam for FITC, and now the dust is settling, I wanted to talk about some cool new features in FlashPlayer 10.1, especially now that FlashPlayer 10.1 Beta 3 has just been released on Adobe Labs!
RTMFP &#8211; Peer-to-peer networking
Yes it&#8217;s quite catchy name I know, and [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2008/01/seamlessly-looping-video-in-flash/' rel='bookmark' title='Permanent Link: Seamlessly looping video in Flash'>Seamlessly looping video in Flash</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p>I just got back from a crazy fleeting visit to Amsterdam for FITC, and now the dust is settling, I wanted to talk about some cool new features in FlashPlayer 10.1, especially now that<a href="http://labs.adobe.com/downloads/flashplayer10.html"> FlashPlayer 10.1 Beta 3 has just been released on Adobe Labs</a>!</p>
<p><strong>RTMFP &#8211; Peer-to-peer networking</strong></p>
<p>Yes it&#8217;s quite catchy name I know, and this stuff was introduced into the FlashPlayer at version 10, but I haven&#8217;t actually seen much use of it as yet. One of its limitations of it was that if you wanted to broadcast to multiple users your FlashPlayer would have to deliver that content to every single connected user. Which needs a lot of bandwidth!</p>
<p>But the new 10.1 introduces some really clever new technology that spreads the load across different users. So you can broadcast your video to one person and their FlashPlayer will then pass that stream on to other connected users nearby. It&#8217;s kinda like BitTorrent except it&#8217;s all in the browser. </p>
<p>This is a really exciting area for video broadcasting although I hear that on initial video tests it&#8217;s a little fragile &#8211; probably due to the fact that it&#8217;s based on the lossy UDP protocol. But its real strength should be in multiplayer gaming &#8211; I hear from my friends at Influxis that latency times are reduced by 50-75%. So this is an area I&#8217;ll be doing some research into that&#8217;s for sure!</p>
<p><strong>Microphone access &#8211; finally!</strong></p>
<p>This is something that caught me out a couple of years ago when we were creating a sound to vision system at FlashBrighton. We got some cool effects working with MP3 files, but then we realised we couldn&#8217;t actually use these at gigs as we couldn&#8217;t process the audio coming into the microphone/line input. </p>
<p>I was delighted to get the email notification yesterday <a href="http://bugs.adobe.com/jira/browse/FP-1766">that this feature request on Adobe&#8217;s Jira bug reporting system has now been completed!</a> <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Excellent news, it means that we can now create some fun audio triggered games. This is important for the type of kids&#8217; projects that we work on at Plug-in Media. </p>
<p><strong>Flash 10.1 for Devices</strong></p>
<p>This is hot news and I have to admit to being sceptical at first, as my luke-warm reports from MAX demonstrate. But no matter what you think about Flash on mobiles, you have to admit that FlashPlayer on Nexus One is an impressive engineering feat. The combination of a 1Ghz processor combined with a complete rewrite from the player engineers has brought the a fully functioning FlashPlayer on to a device for the first time. </p>
<p>Now clearly it has its limitations, I&#8217;ve tested the <a href="http://pluginmedia.net">Plug-in Media site</a> on it, and it runs at about 4 frames a second, and it also skips frames &#8211; a new way that the mobile FlashPlayer saves processor time. I&#8217;ve also tested <a href="http://sebleedelisle.com/games/lunarlander3d">LunarLander3D</a> on it, which also runs at 4 frames per second. To be fair though, these are both processor heavy projects pushing Flash in the browser to the limits.</p>
<p>Testing <a href="http://sebleedelisle.com/games/lunarlander3d">LunarLander3D</a> revealed another interesting issue &#8211; you can&#8217;t control this game at all as it is keyboard controlled. And you only get the keyboard entry pop-up if you click on a text field. So pretty much all key controlled flash games are gonna have to be rewritten if you wanna be able to play them on devices! </p>
<p>But this is very early days, and an excellent first step; the fact that a full FlashPlayer is running on these very limited platforms is very impressive. I think it&#8217;s going to be very interesting to see what happens over the next few months. </p>
<p>(If you&#8217;re interested in Flash on Devices you should definitely read <a href="http://www.bytearray.org/?p=1363">Thibault&#8217;s white paper on the subject</a>). </p>
<p>So exciting times for the Flash Platform, and these are the areas that caught my attention, but which new features of FlashPlayer10.1 excite you! <a href="http://labs.adobe.com/technologies/flashplayer10/features.html">There&#8217;s a full list here</a>.</p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2008/01/seamlessly-looping-video-in-flash/' rel='bookmark' title='Permanent Link: Seamlessly looping video in Flash'>Seamlessly looping video in Flash</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=ojg2s1WBymw:28h9uQYGPjE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=ojg2s1WBymw:28h9uQYGPjE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=ojg2s1WBymw:28h9uQYGPjE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=ojg2s1WBymw:28h9uQYGPjE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=ojg2s1WBymw:28h9uQYGPjE:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=ojg2s1WBymw:28h9uQYGPjE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=ojg2s1WBymw:28h9uQYGPjE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=ojg2s1WBymw:28h9uQYGPjE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=ojg2s1WBymw:28h9uQYGPjE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=ojg2s1WBymw:28h9uQYGPjE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=ojg2s1WBymw:28h9uQYGPjE:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sebleedelisle/~4/ojg2s1WBymw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2010/02/flashplayer-10-1-coolness/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://sebleedelisle.com/2010/02/flashplayer-10-1-coolness/</feedburner:origLink></item>
		<item>
		<title>Changing the default app to open a .swf on OSX</title>
		<link>http://feedproxy.google.com/~r/sebleedelisle/~3/vWfE_rC_yKo/</link>
		<comments>http://sebleedelisle.com/2010/02/changing-the-default-app-to-open-a-swf-on-osx/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 16:44:46 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sebleedelisle.com/?p=885</guid>
		<description><![CDATA[
This has been a massive problem to me lately, particularly with distributing files on my training courses. For some reason, the swf files that I give my attendees don&#8217;t open with the stand alone FlashPlayer, instead they often default to Flash CS4 etc. 
I know the usual way to do this is by right clicking [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2008/08/changing-a-cubes-material-dynamically-in-papervision3d/' rel='bookmark' title='Permanent Link: Changing a cube&#039;s material dynamically in Papervision3D'>Changing a cube&#039;s material dynamically in Papervision3D</a></li>
<li><a href='http://sebleedelisle.com/2009/12/problems-with-swc-files/' rel='bookmark' title='Permanent Link: Problems with .swc files'>Problems with .swc files</a></li>
<li><a href='http://sebleedelisle.com/2009/08/font-embedding-wtf-in-flash/' rel='bookmark' title='Permanent Link: Font embedding WTF in Flash'>Font embedding WTF in Flash</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p>This has been a massive problem to me lately, particularly with distributing files on my training courses. For some reason, the swf files that I give my attendees don&#8217;t open with the stand alone FlashPlayer, instead they often default to Flash CS4 etc. </p>
<p>I know the usual way to do this is by right clicking and selecting &#8220;Info&#8221; (or cmd-i) and then setting the app to open this file and then &#8220;Change All&#8221;. But for some reason, with swfs this doesn&#8217;t seem to work and it just reverts back to CS4 or whatever it was before. </p>
<p>This was driving me mental. </p>
<p>But I&#8217;ve found a fix &#8211; <a href="http://www.rubicode.com/Software/RCDefaultApp/">RCDefaultApp</a></p>
<p>This is a preferences pain that allows you to choose the app for a given file extension. </p>
<p><img src="http://farm5.static.flickr.com/4061/4373354728_f6c243dbee_o.jpg" alt="" /></p>
<p>This seemed to fix it for me but I&#8217;d love to know why this happens and how you&#8217;ve solved it on your machine, particularly for Windows. And you&#8217;ll save me a lot of trouble in my upcoming training courses!</p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2008/08/changing-a-cubes-material-dynamically-in-papervision3d/' rel='bookmark' title='Permanent Link: Changing a cube&#039;s material dynamically in Papervision3D'>Changing a cube&#039;s material dynamically in Papervision3D</a></li>
<li><a href='http://sebleedelisle.com/2009/12/problems-with-swc-files/' rel='bookmark' title='Permanent Link: Problems with .swc files'>Problems with .swc files</a></li>
<li><a href='http://sebleedelisle.com/2009/08/font-embedding-wtf-in-flash/' rel='bookmark' title='Permanent Link: Font embedding WTF in Flash'>Font embedding WTF in Flash</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=vWfE_rC_yKo:NGL7b_tCjaM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=vWfE_rC_yKo:NGL7b_tCjaM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=vWfE_rC_yKo:NGL7b_tCjaM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=vWfE_rC_yKo:NGL7b_tCjaM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=vWfE_rC_yKo:NGL7b_tCjaM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=vWfE_rC_yKo:NGL7b_tCjaM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=vWfE_rC_yKo:NGL7b_tCjaM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=vWfE_rC_yKo:NGL7b_tCjaM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=vWfE_rC_yKo:NGL7b_tCjaM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=vWfE_rC_yKo:NGL7b_tCjaM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=vWfE_rC_yKo:NGL7b_tCjaM:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sebleedelisle/~4/vWfE_rC_yKo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2010/02/changing-the-default-app-to-open-a-swf-on-osx/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://sebleedelisle.com/2010/02/changing-the-default-app-to-open-a-swf-on-osx/</feedburner:origLink></item>
		<item>
		<title>Deleting .svn files on OSX</title>
		<link>http://feedproxy.google.com/~r/sebleedelisle/~3/k4ruwl0Q53Y/</link>
		<comments>http://sebleedelisle.com/2010/02/deleting-svn-files-on-osx/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 16:29:35 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sebleedelisle.com/?p=882</guid>
		<description><![CDATA[
Go to the terminal, navigate to the folder you want to delete files from and type : 

find . -name "*.svn" -exec rm -rf {} \;

This should delete all .svn folders in the current directory and recurse down into sub-folders too. Please be careful with this!   
I also found this handy AppleScript which [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2006/12/flash-on-the-beach-flash-3d-source-files/' rel='bookmark' title='Permanent Link: FOTB Flash 3D source files'>FOTB Flash 3D source files</a></li>
<li><a href='http://sebleedelisle.com/2007/06/flashbelt-particle-presentation-source-files/' rel='bookmark' title='Permanent Link: FlashBelt Particle presentation &#8211; source files'>FlashBelt Particle presentation &#8211; source files</a></li>
<li><a href='http://sebleedelisle.com/2008/06/flashbelt-source-files/' rel='bookmark' title='Permanent Link: FlashBelt source files'>FlashBelt source files</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p>Go to the terminal, navigate to the folder you want to delete files from and type : </p>
<p><code lang="bash"><br />
find . -name "*.svn" -exec rm -rf {} \;<br />
</code></p>
<p>This should delete all .svn folders in the current directory and recurse down into sub-folders too. Please be careful with this! <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>
<p>I also found this handy AppleScript which will toggle hidden files on the mac:<br />
<a href='http://sebleedelisle.com/wp-content/uploads/2010/02/ToggleHiddenFiles.zip'>ToggleHiddenFiles</a></p>
<p>Thanks to Niqui Merret and Raymond De Vries for helping with this. </p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2006/12/flash-on-the-beach-flash-3d-source-files/' rel='bookmark' title='Permanent Link: FOTB Flash 3D source files'>FOTB Flash 3D source files</a></li>
<li><a href='http://sebleedelisle.com/2007/06/flashbelt-particle-presentation-source-files/' rel='bookmark' title='Permanent Link: FlashBelt Particle presentation &#8211; source files'>FlashBelt Particle presentation &#8211; source files</a></li>
<li><a href='http://sebleedelisle.com/2008/06/flashbelt-source-files/' rel='bookmark' title='Permanent Link: FlashBelt source files'>FlashBelt source files</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=k4ruwl0Q53Y:8ITJjAbWW0o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=k4ruwl0Q53Y:8ITJjAbWW0o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=k4ruwl0Q53Y:8ITJjAbWW0o:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=k4ruwl0Q53Y:8ITJjAbWW0o:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=k4ruwl0Q53Y:8ITJjAbWW0o:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=k4ruwl0Q53Y:8ITJjAbWW0o:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=k4ruwl0Q53Y:8ITJjAbWW0o:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=k4ruwl0Q53Y:8ITJjAbWW0o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=k4ruwl0Q53Y:8ITJjAbWW0o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=k4ruwl0Q53Y:8ITJjAbWW0o:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=k4ruwl0Q53Y:8ITJjAbWW0o:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sebleedelisle/~4/k4ruwl0Q53Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2010/02/deleting-svn-files-on-osx/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://sebleedelisle.com/2010/02/deleting-svn-files-on-osx/</feedburner:origLink></item>
		<item>
		<title>More training courses in Cologne, Minneapolis, New York and San Francisco</title>
		<link>http://feedproxy.google.com/~r/sebleedelisle/~3/Q71O3iflYNU/</link>
		<comments>http://sebleedelisle.com/2010/02/more-training-courses-in-cologne-minneapolis-new-york-and-san-francisco/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 15:07:31 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash 3D]]></category>
		<category><![CDATA[Game programming]]></category>
		<category><![CDATA[Papervision3D]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[Training Courses]]></category>

		<guid isPermaLink="false">http://sebleedelisle.com/?p=845</guid>
		<description><![CDATA[
I&#8217;ve just finished my Brighton training courses which were seriously good fun, and everyone seemed to enjoy themselves, I&#8217;ve certainly got excellent feedback so far!
My next training course is short notice; it&#8217;ll be a Papervision course in San Francisco on the 9th March particularly aimed at 3D games. It&#8217;ll coincide with the Flash games summit [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2008/07/papervision-training-win-125-off/' rel='bookmark' title='Permanent Link: Papervision training &#8211; win $125 off!'>Papervision training &#8211; win $125 off!</a></li>
<li><a href='http://sebleedelisle.com/2009/07/papervision3d-training-at-flash-on-the-beach/' rel='bookmark' title='Permanent Link: Papervision3D training at Flash on the Beach'>Papervision3D training at Flash on the Beach</a></li>
<li><a href='http://sebleedelisle.com/2009/12/uk-papervision3d-training-february-2010/' rel='bookmark' title='Permanent Link: UK Papervision3D training February 2010'>UK Papervision3D training February 2010</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p>I&#8217;ve just finished my Brighton training courses which were seriously good fun, and everyone seemed to enjoy themselves, I&#8217;ve certainly got excellent feedback so far!</p>
<p>My next training course is short notice; it&#8217;ll be a Papervision course in San Francisco on the 9th March particularly aimed at 3D games. It&#8217;ll coincide with the Flash games summit so if you&#8217;re interested, <a href="http://sebleedelisle.com/about">let me know</a> and I&#8217;ll make sure to get in touch with more information as I have it. </p>
<p>Then it&#8217;s on to Cologne for FFK in April, where I&#8217;m running both a Papervision3D course and a Flash games training course! <a href="http://ffk10.flashforum.de/">More info on the FFK website</a>. </p>
<p>And back to NYC for Flash and the City in May, and I&#8217;ll be running courses around the conference. Again, <a href="http://sebleedelisle.com/about">mail me</a> if you&#8217;re interested and I&#8217;ll send you the details as they are announced. </p>
<p>And finally in <a href="http://flashbelt.com/">FlashBelt</a> in June, I&#8217;ll be teaching a<a href="http://flashbelt.com/#/speakers/"> one day Flash games workshop</a>. Teaching you maths by stealth &#8211; who knew that you could learn trigonometry from Asteroids and vector maths from platform games? <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  It&#8217;s a fantastic conference and I&#8217;m really looking forward to coming back for my fourth year in a row! </p>
<p>Can&#8217;t make any of these events? Then help me organise one near you! <a href="http://sebleedelisle.com/about">Mail me</a>.</p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2008/07/papervision-training-win-125-off/' rel='bookmark' title='Permanent Link: Papervision training &#8211; win $125 off!'>Papervision training &#8211; win $125 off!</a></li>
<li><a href='http://sebleedelisle.com/2009/07/papervision3d-training-at-flash-on-the-beach/' rel='bookmark' title='Permanent Link: Papervision3D training at Flash on the Beach'>Papervision3D training at Flash on the Beach</a></li>
<li><a href='http://sebleedelisle.com/2009/12/uk-papervision3d-training-february-2010/' rel='bookmark' title='Permanent Link: UK Papervision3D training February 2010'>UK Papervision3D training February 2010</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=Q71O3iflYNU:DKRoJhKZ38Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=Q71O3iflYNU:DKRoJhKZ38Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=Q71O3iflYNU:DKRoJhKZ38Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=Q71O3iflYNU:DKRoJhKZ38Q:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=Q71O3iflYNU:DKRoJhKZ38Q:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=Q71O3iflYNU:DKRoJhKZ38Q:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=Q71O3iflYNU:DKRoJhKZ38Q:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=Q71O3iflYNU:DKRoJhKZ38Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=Q71O3iflYNU:DKRoJhKZ38Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=Q71O3iflYNU:DKRoJhKZ38Q:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=Q71O3iflYNU:DKRoJhKZ38Q:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sebleedelisle/~4/Q71O3iflYNU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2010/02/more-training-courses-in-cologne-minneapolis-new-york-and-san-francisco/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://sebleedelisle.com/2010/02/more-training-courses-in-cologne-minneapolis-new-york-and-san-francisco/</feedburner:origLink></item>
		<item>
		<title>Can’t spell my name? Use seb.ly</title>
		<link>http://feedproxy.google.com/~r/sebleedelisle/~3/T9wdGsCYgvo/</link>
		<comments>http://sebleedelisle.com/2010/02/use-sebly/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 13:54:50 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://sebleedelisle.com/?p=841</guid>
		<description><![CDATA[
I often get complaints about my domain name. Is it that hard to spell my surname? I guess it&#8217;s a bit of a strange one. 
People seem to think that my first name is Seb-Lee but it&#8217;s not; Seb is my first name and Lee-Delisle is my surname. 
But seeing as people seem to call [...]


No related posts.]]></description>
			<content:encoded><![CDATA[
<p>I often get complaints about my domain name. Is it that hard to spell my surname? I guess it&#8217;s a bit of a strange one. </p>
<p>People seem to think that my first name is <em>Seb-Lee</em> but it&#8217;s not; <em>Seb</em> is my first name and <em>Lee-Delisle</em> is my surname. </p>
<p>But seeing as people seem to call me Seb-Lee (and close friends even sometimes call me Sebly), I&#8217;ve now registered the domain <strong>seb.ly</strong> and it&#8217;s set up to point here! It&#8217;s a full redirection service, so think of it as a short URL. <img src='http://sebleedelisle.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>
<p>And hopefully that&#8217;ll help with the typing&#8230; </p>



<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=T9wdGsCYgvo:haK1GeYDpgI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=T9wdGsCYgvo:haK1GeYDpgI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=T9wdGsCYgvo:haK1GeYDpgI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=T9wdGsCYgvo:haK1GeYDpgI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=T9wdGsCYgvo:haK1GeYDpgI:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=T9wdGsCYgvo:haK1GeYDpgI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=T9wdGsCYgvo:haK1GeYDpgI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=T9wdGsCYgvo:haK1GeYDpgI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=T9wdGsCYgvo:haK1GeYDpgI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=T9wdGsCYgvo:haK1GeYDpgI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=T9wdGsCYgvo:haK1GeYDpgI:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sebleedelisle/~4/T9wdGsCYgvo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2010/02/use-sebly/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://sebleedelisle.com/2010/02/use-sebly/</feedburner:origLink></item>
		<item>
		<title>Giving ElectroServer more memory</title>
		<link>http://feedproxy.google.com/~r/sebleedelisle/~3/sOgy47901O4/</link>
		<comments>http://sebleedelisle.com/2010/01/giving-electroserver-more-memory/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 22:56:37 +0000</pubDate>
		<dc:creator>Seb Lee-Delisle</dc:creator>
				<category><![CDATA[ElectroServer]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Multi-user]]></category>

		<guid isPermaLink="false">http://sebleedelisle.com/?p=825</guid>
		<description><![CDATA[
So after last time,  I thought I&#8217;d given ElectroServer more memory, but it turns out I hadn&#8217;t. I&#8217;m not exactly sure why, but I suspect it&#8217;s something about how Media Temple is set up. 
So rather than call the main ElectroServer app (which is just a shell script), I&#8217;m opening the ElectroServer jar file, [...]


Related posts:<ol><li><a href='http://sebleedelisle.com/2010/01/electroserver-security-sandbox-violation-error/' rel='bookmark' title='Permanent Link: ElectroServer security sandbox violation error'>ElectroServer security sandbox violation error</a></li>
<li><a href='http://sebleedelisle.com/2009/12/installing-electroserver-on-mac-osx/' rel='bookmark' title='Permanent Link: Installing ElectroServer on Mac OSX'>Installing ElectroServer on Mac OSX</a></li>
<li><a href='http://sebleedelisle.com/2009/12/installing-electroserver-on-mediatemple/' rel='bookmark' title='Permanent Link: Installing ElectroServer on MediaTemple'>Installing ElectroServer on MediaTemple</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://sebleedelisle.com/2010/01/electroserver-security-sandbox-violation-error/">So after last time, </a> I thought I&#8217;d given ElectroServer more memory, but it turns out I hadn&#8217;t. I&#8217;m not exactly sure why, but I suspect it&#8217;s something about how Media Temple is set up. </p>
<p>So rather than call the main ElectroServer app (which is just a shell script), I&#8217;m opening the ElectroServer jar file, and that way I can tell java how much memory to use (and other options) as parameters.</p>
<p>I&#8217;m pretty sure Java is installed somewhere on Media Temple (you need to install the dev tools) but I couldn&#8217;t find it anywhere! And if I just typed <em>java</em> it couldn&#8217;t find it. I even ran a find command, but it was nowhere! But then I realised that the Java runtime is packaged with ElectroServer in the <em>jre</em> folder! </p>
<p><del datetime="2010-02-03T09:25:46+00:00">So with a bit of fiddling I worked out that I could start ElectroServer with more memory by running the jar file, but I had to do it while in the <em>server</em> subfolder within the ES install.  </del></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">..<span style="color: #000000; font-weight: bold;">/</span>jre<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>java <span style="color: #660033;">-Xmx128M</span> <span style="color: #660033;">-jar</span> lib<span style="color: #000000; font-weight: bold;">/</span>ElectroServer4-bootstrap.jar <span style="color: #660033;">-mode</span> StandAlone <span style="color: #660033;">-config</span> config<span style="color: #000000; font-weight: bold;">/</span>ES4Configuration.xml</pre></div></div>

<p><del datetime="2010-02-03T09:25:46+00:00">where <em>128M</em> is the amount of RAM made available.<br />
</del></p>
<p><strong>[UPDATE] </strong></p>
<p>There is a better way! Thanks to Paul Hayes (a colleague at Plug-in Media, see comments below) I have now realised that ElectroServer&#8217;s main app is nothing more than a shell script that you can edit. Furthermore there is a line you can uncomment right at the top to change the Java parameters :</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Uncomment the following line to add additional VM parameters</span>
<span style="color: #666666; font-style: italic;"># INSTALL4J_ADD_VM_PARAMS=</span></pre></div></div>

<p>Change this to :</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Uncomment the following line to add additional VM parameters</span>
<span style="color: #007800;">INSTALL4J_ADD_VM_PARAMS</span>=<span style="color: #ff0000;">&quot;-Xmx512m&quot;</span></pre></div></div>

<p>Where 512 is the amount of RAM in Mb you want ElectroServer to use. </p>



<p>Related posts:<ol><li><a href='http://sebleedelisle.com/2010/01/electroserver-security-sandbox-violation-error/' rel='bookmark' title='Permanent Link: ElectroServer security sandbox violation error'>ElectroServer security sandbox violation error</a></li>
<li><a href='http://sebleedelisle.com/2009/12/installing-electroserver-on-mac-osx/' rel='bookmark' title='Permanent Link: Installing ElectroServer on Mac OSX'>Installing ElectroServer on Mac OSX</a></li>
<li><a href='http://sebleedelisle.com/2009/12/installing-electroserver-on-mediatemple/' rel='bookmark' title='Permanent Link: Installing ElectroServer on MediaTemple'>Installing ElectroServer on MediaTemple</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=sOgy47901O4:SMjcYuiznIM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=sOgy47901O4:SMjcYuiznIM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=sOgy47901O4:SMjcYuiznIM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=sOgy47901O4:SMjcYuiznIM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=sOgy47901O4:SMjcYuiznIM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=sOgy47901O4:SMjcYuiznIM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=sOgy47901O4:SMjcYuiznIM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=sOgy47901O4:SMjcYuiznIM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=sOgy47901O4:SMjcYuiznIM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/sebleedelisle?a=sOgy47901O4:SMjcYuiznIM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/sebleedelisle?i=sOgy47901O4:SMjcYuiznIM:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/sebleedelisle/~4/sOgy47901O4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sebleedelisle.com/2010/01/giving-electroserver-more-memory/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<feedburner:origLink>http://sebleedelisle.com/2010/01/giving-electroserver-more-memory/</feedburner:origLink></item>
	</channel>
</rss>
