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

<channel>
	<title>Crossflight Studio</title>
	<atom:link href="http://crossflightstudio.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://crossflightstudio.com</link>
	<description>Personal Portfolio of Chris LaChance</description>
	<lastBuildDate>Tue, 07 Sep 2010 00:09:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Preparing for HTML5 Video Using MP4s</title>
		<link>http://crossflightstudio.com/2010/preparing-for-html5-video-using-mp4s/</link>
		<comments>http://crossflightstudio.com/2010/preparing-for-html5-video-using-mp4s/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 00:09:06 +0000</pubDate>
		<dc:creator>cfstudio</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://crossflightstudio.com/?p=50</guid>
		<description><![CDATA[HTML5 has been pretty exciting for me, especially since I can now deliver video to Apple devices. And since I am really not into supporting 3 or 4 different video types per browser (ogg, web&#62;m, mp4, etc), I&#8217;ve decided to roll with the video type that is the closest to a one stop solution. The [...]]]></description>
			<content:encoded><![CDATA[<p>HTML5 has been pretty exciting for me, especially since I can now deliver video to Apple devices. And since I am really not into supporting 3 or 4 different video types per browser (ogg, web&gt;m, mp4, etc), I&#8217;ve decided to roll with the video type that is the closest to a one stop solution. The MP4 using the video solution <a title="Video JS - HTML5 Video Player" href="http://videojs.com" target="_blank">VideoJS</a>.</p>
<p>I know that there are potential royalty issues with the MP4, but for now its the best one-shot solution. But to get the best out of your MP4 for Apple devices, modern browsers &amp; Flash, there are a few things you should know.</p>
<p><span id="more-50"></span>1. You may notice some MP4&#8242;s you make don&#8217;t buffer properly in either Flash or HTML5 Video containers. It&#8217;s most likely your metadata &amp; indexing inside your MP4 is not ordered properly by the encoder you&#8217;ve used. Not to worry. I&#8217;ve found a great program in some forums called <a title="MP4 FastStart" href="http://www.datagoround.com/lab/" target="_blank">MP4 FastStart</a>. It re-orders &amp; re-indexes your MP4 metadata for you, thus correcting common buffer issues.</p>
<p>2. For MP4s to work right in the iPad, you must make sure the first source tag contains your MP4 link.</p>
<p>3. Make sure your &#8220;type&#8221; in the source tag reads type=&#8217;video/mp4; codecs=&#8221;avc1.42E01E, mp4a.40.2&#8243;&#8216;</p>
<p>4. For a listing of how you want to have your video customized (preload, autoplay, etc), visit <a title="W3 Schools Video Tag" href="http://www.w3schools.com/html5/tag_video.asp" target="_blank">W3 Schools</a> for more info.</p>
<p>Those are pretty much the common hang-ups I&#8217;ve had. Let me know if you know of a great robust encoder that can easily convert to MP4 for free.</p>
]]></content:encoded>
			<wfw:commentRss>http://crossflightstudio.com/2010/preparing-for-html5-video-using-mp4s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Targeting iPod, iPhone, and iPad with Javascript</title>
		<link>http://crossflightstudio.com/2010/targeting-ipod-iphone-and-ipad-with-javascript/</link>
		<comments>http://crossflightstudio.com/2010/targeting-ipod-iphone-and-ipad-with-javascript/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 00:08:38 +0000</pubDate>
		<dc:creator>cfstudio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[detection]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[stylesheet]]></category>

		<guid isPermaLink="false">http://crossflightstudio.com/?p=47</guid>
		<description><![CDATA[Targeting an iPod, iPad, and iPhone specifically with Javascript.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working with Apple products and HTML5 video quite a bit lately. And one thing I actually found quite a pain to locate was, how do I target an iPod, iPad, and iPhone specifically?</p>
<p>Its actually pretty simple.</p>
<p><span id="more-47"></span></p>
<p>First you&#8217;ll need the following line of Javascript.<br />
<pre><pre>
&lt;pre id=&quot;line1&quot;&gt;var agent=navigator.userAgent.toLowerCase();
</pre></pre>
</pre>
<p>Then you can target by checking the returned string (the variable "agent") for the words ipad, iphone, or ipod. I've included an example below.<br />
<pre><pre>
&lt;pre&gt;
&lt;pre id=&quot;line1&quot;&gt;if(agent.indexOf(&#039;ipad&#039;)!=-1){
&nbsp;&nbsp; alert(&quot;Your running an iPad&quot;);
}</pre></pre>
</pre>
</pre>
<p>Pretty simple right? Imagine combining this with jQuery for different page styles, running different bits of code for different users, etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://crossflightstudio.com/2010/targeting-ipod-iphone-and-ipad-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash : Useful Extensions</title>
		<link>http://crossflightstudio.com/2010/flash-useful-extensions/</link>
		<comments>http://crossflightstudio.com/2010/flash-useful-extensions/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 19:13:37 +0000</pubDate>
		<dc:creator>cfstudio</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://crossflightstudio.com/?p=36</guid>
		<description><![CDATA[For those you Flash animators out there, Ajar Productions has a slew of very helpful extensions for your animating. Check them out here. My personal favorite is Queasy Tools.]]></description>
			<content:encoded><![CDATA[<p>For those you Flash animators out there, <a href="http://ajarproductions.com" target="_blank">Ajar Productions</a> has a slew of very helpful extensions for your animating. Check them out <a href="http://ajarproductions.com/blog/adobe-extensions/" target="_blank">here</a>.</p>
<p>My personal favorite is <a href="http://ajarproductions.com/blog/2008/07/15/queasy-tools-panel-v150/" target="_blank">Queasy Tools</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://crossflightstudio.com/2010/flash-useful-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery : Make any truly external links open in new window</title>
		<link>http://crossflightstudio.com/2010/jquery-make-any-truly-external-links-open-in-new-window/</link>
		<comments>http://crossflightstudio.com/2010/jquery-make-any-truly-external-links-open-in-new-window/#comments</comments>
		<pubDate>Sun, 30 May 2010 19:41:16 +0000</pubDate>
		<dc:creator>cfstudio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://crossflightstudio.com/?p=25</guid>
		<description><![CDATA[Well, I&#8217;m now learning jQuery &#38; JS pretty hardcore, and I just had a request to make all site links that are external open in a new window. No big deal with jQuery! &#60;script src=&#34;http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34;&#62; // Blank windows for non-local site links $(&#34;a[href*=http://]&#34;).not(&#34;a[href*=&#34;+location.host+&#34;]&#34;).attr(&#34;target&#34;,&#34;_blank&#34;); &#60;/script&#62; &#60;a href=&#34;http://crossflightstudio.com&#34;&#62;Personal Site&#60;/a&#62; &#60;a href=&#34;/home/&#34;&#62;Relative Link&#60;/a&#62; &#60;a href=&#34;http://jonaswoods.net/home&#34;&#62;Jonas [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;m now learning jQuery &amp; JS pretty hardcore, and I just had a request to make all site links that are external open in a new window. No big deal with jQuery!<br />
<pre><pre>
&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
// Blank windows for non-local site links
$(&quot;a[href*=http://]&quot;).not(&quot;a[href*=&quot;+location.host+&quot;]&quot;).attr(&quot;target&quot;,&quot;_blank&quot;);
&lt;/script&gt;
&lt;a href=&quot;http://crossflightstudio.com&quot;&gt;Personal Site&lt;/a&gt;
&lt;a href=&quot;/home/&quot;&gt;Relative Link&lt;/a&gt;
&lt;a href=&quot;http://jonaswoods.net/home&quot;&gt;Jonas Woods Home&lt;/a&gt;
&lt;a href=&quot;http://google.com&quot;&gt;Google&lt;/a&gt;
</pre></pre><br />
And there you have it. Site-wide external link re-writing. Simple, eh? Think I&#8217;m going to love jQuery. <del datetime="2010-08-21T01:47:13+00:00">If you want to get really crazy you could always use JS to grab the location (base site URL) and dynamically write it in.</del> Updated!</p>
]]></content:encoded>
			<wfw:commentRss>http://crossflightstudio.com/2010/jquery-make-any-truly-external-links-open-in-new-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JonasWoods.net is live!</title>
		<link>http://crossflightstudio.com/2010/jonaswoods-net-is-live/</link>
		<comments>http://crossflightstudio.com/2010/jonaswoods-net-is-live/#comments</comments>
		<pubDate>Tue, 25 May 2010 00:29:00 +0000</pubDate>
		<dc:creator>cfstudio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[chalk]]></category>
		<category><![CDATA[jonas]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[transparent]]></category>

		<guid isPermaLink="false">http://crossflightstudio.com/?p=23</guid>
		<description><![CDATA[JonasWoods.net just went live! Both Jonas &#38; I are stoked! The site is just the way both of us hoped it would be, complete with MailChimp integration, GigPress, and an HTML 5 audio player. Not to mention the awesome retro vintage chalk board FX. Hot! Seriously though, I ma very pleased with how this site [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jonaswoods.net">JonasWoods.net</a> just went live! Both Jonas &amp; I are stoked!</p>
<p>The site is just the way both of us hoped it would be, complete with MailChimp integration, GigPress, and an HTML 5 audio player. Not to mention the awesome retro vintage chalk board FX. Hot!</p>
<p>Seriously though, I ma very pleased with how this site came out. Thanks Jonas for letting me work with you on such a cool site.</p>
]]></content:encoded>
			<wfw:commentRss>http://crossflightstudio.com/2010/jonaswoods-net-is-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Haiku : Calligrapher&#039;s Joy</title>
		<link>http://crossflightstudio.com/2010/haiku-calligraphers-joy/</link>
		<comments>http://crossflightstudio.com/2010/haiku-calligraphers-joy/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 10:25:57 +0000</pubDate>
		<dc:creator>cfstudio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[haiku]]></category>

		<guid isPermaLink="false">http://crossflightstudio.com/?p=16</guid>
		<description><![CDATA[I was into Haiku for a bit, so I wrote one of my own. Graceful, Elegant Bold strokes dance upon paper Calligrapher’s joy]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I was into Haiku for a bit, so I wrote one of my own.</p>
<p style="text-align: left;">Graceful, Elegant<br />
Bold strokes dance upon paper<br />
Calligrapher’s joy</p>
]]></content:encoded>
			<wfw:commentRss>http://crossflightstudio.com/2010/haiku-calligraphers-joy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash : My Image Keeps Turning Into a Red Block!</title>
		<link>http://crossflightstudio.com/2010/flash-my-image-keeps-turning-into-a-red-block/</link>
		<comments>http://crossflightstudio.com/2010/flash-my-image-keeps-turning-into-a-red-block/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 10:23:45 +0000</pubDate>
		<dc:creator>cfstudio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://crossflightstudio.com/?p=14</guid>
		<description><![CDATA[Maybe you’ve seen this error. Maybe not. But for those of you that have, you&#8217;ve probably cried yourself to sleep thinking the whole project is corrupted. Re‐importing the image every time you work with the ﬁle is no fun. So what can you do? And I’m glad to let you know, I seemed to have [...]]]></description>
			<content:encoded><![CDATA[<p>Maybe you’ve seen this error. Maybe not. But for those of you that have, you&#8217;ve probably cried yourself to sleep thinking the whole project is corrupted. Re‐importing the image every time you work with the ﬁle is no fun. So what can you do?</p>
<p><span id="more-14"></span></p>
<p>And I’m glad to let you know, I seemed to have found a fix. Exporting graphics from Photoshop at the PNG‐24 Save For Web setting with transparency active, for whatever reason, causes Flash to occasionally throw an error when your FLA reloads. Apparently the issue comes from the PNG having a solid colored pixel touching an edge, and transparent pixel also touching an edge.</p>
<p>The fix is simple. Merely increase the RELATIVE canvas size by 2 on both the width &amp; height in Photoshop &amp; re-export your image. That&#8217;s all. After all these years of the obscure broken image…</p>
]]></content:encoded>
			<wfw:commentRss>http://crossflightstudio.com/2010/flash-my-image-keeps-turning-into-a-red-block/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instant Storm : Free SWF to Screensaver Application</title>
		<link>http://crossflightstudio.com/2010/instant-storm-free-swf-to-screensaver-application/</link>
		<comments>http://crossflightstudio.com/2010/instant-storm-free-swf-to-screensaver-application/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 16:28:21 +0000</pubDate>
		<dc:creator>cfstudio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[instant]]></category>
		<category><![CDATA[screensaver]]></category>
		<category><![CDATA[storm]]></category>

		<guid isPermaLink="false">http://crossflightstudio.com/?p=10</guid>
		<description><![CDATA[Instant Storm is a cool little project for making Flash screen-savers. It has many customizable features, from stretching SWFs, to adjusting screen resolution, and customizing your installer. Good source of fun, or potentially income! Be sure and install the latest version, and then the newest beta. Don&#8217;t forget to give back!]]></description>
			<content:encoded><![CDATA[<p><a title="Instant Storm : Flash Screensaver" href="http://www.instantstorm.com/">Instant Storm</a> is a cool little project for making Flash screen-savers.</p>
<p>It has many customizable features, from stretching SWFs, to adjusting screen resolution, and customizing your installer. Good source of fun, or potentially income!</p>
<p>Be sure and install the latest version, and then the newest beta.</p>
<p>Don&#8217;t forget to give back!</p>
]]></content:encoded>
			<wfw:commentRss>http://crossflightstudio.com/2010/instant-storm-free-swf-to-screensaver-application/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Refresh</title>
		<link>http://crossflightstudio.com/2010/hello-world-2/</link>
		<comments>http://crossflightstudio.com/2010/hello-world-2/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 17:18:31 +0000</pubDate>
		<dc:creator>cfstudio</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://crossflightstudio.com/?p=1</guid>
		<description><![CDATA[Something funky happened to my database&#8230; I&#8217;m going to be restoring old posts as I can.]]></description>
			<content:encoded><![CDATA[<p>Something funky happened to my database&#8230; I&#8217;m going to be restoring old posts as I can.</p>
]]></content:encoded>
			<wfw:commentRss>http://crossflightstudio.com/2010/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash : Native Image Compression Stats</title>
		<link>http://crossflightstudio.com/2009/flash-native-image-compression-stats/</link>
		<comments>http://crossflightstudio.com/2009/flash-native-image-compression-stats/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 19:07:13 +0000</pubDate>
		<dc:creator>cfstudio</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[filesize]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://crossflightstudio.com/?p=31</guid>
		<description><![CDATA[For those looking to optimize file‐size inside (and outside) of your Flash movie, I have done a fairly in‐depth amount of research into which formats Flash handles best once loaded into the main timeline. While I know that many no longer do this, it is ideal for those of us who still do animated presentations [...]]]></description>
			<content:encoded><![CDATA[<div><span style="font-family: Calibri;">For those looking to optimize file‐size inside (and outside) of your Flash movie, I have done a fairly in‐depth amount of research into which formats Flash handles best once loaded into the main timeline. While I know that many no longer do this, it is ideal for those of us who still do animated presentations on the timeline. I was always under the impression that PNG‐24 was the smallest file‐size on publish, but I was wrong.</span></div>
<div><span style="font-family: Calibri;">After extensive testing, a flattened LZW TIF with default Photoshop se6ngs seemed to compress the best for images without transparency &amp; take up the least amount of filesize on disk. But, for those transparent image needs PNG‐24 (using the Save for Web dialog) won out.</span></div>
<p><span style="font-family: Calibri;">I also noticed, just switching the AS library from 2 –3 barely increased filesize on publish as well. The same was true with activating JPG de‐blocking.</p>
<p>Obviously, if you are remotely loading your images, the smallest file‐size image wins that test.</p>
<div><span style="font-family: Calibri;">Get the <a title="Flash Image Compression Breakdown" href="http://crossflightstudio.com/wp-content/uploads/2010/08/Image-Compression-in-Flash.pdf" target="_blank">PDF of the breakdown here</a>.</span></div>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://crossflightstudio.com/2009/flash-native-image-compression-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
