<?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>Geek.blog &#187; Technology</title>
	<atom:link href="http://blog.728media.com/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.728media.com</link>
	<description>Advanced Flash and Actionscript 3 by Andrew Christensen</description>
	<lastBuildDate>Wed, 12 Aug 2009 04:30:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Stream and Playback Live Video using Flash Media Server</title>
		<link>http://blog.728media.com/2009/08/11/how-to-stream-and-playback-live-video-using-flash-media-server/</link>
		<comments>http://blog.728media.com/2009/08/11/how-to-stream-and-playback-live-video-using-flash-media-server/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 04:27:54 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=268</guid>
		<description><![CDATA[Sorry for the lack of instruction or description. I would rather hand off some code that works, rather than no code.
123456789101112131415161718192021222324252627282930313233343536373839var cameraPlayback:Video = new Video&#40;&#41;;
addChild&#40;cameraPlayback&#41;;

var camera:Camera = Camera.getCamera&#40;&#41;;
camera.setQuality&#40;0,100&#41;;

var publishStream:NetStream;
var playbackStream:NetStream;

var nc:NetConnection = new NetConnection&#40;&#41;;
nc.addEventListener&#40;NetStatusEvent.NET_STATUS, onNetStatus&#41;;

var client:Object = &#123;&#125;;
client.onBWCheck = function&#40;&#41; &#123; &#125;
client.onBWDone = function&#40;&#41; &#123; &#125;

nc.client = client;

nc.connect&#40;&#34;rtmp://YOUR_FMS_SERVER_URL/live/&#34;&#41;;

function onNetStatus&#40;e:NetStatusEvent&#41; &#123;

switch&#40;e.info.code&#41; &#123;
case &#34;NetConnection.Connect.Success&#34;:
publishStream = new NetStream&#40;nc&#41;;
publishStream.addEventListener&#40;NetStatusEvent.NET_STATUS, [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry for the lack of instruction or description. I would rather hand off some code that works, rather than no code.</p>
<div class="codecolorer-container actionscript vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;height:300px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br /></div></td><td><div class="actionscript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">var</span> cameraPlayback:<span style="color: #0066CC;">Video</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">Video</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
addChild<span style="color: #66cc66;">&#40;</span>cameraPlayback<span style="color: #66cc66;">&#41;</span>;<br />
<br />
<span style="color: #000000; font-weight: bold;">var</span> <span style="color: #0066CC;">camera</span>:<span style="color: #0066CC;">Camera</span> = <span style="color: #0066CC;">Camera</span>.<span style="color: #006600;">getCamera</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
<span style="color: #0066CC;">camera</span>.<span style="color: #0066CC;">setQuality</span><span style="color: #66cc66;">&#40;</span>0,100<span style="color: #66cc66;">&#41;</span>;<br />
<br />
<span style="color: #000000; font-weight: bold;">var</span> publishStream:<span style="color: #0066CC;">NetStream</span>;<br />
<span style="color: #000000; font-weight: bold;">var</span> playbackStream:<span style="color: #0066CC;">NetStream</span>;<br />
<br />
<span style="color: #000000; font-weight: bold;">var</span> nc:<span style="color: #0066CC;">NetConnection</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">NetConnection</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
nc.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span>NetStatusEvent.<span style="color: #006600;">NET_STATUS</span>, onNetStatus<span style="color: #66cc66;">&#41;</span>;<br />
<br />
<span style="color: #000000; font-weight: bold;">var</span> client:<span style="color: #0066CC;">Object</span> = <span style="color: #66cc66;">&#123;</span><span style="color: #66cc66;">&#125;</span>;<br />
client.<span style="color: #006600;">onBWCheck</span> = <span style="color: #000000; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> <span style="color: #66cc66;">&#125;</span><br />
client.<span style="color: #006600;">onBWDone</span> = <span style="color: #000000; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> <span style="color: #66cc66;">&#125;</span><br />
<br />
nc.<span style="color: #006600;">client</span> = client;<br />
<br />
nc.<span style="color: #0066CC;">connect</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;rtmp://YOUR_FMS_SERVER_URL/live/&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />
<br />
<span style="color: #000000; font-weight: bold;">function</span> onNetStatus<span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>:NetStatusEvent<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><br />
<br />
<span style="color: #b1b100;">switch</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>.<span style="color: #006600;">info</span>.<span style="color: #006600;">code</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><br />
<span style="color: #b1b100;">case</span> <span style="color: #ff0000;">&quot;NetConnection.Connect.Success&quot;</span>:<br />
publishStream = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">NetStream</span><span style="color: #66cc66;">&#40;</span>nc<span style="color: #66cc66;">&#41;</span>;<br />
publishStream.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span>NetStatusEvent.<span style="color: #006600;">NET_STATUS</span>, onNetStatus<span style="color: #66cc66;">&#41;</span>;<br />
publishStream.<span style="color: #006600;">attachCamera</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">camera</span><span style="color: #66cc66;">&#41;</span>;<br />
publishStream.<span style="color: #006600;">publish</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;myCamera&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />
<br />
playbackStream = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">NetStream</span><span style="color: #66cc66;">&#40;</span>nc<span style="color: #66cc66;">&#41;</span>;<br />
playbackStream.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span>NetStatusEvent.<span style="color: #006600;">NET_STATUS</span>, onNetStatus<span style="color: #66cc66;">&#41;</span>;<br />
playbackStream.<span style="color: #0066CC;">play</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;myCamera&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />
<br />
cameraPlayback.<span style="color: #006600;">attachNetStream</span><span style="color: #66cc66;">&#40;</span>playbackStream<span style="color: #66cc66;">&#41;</span>;<br />
<br />
<span style="color: #b1b100;">break</span>;<br />
<br />
<span style="color: #66cc66;">&#125;</span><br />
<span style="color: #66cc66;">&#125;</span></div></td></tr></tbody></table></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2009/08/11/how-to-stream-and-playback-live-video-using-flash-media-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Actionscript 3 Marker Helper Class</title>
		<link>http://blog.728media.com/2009/04/15/actionscript-3-marker-helper-class/</link>
		<comments>http://blog.728media.com/2009/04/15/actionscript-3-marker-helper-class/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 02:04:49 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=252</guid>
		<description><![CDATA[
It&#8217;s a pain to try and keep track of item registration points when placing them on the stage. So to help my debug efforts, I create the Marker class. It draws a crosshair where ever you need one. You can use them to keep track of any specific point.
Using the class is dead easy, you [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-253" title="markerclass" src="http://blog.728media.com/wp-content/uploads/2009/04/markerclass.jpg" alt="markerclass" width="650" height="280" /></p>
<p>It&#8217;s a pain to try and keep track of item registration points when placing them on the stage. So to help my debug efforts, I create the Marker class. It draws a crosshair where ever you need one. You can use them to keep track of any specific point.<span id="more-252"></span></p>
<p>Using the class is dead easy, you just need to add a new instance of the class to the display tree and configure it appropriately.</p>
<p> </p>
<div class="codecolorer-container actionscript3 vibrant" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br /></div></td><td><div class="actionscript3 codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #0033ff; font-weight: bold;">import</span> Marker<span style="color: #000066; font-weight: bold;">;</span><br />
<br />
<span style="color: #009900; font-style: italic;">// adds a marker that will snap to the center of the stage (even when the stage is resized)</span><br />
<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">new</span> Marker<span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span> <br />
<br />
<span style="color: #009900; font-style: italic;">// adds a Marker instance at 50,50 point</span><br />
<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">new</span> Marker<span style="color: #000000;">&#40;</span>50<span style="color: #000066; font-weight: bold;">,</span>50<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span> <br />
<br />
<span style="color: #009900; font-style: italic;">// adds a Marker instance at 100,100 and sets the Marker's color to 0x00FF00</span><br />
<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">new</span> Marker<span style="color: #000000;">&#40;</span>100<span style="color: #000066; font-weight: bold;">,</span>100<span style="color: #000066; font-weight: bold;">,</span> 0x00FF00<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span></div></td></tr></tbody></table></div>
<p><a href="http://labs.728media.com/Marker.as">Download Marker.as</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2009/04/15/actionscript-3-marker-helper-class/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Droplet: Quick Drop.io Desktop AIR App</title>
		<link>http://blog.728media.com/2009/03/14/droplet-quick-dropio-desktop-air-app/</link>
		<comments>http://blog.728media.com/2009/03/14/droplet-quick-dropio-desktop-air-app/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 19:12:08 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Adobe AIR]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[AIR desktop]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[drop.io]]></category>
		<category><![CDATA[droplet]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=237</guid>
		<description><![CDATA[
I&#8217;m proud to announce the beta release of my first Drop.io desktop AIR application called Droplet. I built the application using my own Drop.io AS3 library. The application is very simple and offers the fastest way to upload a single file to Drop.io. Just open the application, choose your file, and Droplet uploads your file to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-238" title="blogpost" src="http://blog.728media.com/wp-content/uploads/2009/03/blogpost.png" alt="blogpost" width="650" height="280" /></p>
<p>I&#8217;m proud to announce the <strong>beta</strong> release of my first <a href="http://drop.io">Drop.io</a> desktop AIR application called <em>Droplet</em>. <span id="more-237"></span>I built the application using <a href="http://code.google.com/p/dropio-as3-library/">my own Drop.io AS3 library</a>. The application is very simple and offers the fastest way to upload a single file to Drop.io. Just open the application, choose your file, and <em>Droplet</em> uploads your file to a generate drop. Once uploaded, you have the option to upload another file (to a brand new drop) or view the drop you just created with your file!</p>
<p>If <em>Droplet</em> gains enough support, I would love to see further renditions of the application to allow more support for other Drop.io features. Until then, be sure to leave your thoughts in a comment below!</p>
<p><div id="flashcontent6216" style="width:215px; height:180px;"><strong>Please upgrade your Flash Player</strong> This is the content that would be shown if the user does not have Flash Player 9.0.115 or higher installed.</div><script type="text/javascript">
<!-- // <![CDATA[
var so = new SWFObject("http://blog.728media.com/wp-content/plugins/air-badge/AIRInstallBadge.swf", "Badge", "215", "180", "9.0.115", "#FFFFFF");
so.useExpressInstall("http://blog.728media.com/wp-content/plugins/air-badge/expressinstall.swf");
so.addVariable("airversion", "1.0");
so.addVariable("appname", "Droplet");
so.addVariable("appurl", "http://www.728media.com/air/droplet.air");
so.addVariable("appid", "Droplet");
so.addVariable("pubid", "");
so.addVariable("appversion", "1.5");
so.addVariable("imageurl", "http://www.728media.com/air/dropletInstall.jpg");
so.addVariable("appinstallarg", "installed from web");
so.addVariable("applauncharg", "launched from web");
so.addVariable("helpurl", "help.html");
so.addVariable("hidehelp", "true");
so.addVariable("skiptransition", "false");
so.addVariable("titlecolor", "#00AAFF");
so.addVariable("buttonlabelcolor", "#00AAFF");
so.addVariable("appnamecolor", "#00AAFF");
so.addVariable("str_err_airswf", "<u>Running locally?</u><br/><br/>The AIR proxy swf won't load properly when this is run from the local file system.");
so.write("flashcontent6216");
// ]]&gt; -->
</script>
</p>
<p> </p>
<p><strong>System Requirements:</strong></p>
<ul>
<li><a href="http://www.adobe.com/products/air/">Adobe AIR Runtime</a> 1.5 or higher
<ul>
<li>Will run on Windows, Mac, or Linux</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2009/03/14/droplet-quick-dropio-desktop-air-app/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Joshua Davis and Bezier Curve Animations</title>
		<link>http://blog.728media.com/2009/02/10/joshua-davis-and-bezier-curve-animations/</link>
		<comments>http://blog.728media.com/2009/02/10/joshua-davis-and-bezier-curve-animations/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 15:01:09 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=211</guid>
		<description><![CDATA[
I&#8217;ve always held Joshua Davis pretty high on my list of inspirational programmers/designers. It seems just as I think he has fallen off the radar, he puts out something like this. Wow, this guy always has a trick up his sleeve&#8230;
See his presentation with great examples!
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-212" title="joshuabezier" src="http://blog.728media.com/wp-content/uploads/2009/02/joshuabezier.jpg" alt="joshuabezier" width="650" height="280" /></p>
<p>I&#8217;ve always held <a href="http://en.wikipedia.org/wiki/Joshua_Davis_(web_designer)">Joshua Davis</a> pretty high on my list of inspirational programmers/designers. It seems just as I think he has fallen off the radar, he puts out something like this. Wow, this guy always has a trick up his sleeve&#8230;</p>
<p><a href="http://projects.joshuadavis.com/space/">See his presentation with great examples!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2009/02/10/joshua-davis-and-bezier-curve-animations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a Flash Developer!?</title>
		<link>http://blog.728media.com/2009/01/18/what-is-a-flash-developer/</link>
		<comments>http://blog.728media.com/2009/01/18/what-is-a-flash-developer/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 04:49:56 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash developer]]></category>
		<category><![CDATA[lee brimlow]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=198</guid>
		<description><![CDATA[
Lee Brimlow has yet another great writeup, but this time it isn&#8217;t another great video tutorial. Instead he finally spelled out his opinion on what makes a Flash Developer, or a Flash Designer and the difference between Flash and Flex.
Check it out!
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://upload.wikimedia.org/wikipedia/en/6/69/Adobe_Flash_Player_CS3.png" alt="" width="100" height="100" /></p>
<p><a href="http://www.leebrimelow.com/">Lee Brimlow</a> has yet another great writeup, but this time it isn&#8217;t another great <a href="http://www.gotoandlearn.com">video tutorial</a>. Instead he finally spelled out his opinion on what makes a Flash Developer, or a Flash Designer and the difference between Flash and Flex.</p>
<p><a href="http://theflashblog.com/?p=627">Check it out!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2009/01/18/what-is-a-flash-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PhizzPop Minneapolis &#124; Team space150</title>
		<link>http://blog.728media.com/2009/01/16/phizzpop-minneapolis-team-space150/</link>
		<comments>http://blog.728media.com/2009/01/16/phizzpop-minneapolis-team-space150/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 22:31:57 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[phizzpop]]></category>
		<category><![CDATA[silverlight]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=190</guid>
		<description><![CDATA[
So a few guys from work and myself were asked to compete in the Microsoft PhizzPop challenge this week. I had heard of the competition a few months back, but I had thought it was more of a student challenge. After being able to rearrange my work schedule for 3 days of Silverlight training, I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://www.phizzpop.com/images/logotype/logotype.gif" alt="" width="252" height="79" /></p>
<p>So a few guys from work and myself were asked to compete in the <a href="http://www.phizzpop.com/">Microsoft PhizzPop</a> challenge this week. I had heard of the competition a few months back, but I had thought it was more of a student challenge. After being able to rearrange my work schedule for 3 days of Silverlight training, I was off to the MN <a href="http://www.microsoft.com">Microsoft</a> campus!<span id="more-190"></span></p>
<p>The training was taught by Aquent, which was nice to have a neutral party teaching the software. I was actually pretty impressed with the <a href="http://www.microsoft.com/expression/">Microsoft Expression Suite</a>. We spent most of the class working in <a href="http://www.microsoft.com/expression/products/Overview.aspx?key=blend">Blend 2</a> building <a href="http://silverlight.net/">Silverlight</a> applications. After working in Flash and other web technologies for years, I was happy to notice the similarities Microsoft incorporated into the Expression Suite to help first time users jump right in. My favorite part was the tie between Visual Studio and Blend. Using Visual Studio to edit the C# (main programming language for <a href="http://silverlight.net/">Silverlight</a> applications) worked great. I never knew Visual Studio was so robust as an editor, I wish I could edit Actionscript in it!</p>
<p>So after 3 days of training, we received our challenge from Microsoft: Pitch an idea to help a fictitious retailer engage more customers online and offline. My team regrouped and over the next 5 days (3 of them business) worked on our pitch. During that time I was the team&#8217;s developer. It was my job to build out the technical part of the pitch using Microsoft technologies (Expression Studio mainly). One neat thing to note, everyone in the contest was able to develop for the new Microsoft <a href="http://www.microsoft.com/surface/">Surface</a> and Microsoft Airwave technologies. We had access to one of the few Microsoft Surface prototypes to use in our presentations. The scheduling around developing for these technologies was a little too tight, we could only debug on a live machine for a couple hours the day before the contest, so my team decided to stick to desktop development instead. I will admit switching over to a new technology in such a short time then creating an entire business pitch in three days was a pain.</p>
<p>My team pushed late into each night to develop the concept, art, and media files for our final presentation. Finally on Thursday evening, we headed over to Solera in downtown Minneapolis for the PhizzPop event. Microsoft did a great job with the event, lots of lights and drinks (do not try the absinthe!). Each team had 8 minutes (10 tops) to present their pitch to a panel of 5 judges from local business and agencies. My team nailed our presentation, and in the end were one of two favorites. The other was Minneapolis design agency <a href="http://www.zeusjones.com/">Zeus Jones</a>. After 15 minutes the judges regrouped and announced the winner of the event. After all that hard work and effort over the past two weeks, team space150 (my team) lost to Zeus Jones. I was bummed, but if we had to loose to any of the teams, I was glad it was them.</p>
<p>Overall it was a great experience that brought us together and I can walk away with some great knowledge of this new technology. Going forward I don&#8217;t plan using Silverlight all too much, it definately has limited moments of being a better option than Flash for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2009/01/16/phizzpop-minneapolis-team-space150/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Super Duper Desktop FLV Player added to Softpedia Database!</title>
		<link>http://blog.728media.com/2008/12/06/super-duper-desktop-flv-player-added-to-softpedia-database/</link>
		<comments>http://blog.728media.com/2008/12/06/super-duper-desktop-flv-player-added-to-softpedia-database/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 16:09:35 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[flv player]]></category>
		<category><![CDATA[softpedia]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=175</guid>
		<description><![CDATA[
I wrote in a previous post about an Adobe AIR Desktop FLV Player that I developed a while back for quick viewing of Adobe FLV files. I&#8217;m happy to announce the app has been officially added to the Softpedia database! You can now download the file from either Adobe&#8217;s Marketplace or from Softpedia.

]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.728media.com/wp-content/uploads/2008/10/screenshot13.jpg"><img class="alignnone size-full wp-image-137" title="screenshot13" src="http://blog.728media.com/wp-content/uploads/2008/10/screenshot13.jpg" alt="" width="300" height="200" /></a></p>
<p>I wrote in a <a href="http://blog.728media.com/2008/10/29/super-duper-flv-player-for-adobe-air/">previous post</a> about an Adobe AIR Desktop FLV Player that I developed a while back for quick viewing of Adobe FLV files. I&#8217;m happy to announce the app has been officially added to the <a href="http://www.softpedia.com">Softpedia</a> database! You can now download the file from either <a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&amp;loc=en_us&amp;extid=1698179">Adobe&#8217;s Marketplace</a> or from <a href="http://www.softpedia.com/get/Internet/WEB-Design/Flash/Super-Duper-Desktop-FLV-Player.shtml">Softpedia</a>.<span id="more-175"></span></p>
<p><a href="http://blog.728media.com/wp-content/uploads/2008/10/softpedia_clean_award_f.gif"><img class="alignnone size-full wp-image-130" title="softpedia_clean_award_f" src="http://blog.728media.com/wp-content/uploads/2008/10/softpedia_clean_award_f.gif" alt="" width="170" height="116" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2008/12/06/super-duper-desktop-flv-player-added-to-softpedia-database/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Papervision Reality</title>
		<link>http://blog.728media.com/2008/11/19/papervision-reality/</link>
		<comments>http://blog.728media.com/2008/11/19/papervision-reality/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 23:14:20 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Papervision]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=165</guid>
		<description><![CDATA[
Wow, the guys over at Digital Pictures Interactive have pushed the limits of Flash and Papervision to produce an application that reads your webcam image and renders a Papervision model (in this case a Monster) in real time. The application looks for a printed symbol and judges it&#8217;s proximity and perspective from comparing it&#8217;s edges. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.728media.com/wp-content/uploads/2008/11/paperguy2.jpg"><img class="alignnone size-full wp-image-164" title="paperguy2" src="http://blog.728media.com/wp-content/uploads/2008/11/paperguy2.jpg" alt="" width="492" height="229" /></a></p>
<p>Wow, the guys over at <a href="http://interactive.digitalpictures.com.au/">Digital Pictures Interactive</a> have pushed the limits of Flash and <a href="http://blog.papervision3d.org/">Papervision</a> to produce an application that reads your webcam image and renders a Papervision model (in this case a Monster) in real time. The application looks for a printed symbol and judges it&#8217;s proximity and perspective from comparing it&#8217;s edges. I would have been fine with just finding the object within the  camera and drawing the model, but these guys take it steps further and actually change it&#8217;s scale and pitch depending on how the paper is positioned.</p>
<p>Very well done! Read on to check out the video demo</p>
<p><span id="more-165"></span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="302" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=2283082&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="302" src="http://vimeo.com/moogaloop.swf?clip_id=2283082&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://interactive.digitalpictures.com.au/?p=392">CHECK IT OUT!</a></p>
<p><a href="http://blog.728media.com/2008/09/08/play-with-spider-flash-3d/">Here is another cool</a> Papervision app I had posted a while back that involves a different Monster!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2008/11/19/papervision-reality/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Flash CS4 Classic Tweens Cause Constant Crashing! UPDATE</title>
		<link>http://blog.728media.com/2008/11/18/flash-cs4-classic-tweens-cause-constant-crashing/</link>
		<comments>http://blog.728media.com/2008/11/18/flash-cs4-classic-tweens-cause-constant-crashing/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 17:30:13 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[crashing]]></category>
		<category><![CDATA[cs4]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://blog.728media.com/2008/11/18/flash-cs4-classic-tweens-cause-constant-crashing/</guid>
		<description><![CDATA[
UPDATE: It doesn&#8217;t seem to just be the classic tweens. Any type of tween (Classic, Motion, or Shape) that I create causes flash to crash after working with it for a couple of minutes. I&#8217;m seeing the crash happen when I&#8217;m trying to move frames around on the timeline.
It&#8217;s 11:30am and I&#8217;ve already had my [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://www.ehs.net/graphics/COMPUTER20CRASH.gif" alt="" /></p>
<p><strong>UPDATE:</strong> It doesn&#8217;t seem to just be the classic tweens. Any type of tween (Classic, Motion, or Shape) that I create causes flash to crash after working with it for a couple of minutes. I&#8217;m seeing the crash happen when I&#8217;m trying to move frames around on the timeline.</p>
<p>It&#8217;s 11:30am and I&#8217;ve already had my new copy of Flash CS4 crash on me 5 times. Each crash has been related to a classic tween in some sort of way. Either moving the frames around, or even just creating the tween causes flash to crash.</p>
<p>So far there doesn&#8217;t seem to be a method that works besides not using classic tweens.</p>
<p>Anyone else having this problem? Maybe it&#8217;s just my system? I&#8217;m running XP 64-bit.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2008/11/18/flash-cs4-classic-tweens-cause-constant-crashing/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>UPDATE: Twitter AIR App of Choice: Twhirl</title>
		<link>http://blog.728media.com/2008/11/11/twitter-air-app-of-choice-tweetdeck/</link>
		<comments>http://blog.728media.com/2008/11/11/twitter-air-app-of-choice-tweetdeck/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 16:56:00 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[tweet]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://blog.728media.com/2008/11/11/twitter-air-app-of-choice-tweetdeck/</guid>
		<description><![CDATA[ 
 

UPDATE: After dealing with a couple bugs and missing features (clickable links), I switch over to Twhirl for my Twitter AIR app. I&#8217;ve been using it for a couple weeks now and it is fantastic!
I&#8217;ve been using the Ubiquity plugin for Firefox to do most all of my twitters, but I just stumbled upon a [...]]]></description>
			<content:encoded><![CDATA[<p> </p>
<p> </p>
<p><strong><img class="alignnone" src="http://www.twhirl.org/themes/twhirl/logo.jpg" alt="" width="220" height="105" /></strong></p>
<p><strong>UPDATE: </strong>After dealing with a couple bugs and missing features (clickable links), I switch over to <a href="http://www.twhirl.org/">Twhirl</a> for my Twitter AIR app. I&#8217;ve been using it for a couple weeks now and it is fantastic!</p>
<blockquote><p><span style="color: #999999;">I&#8217;ve been using the </span><a href="http://blog.728media.com/2008/08/27/mozilla-labs-%C2%BB-introducing-ubiquity/"><span style="color: #999999;">Ubiquity plugin</span></a><span style="color: #999999;"> for Firefox to do most all of my </span><a href="http://www.twitter.com/acTheGreat"><span style="color: #999999;">twitters</span></a><span style="color: #999999;">, but I just stumbled upon a GREAT </span><a href="http://get.adobe.com/air/"><span style="color: #999999;">AIR</span></a><span style="color: #999999;"> app that offers far more features. It&#8217;s called </span><a href="http://www.tweetdeck.com/beta/"><span style="color: #999999;">TweetDeck</span></a><span style="color: #999999;">. I&#8217;ve only been using it a very short while, but have high hopes for this beta. Be sure to grab a copy and give it a go!</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2008/11/11/twitter-air-app-of-choice-tweetdeck/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Papervision and Geocoding</title>
		<link>http://blog.728media.com/2008/11/04/papervision-and-geocoding/</link>
		<comments>http://blog.728media.com/2008/11/04/papervision-and-geocoding/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 22:50:22 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[geocode]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[Papervision]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=144</guid>
		<description><![CDATA[
The June 2008 edition of Adobe EDGE has a great article on geocoding. Geocoding is getting popular with the release of Yahoo Maps, Mapquest, and Google Maps APIs. Suddenly any user can apply for one of those keys and start mapping locations on their site or even using those APIs to get geo location data [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.728media.com/wp-content/uploads/2008/11/globe.jpg"><img class="alignnone size-full wp-image-145" title="globe" src="http://blog.728media.com/wp-content/uploads/2008/11/globe.jpg" alt="" width="492" height="229" /></a></p>
<p>The June 2008 edition of <a href="http://www.adobe.com/newsletters/edge/">Adobe EDGE</a> has a great article on <a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FGeocoding&amp;ei=wM8QSerRO6b8wwGXu5GYCw&amp;usg=AFQjCNG703HciSfy0JKZjDIvTrQYuezIZg&amp;sig2=h6O6du6mONrFBmax25rK0w">geocoding</a>. Geocoding is getting popular with the release of <a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.mapquest.com%2Fopenapi&amp;ei=5c8QSY6hDZrswwGqkPSrCw&amp;usg=AFQjCNF25HRpHwry_xxbXYoXxi5pHLXC8g&amp;sig2=9WJla-3FMzob6QNCiHWUnQ"></a><a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fdeveloper.yahoo.com%2Fmaps%2F&amp;ei=9c8QSbGnIIqOwQHN29SuCw&amp;usg=AFQjCNH6kikID8e15DJgfyTawm0O8GxQ1w&amp;sig2=JQRKEvHt9_THsvkbcauUpQ">Yahoo Maps,</a> <a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.mapquest.com%2Fopenapi&amp;ei=5c8QSY6hDZrswwGqkPSrCw&amp;usg=AFQjCNF25HRpHwry_xxbXYoXxi5pHLXC8g&amp;sig2=9WJla-3FMzob6QNCiHWUnQ">Mapquest</a>, and <a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fcode.google.com%2Fapis%2Fmaps%2F&amp;ei=CtAQSZbbJY2owQGwsNCmCw&amp;usg=AFQjCNFlheLSwRtcQSUWQHN0Doxq7hyI4A&amp;sig2=-1TgyOVwrDdk9hZvgRY_Dw">Google Maps</a> APIs. Suddenly any user can apply for one of those keys and start mapping locations on their site or even using those APIs to get geo location data to then use within their own mapping engine. That is where this example comes in. Adobe has written up a great article on getting started with using the Yahoo Maps API to get the longitude and latitude of a location, then converting that to 3D coordinates to place on a globe built in Papervision. The example is simple, but feels good and responsive.</p>
<p><a href="http://www.adobe.com/newsletters/edge/june2008/articles/article2/index.html?trackingid=DEKYF.">Read the article<br />
</a><a href="http://www.adobe.com/newsletters/edge/june2008/articles/article2/download/GeoGlobe.html">View the Demo</a></p>
<p><span id="more-144"></span></p>
<p>A couple more Flash Geocoding Examples and Demos</p>
<p><a href="http://next.yahoo.net/download/newsglobe">Yahoo News Globe</a><br />
<a href="http://code.google.com/p/spinnyglobe/">Spinny Globe<br />
</a><a href="http://senocular.com/flash/source.php?id=1.201">Senocular 3D Globe (Flash Player 10)<br />
</a><a href="http://freeearth.poly9.com/">FreeEarth (Javascript)</a><a href="http://senocular.com/flash/source.php?id=1.201"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2008/11/04/papervision-and-geocoding/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Super Duper Desktop FLV Player for Adobe AIR</title>
		<link>http://blog.728media.com/2008/10/29/super-duper-flv-player-for-adobe-air/</link>
		<comments>http://blog.728media.com/2008/10/29/super-duper-flv-player-for-adobe-air/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 21:01:10 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[flv]]></category>

		<guid isPermaLink="false">http://blog.728media.com/2008/10/29/super-duper-flv-player-for-adobe-air/</guid>
		<description><![CDATA[
I had started creating AIR apps since the first beta release and I love how easy it is to create a simple customized tool quickly to help with day to day activities. Until now I&#8217;ve been using the WimpyFLV Player with limited success. It was ok, but would have issues playing back files on the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://upload.macromedia.com/exchange/airmp/previews/screenshot13.jpg" alt="" /></p>
<p>I had started creating AIR apps since the first beta release and I love how easy it is to create a simple customized tool quickly to help with day to day activities. Until now I&#8217;ve been using the <a href="http://www.wimpyplayer.com/products/wimpy_standalone_flv_player.html">WimpyFLV Player</a> with limited success. It was ok, but would have issues playing back files on the network. So I developed my own player that is simple and straight to the point. For development purposes I have the dimensions of the video file in the upper right hand corner and the length of the video in seconds. This helps since you can&#8217;t just view the properties of an FLV to get this information. Check out the link below to download the .air file.</p>
<p><a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&amp;loc=en_us&amp;extid=1698179">Adobe &#8211; Adobe AIR Marketplace Photo &amp; Video</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2008/10/29/super-duper-flv-player-for-adobe-air/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Flash Player 10 Fabric Demo</title>
		<link>http://blog.728media.com/2008/10/28/flash-player-10-fabric-demo/</link>
		<comments>http://blog.728media.com/2008/10/28/flash-player-10-fabric-demo/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 20:38:36 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[APE]]></category>
		<category><![CDATA[flash player]]></category>
		<category><![CDATA[fp10]]></category>
		<category><![CDATA[physics]]></category>

		<guid isPermaLink="false">http://blog.728media.com/2008/10/28/flash-player-10-fabric-demo/</guid>
		<description><![CDATA[
Justin Everett-Church, Senior Adobe Flash Player Product Manager, just posted a new demo showing off Flash Player 10&#8217;s new 3D capabilities. It&#8217;s a fabric demo that uses APE (Actionscript Physics Engine) to simulate the physics. This demo may look familiar to a previous papervision demo (which no longer seems to be live, sorry).
Justin&#8217;s Flash Blog
]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://justin.everett-church.com//wp-images/clothDemo.jpg" alt="" /></p>
<p><a href="http://justin.everett-church.com/">Justin Everett-Church</a>, Senior Adobe Flash Player Product Manager, just posted a new demo showing off Flash Player 10&#8217;s new 3D capabilities. It&#8217;s a fabric demo that uses <a href="http://www.cove.org/ape/">APE (Actionscript Physics Engine) </a>to simulate the physics. This demo may look familiar to a previous papervision demo (which no longer seems to be live, sorry).</p>
<p><a href="http://justin.everett-church.com/index.php/2008/10/23/flash-player-10-experiment-1-cloth-texture-mapping/">Justin&#8217;s Flash Blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2008/10/28/flash-player-10-fabric-demo/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>File Furnace app added to Softpedia!</title>
		<link>http://blog.728media.com/2008/10/27/file-furnace-app-added-to-softpedia/</link>
		<comments>http://blog.728media.com/2008/10/27/file-furnace-app-added-to-softpedia/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 15:25:30 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[file furnace]]></category>
		<category><![CDATA[softpedia]]></category>

		<guid isPermaLink="false">http://blog.728media.com/2008/10/27/file-furnace-app-added-to-softpedia/</guid>
		<description><![CDATA[
An Adobe Air app that I created a while back seems to have been added to the software site Softpedia and deemed 100% clean!


Download File Furnace 1.0 &#8211; Permanently deletes files and directories you drag onto its main window &#8211; Softpedia
]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://www.softpedia.com/screenshots/thumbs/File-Furnace-thumb.png" alt="" /></p>
<p>An <a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.adobe.com%2Fproducts%2Fair%2F&amp;ei=rdwFSYKQIqbCwwGc7bjHCg&amp;usg=AFQjCNGV-BQTs-uEQ3jBFwN6Xe3PCyDLjQ&amp;sig2=GIw14jEn_j2C1pm3WSyCsg">Adobe Air</a> <a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&amp;loc=en_us&amp;extid=1439518">app that I created</a> a while back seems to have been added to the software site <a href="http://www.softpedia.com/base_img/softpedia_logo4.gif">Softpedia</a> and <a href="http://www.softpedia.com/progClean/File-Furnace-Clean-111736.html">deemed 100% clean</a>!</p>
<p><span id="more-128"></span></p>
<p><img class="aligncenter" src="http://www.softpedia.com/base_img/softpedia_clean_award_f.gif" alt="" /></p>
<p><a href="http://www.softpedia.com/get/Security/Secure-cleaning/File-Furnace.shtml">Download File Furnace 1.0 &#8211; Permanently deletes files and directories you drag onto its main window &#8211; Softpedia</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2008/10/27/file-furnace-app-added-to-softpedia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20 jQuery Plugins for Unforgettable User Experience</title>
		<link>http://blog.728media.com/2008/10/15/20-jquery-plugins-for-unforgettable-user-experience/</link>
		<comments>http://blog.728media.com/2008/10/15/20-jquery-plugins-for-unforgettable-user-experience/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 18:06:22 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://blog.728media.com/2008/10/15/20-jquery-plugins-for-unforgettable-user-experience/</guid>
		<description><![CDATA[
Javascript is getting more and more powerful, just check out some of these neat demos. Carful javascripters, a browser can only handle so much javascript at once. Flash and Javascript have a time and a place, remember that.
» 20 jQuery Plugins for Unforgettable User Experience
]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://devsnippets.com/img/jquery2.jpg" alt="" /></p>
<p>Javascript is getting more and more powerful, just check out some of these neat demos. Carful javascripters, a browser can only handle so much javascript at once. Flash and Javascript have a time and a place, remember that.</p>
<p><a href="http://devsnippets.com/jquery-posts/20-jquery-plugins-for-unforgettable-user-experience.html">» 20 jQuery Plugins for Unforgettable User Experience</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2008/10/15/20-jquery-plugins-for-unforgettable-user-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
