<?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</title>
	<atom:link href="http://blog.728media.com/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>0</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="flashcontent1855" 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("flashcontent1855");
// ]]&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>25</slash:comments>
		</item>
		<item>
		<title>How to Load External Images in Actionscript 3.0</title>
		<link>http://blog.728media.com/2009/03/11/how-to-load-external-images-in-actionscript-30/</link>
		<comments>http://blog.728media.com/2009/03/11/how-to-load-external-images-in-actionscript-30/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 03:37:12 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[actionscript 3.0]]></category>
		<category><![CDATA[external images]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=222</guid>
		<description><![CDATA[
Using the flash.display.Loader class in AS3, you can load in external image files to display in flash. The loader class supports loading in JPG, SWF, PNG, or GIF file types. The Loader class sounds more like a loading manager that watches load progress, rather than a display object. Fact is, the Loader is treated as [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-225" title="loadingimage" src="http://blog.728media.com/wp-content/uploads/2009/03/loadingimage.jpg" alt="loadingimage" width="650" height="280" /></p>
<p>Using the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/Loader.html">flash.display.Loader</a> class in AS3, you can load in external image files to display in flash. The loader class supports loading in JPG, SWF, PNG, or GIF file types. The Loader class sounds more like a loading manager that watches load progress, rather than a display object. Fact is, the Loader is treated as a <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/DisplayObject.html">DisplayObject</a>, so when it&#8217;s ready you just add it to the stage. Pretty simple, so let&#8217;s get started!</p>
<p><span id="more-222"></span></p>
<p>First, you will need to create an instance of the loader class and add a couple event listeners to it. One to watch load progress, and one to watch for when the loading is complete.</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 /></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: #6699cc; font-weight: bold;">var</span> myLoader<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=loader%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:loader.html"><span style="color: #004993;">Loader</span></a> = <span style="color: #0033ff; font-weight: bold;">new</span> <a href="http://www.google.com/search?q=loader%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:loader.html"><span style="color: #004993;">Loader</span></a><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
myLoader<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">contentLoaderInfo</span><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><a href="http://www.google.com/search?q=progressevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:progressevent.html"><span style="color: #004993;">ProgressEvent</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">PROGRESS</span><span style="color: #000066; font-weight: bold;">,</span> onLoaderProgress<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
myLoader<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">contentLoaderInfo</span><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><a href="http://www.google.com/search?q=event%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:event.html"><span style="color: #004993;">Event</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">COMPLETE</span><span style="color: #000066; font-weight: bold;">,</span> onLoaderComplete<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span></div></td></tr></tbody></table></div>
<p>You&#8217;ll notice that I&#8217;m not adding the event listener to the loader instance (myLoader), but instead adding them to a property of myLoader called <strong><a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/Loader.html#contentLoaderInfo">contentLoaderInfo</a>. </strong>The Loader class has a special property that controls all the loading events. This property is an instance of the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/LoaderInfo.html">LoaderInfo</a> class, so we will listen to it for events, rather than our Loader instance.</p>
<p>Next, we will call the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/Loader.html#load()">Loader.load()</a> method to initiate the loading sequence. You will need to create a new variable that will be an instance of the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/URLRequest.html">URLRequest</a> class. This new variable will be passed to the load() method.</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 /></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: #6699cc; font-weight: bold;">var</span> myLoader<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=loader%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:loader.html"><span style="color: #004993;">Loader</span></a> = <span style="color: #0033ff; font-weight: bold;">new</span> <a href="http://www.google.com/search?q=loader%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:loader.html"><span style="color: #004993;">Loader</span></a><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
myLoader<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">contentLoaderInfo</span><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><a href="http://www.google.com/search?q=progressevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:progressevent.html"><span style="color: #004993;">ProgressEvent</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">PROGRESS</span><span style="color: #000066; font-weight: bold;">,</span> onProgressStatus<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
myLoader<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">contentLoaderInfo</span><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><a href="http://www.google.com/search?q=event%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:event.html"><span style="color: #004993;">Event</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">COMPLETE</span><span style="color: #000066; font-weight: bold;">,</span> onLoaderReady<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
<br />
<span style="color: #6699cc; font-weight: bold;">var</span> fileRequest<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=urlrequest%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:urlrequest.html"><span style="color: #004993;">URLRequest</span></a> = <span style="color: #0033ff; font-weight: bold;">new</span> <a href="http://www.google.com/search?q=urlrequest%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:urlrequest.html"><span style="color: #004993;">URLRequest</span></a><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;myImage.jpg&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
myLoader<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span>fileRequest<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span></div></td></tr></tbody></table></div>
<p>Ok, so that&#8217;s pretty much it. All that is left is to create our callback methods for each of our eventListeners. Our final code should look like this:</p>
<div class="codecolorer-container actionscript3 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 /></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: #6699cc; font-weight: bold;">var</span> myLoader<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=loader%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:loader.html"><span style="color: #004993;">Loader</span></a> = <span style="color: #0033ff; font-weight: bold;">new</span> <a href="http://www.google.com/search?q=loader%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:loader.html"><span style="color: #004993;">Loader</span></a><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
myLoader<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">contentLoaderInfo</span><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><a href="http://www.google.com/search?q=progressevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:progressevent.html"><span style="color: #004993;">ProgressEvent</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">PROGRESS</span><span style="color: #000066; font-weight: bold;">,</span> onProgressStatus<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
myLoader<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">contentLoaderInfo</span><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><a href="http://www.google.com/search?q=event%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:event.html"><span style="color: #004993;">Event</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">COMPLETE</span><span style="color: #000066; font-weight: bold;">,</span> onLoaderReady<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
<br />
<span style="color: #6699cc; font-weight: bold;">var</span> fileRequest<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=urlrequest%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:urlrequest.html"><span style="color: #004993;">URLRequest</span></a> = <span style="color: #0033ff; font-weight: bold;">new</span> <a href="http://www.google.com/search?q=urlrequest%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:urlrequest.html"><span style="color: #004993;">URLRequest</span></a><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;myImage.jpg&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
myLoader<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span>fileRequest<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
<br />
<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> onProgressStatus<span style="color: #000000;">&#40;</span>e<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=progressevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:progressevent.html"><span style="color: #004993;">ProgressEvent</span></a><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>   <br />
  &nbsp; &nbsp; <span style="color: #009900; font-style: italic;">// this is where progress will be monitored     </span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #004993;">trace</span><span style="color: #000000;">&#40;</span>e<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">bytesLoaded</span><span style="color: #000066; font-weight: bold;">,</span> e<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">bytesTotal</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span> <br />
<span style="color: #000000;">&#125;</span><br />
<br />
<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> onLoaderReady<span style="color: #000000;">&#40;</span>e<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=event%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:event.html"><span style="color: #004993;">Event</span></a><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>     <br />
&nbsp; &nbsp; &nbsp; <span style="color: #009900; font-style: italic;">// the image is now loaded, so let's add it to the display tree!     </span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span>myLoader<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
<span style="color: #000000;">&#125;</span></div></td></tr></tbody></table></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2009/03/11/how-to-load-external-images-in-actionscript-30/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Actionscript 3 Webcam Configure</title>
		<link>http://blog.728media.com/2009/02/24/actionscript-3-webcam-configure/</link>
		<comments>http://blog.728media.com/2009/02/24/actionscript-3-webcam-configure/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 04:34:52 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash player]]></category>
		<category><![CDATA[flash webcam]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=200</guid>
		<description><![CDATA[
Setting up a webcam in Flash has always been pretty simple. I feel there are two cases in flash that you would use the webcam in a project: Streaming video for video chat or using it as a tool to take a photo. These two cases have completely different purposes and thus you want your [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-217" title="webcamconfig" src="http://blog.728media.com/wp-content/uploads/2009/02/webcamconfig.jpg" alt="webcamconfig" width="650" height="280" /></p>
<p>Setting up a webcam in Flash has always been pretty simple. I feel there are two cases in flash that you would use the webcam in a project: Streaming video for video chat or using it as a tool to take a photo. These two cases have completely different purposes and thus you want your camera setup properly for each.</p>
<p><span id="more-200"></span></p>
<p><strong>Setup Your Camera</strong><br />
<span style="font-weight: normal;">First, let&#8217;s setup your camera and a video instance for playback. This code will setup a default camera and default video instance. Both will be setup for 320&#215;240 playback.</span></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 /></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: #6699cc; font-weight: bold;">var</span> camera<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=camera%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:camera.html"><span style="color: #004993;">Camera</span></a> = <a href="http://www.google.com/search?q=camera%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:camera.html"><span style="color: #004993;">Camera</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">getCamera</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
<span style="color: #6699cc; font-weight: bold;">var</span> video<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=video%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:video.html"><span style="color: #004993;">Video</span></a> = <span style="color: #0033ff; font-weight: bold;">new</span> <a href="http://www.google.com/search?q=video%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:video.html"><span style="color: #004993;">Video</span></a><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span> <br />
video<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">attachCamera</span><span style="color: #000000;">&#40;</span>camera<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span>video<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span></div></td></tr></tbody></table></div>
<p> </p>
<p><strong>Setup Camera for Streaming Video Chat<br />
</strong>Setting up your camera for streaming video chat involves a little more work and planning than just using it to take a photo within the player. Streaming video will require you to sacrifice video quality for speed, especially if you need to sync the video with audio. There are two methods of the Camera class that we will use to balance video quality and frame rate with bandwidth: <a href="http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/media/Camera.html#setQuality()">Camera.setQuality()</a> and <a href="http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/media/Camera.html#setMode()">Camera.setMode()</a>. setQuality() is used to specify bandwidth and overall image quality of the Camera&#8217;s output video.  Adobe&#8217;s Help Documentation has this to say:</p>
<blockquote>
<ul>
<li>To indicate that bandwidth use takes precedence, pass a value for bandwidth and 0 for quality . Flash Player transmits video at the highest quality possible within the specified bandwidth. If necessary, Flash Player reduces picture quality to avoid exceeding the specified bandwidth. In general, as motion increases, quality decreases.</li>
<li>To indicate that quality takes precedence, pass 0 for bandwidth and a numeric value for quality . Flash Player uses as much bandwidth as required to maintain the specified quality. If necessary, Flash Player reduces the frame rate to maintain picture quality. In general, as motion increases, bandwidth use also increases.</li>
<li>To specify that both bandwidth and quality are equally important, pass numeric values for both parameters. Flash Player transmits video that achieves the specified quality and that doesn&#8217;t exceed the specified bandwidth. If necessary, Flash Player reduces the frame rate to maintain picture quality without exceeding the specified bandwidth.</li>
</ul>
</blockquote>
<p>Lets setup our code to have medium compressed quality and a frame rate of 15.</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: #6699cc; font-weight: bold;">var</span> <span style="color: #004993;">bandwidth</span><span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=int%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:int.html"><span style="color: #004993;">int</span></a> = <span style="color: #000000; font-weight:bold;">0</span><span style="color: #000066; font-weight: bold;">;</span> <span style="color: #009900; font-style: italic;">// Specifies the maximum amount of bandwidth that the current outgoing video feed can use, in bytes per second. To specify that Flash Player video can use as much bandwidth as needed to maintain the value of quality , pass 0 for bandwidth . The default value is 16384.</span><br />
<span style="color: #6699cc; font-weight: bold;">var</span> <span style="color: #004993;">quality</span><span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=int%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:int.html"><span style="color: #004993;">int</span></a> = <span style="color: #000000; font-weight:bold;">50</span><span style="color: #000066; font-weight: bold;">;</span> <span style="color: #009900; font-style: italic;">// this value is 0-100 with 1 being the lowest quality. Pass 0 if you want the quality to vary to keep better framerates</span><br />
<span style="color: #6699cc; font-weight: bold;">var</span> camera<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=camera%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:camera.html"><span style="color: #004993;">Camera</span></a> = <a href="http://www.google.com/search?q=camera%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:camera.html"><span style="color: #004993;">Camera</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">getCamera</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
camera<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">setQuality</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">bandwidth</span><span style="color: #000066; font-weight: bold;">,</span> <span style="color: #004993;">quality</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
camera<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">setMode</span><span style="color: #000000;">&#40;</span>320<span style="color: #000066; font-weight: bold;">,</span>240<span style="color: #000066; font-weight: bold;">,</span>15<span style="color: #000066; font-weight: bold;">,</span><span style="color: #0033ff; font-weight: bold;">true</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span> <span style="color: #009900; font-style: italic;">// setMode(videoWidth, videoHeight, video fps, favor area)</span><br />
<br />
<span style="color: #009900; font-style: italic;">// Now attach the webcam stream to a video object.</span><br />
<span style="color: #6699cc; font-weight: bold;">var</span> video<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=video%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:video.html"><span style="color: #004993;">Video</span></a> = <span style="color: #0033ff; font-weight: bold;">new</span> <a href="http://www.google.com/search?q=video%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:video.html"><span style="color: #004993;">Video</span></a><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
video<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">attachCamera</span><span style="color: #000000;">&#40;</span>camera<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span>video<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span></div></td></tr></tbody></table></div>
<p>Depending on your project, you can change bandwidth, quality, and frame-rate settings to find the best combination. I would suggest setting the video capture size smaller, then stretching it up. This will allow for a higher frame rate since you are sending smaller video that is stretched. The video is a littler blurry, but if you plan on having lots of movement, having a higher frame-rate will be more important.</p>
<p> </p>
<p><strong>Setup Camera to take a photo<br />
</strong>This type of configuration isn&#8217;t a whole lot different the the code example above. The main difference is that we aren&#8217;t passing constant amounts of data to a streaming server each second. Instead, we just need to get the camera&#8217;s data once. So, we can up the quality and frame rate to our hearts content (granted the user&#8217;s hardware allows for the settings).</p>
<p>Here is the above example, but with maxed out configuration for high photo quality.</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 /></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: #6699cc; font-weight: bold;">var</span> <span style="color: #004993;">bandwidth</span><span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=int%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:int.html"><span style="color: #004993;">int</span></a> = <span style="color: #000000; font-weight:bold;">0</span><span style="color: #000066; font-weight: bold;">;</span> <span style="color: #009900; font-style: italic;">// Specifies the maximum amount of bandwidth that the current outgoing video feed can use, in bytes per second. To specify that Flash Player video can use as much bandwidth as needed to maintain the value of quality , pass 0 for bandwidth . The default value is 16384.</span><br />
<span style="color: #6699cc; font-weight: bold;">var</span> <span style="color: #004993;">quality</span><span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=int%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:int.html"><span style="color: #004993;">int</span></a> = <span style="color: #000000; font-weight:bold;">100</span><span style="color: #000066; font-weight: bold;">;</span> <span style="color: #009900; font-style: italic;">// this value is 0-100 with 1 being the lowest quality. Pass 0 if you want the quality to vary to keep better framerates</span><br />
<span style="color: #6699cc; font-weight: bold;">var</span> camera<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=camera%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:camera.html"><span style="color: #004993;">Camera</span></a> = <a href="http://www.google.com/search?q=camera%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:camera.html"><span style="color: #004993;">Camera</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">getCamera</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
camera<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">setQuality</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">bandwidth</span><span style="color: #000066; font-weight: bold;">,</span> <span style="color: #004993;">quality</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
camera<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">setMode</span><span style="color: #000000;">&#40;</span>320<span style="color: #000066; font-weight: bold;">,</span>240<span style="color: #000066; font-weight: bold;">,</span>30<span style="color: #000066; font-weight: bold;">,</span><span style="color: #0033ff; font-weight: bold;">false</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span> <span style="color: #009900; font-style: italic;">// setMode(videoWidth, videoHeight, video fps, favor area)</span><br />
<span style="color: #6699cc; font-weight: bold;">var</span> video<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=video%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:video.html"><span style="color: #004993;">Video</span></a> = <span style="color: #0033ff; font-weight: bold;">new</span> <a href="http://www.google.com/search?q=video%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:video.html"><span style="color: #004993;">Video</span></a><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
video<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">attachCamera</span><span style="color: #000000;">&#40;</span>camera<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span>video<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span></div></td></tr></tbody></table></div>
<p>Feel free to comment with any questions. Check out <a href="http://blog.728media.com/2008/11/13/flash-media-server-quirks-and-tips/">my other post</a> for more AS3 Camera quirks and tips.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2009/02/24/actionscript-3-webcam-configure/feed/</wfw:commentRss>
		<slash:comments>25</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>GTween improved squencing support</title>
		<link>http://blog.728media.com/2009/01/26/gtween-improved-squencing-support/</link>
		<comments>http://blog.728media.com/2009/01/26/gtween-improved-squencing-support/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 17:03:14 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[GTween]]></category>
		<category><![CDATA[tweening]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=206</guid>
		<description><![CDATA[As some of you may know, Grant Skinner has been working on his own tweening library called GTween. The project is still in beta stages with a promise to be delivered public in the next couple weeks.
gskinner.com: gBlog: Preview: GTween beta 5, Now With More Sequencing.

]]></description>
			<content:encoded><![CDATA[<p>As some of you may know,<a href="http://www.gskinner.com/blog/"> Grant Skinner</a> has been working on his own tweening library called GTween. The project is still in beta stages with a promise to be delivered public in the next couple weeks.</p>
<p><a href="http://www.gskinner.com/blog/archives/2009/01/preview_gtween.html">gskinner.com: gBlog: Preview: GTween beta 5, Now With More Sequencing.<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2009/01/26/gtween-improved-squencing-support/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>Tweensy Goes Public!</title>
		<link>http://blog.728media.com/2009/01/06/tweensy-goes-public/</link>
		<comments>http://blog.728media.com/2009/01/06/tweensy-goes-public/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 07:04:14 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[lost in actionscript]]></category>
		<category><![CDATA[shane mccartney]]></category>
		<category><![CDATA[tweener]]></category>
		<category><![CDATA[tweening library]]></category>
		<category><![CDATA[tweensy]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=184</guid>
		<description><![CDATA[Tweensy Goes Public! Read on to find out what you have been missing and so rightfully deserve.]]></description>
			<content:encoded><![CDATA[<p> </p>
<p><img class="alignnone size-full wp-image-188" title="tweensy_love" src="http://blog.728media.com/wp-content/uploads/2009/01/tweensy_love.jpg" alt="tweensy_love" width="350" height="222" /></p>
<p>As you may have read in my <a href="http://blog.728media.com/2008/12/23/tweensy-adds-much-needed-effects-support/">last post</a>, I was lucky enough to get my hands on a beta version of &#8220;<a href="http://www.lostinactionscript.com/blog/index.php/2009/01/05/tweensy-goes-public/">Tweensy</a>&#8220;. Tweensy is an actionscript 3 tweening library from Shane over at <a href="http://www.lostinactionscript.com">Lost In Actionscript</a>. Within the short time that I have been able to use the library I have been amazed at the speed and simplicity of it&#8217;s use. As of today, Tweensy has officially gone public!</p>
<p>There are two main libraries available plus an FX expansion package: <em>Tweensy Original</em> and <em>Tweensy Zero.</em> In Shane&#8217;s <a href="http://www.lostinactionscript.com/blog/index.php/2009/01/05/tweensy-goes-public/">latest post</a> he describes why Tweensy is better than any other as3 tweening engine. To sum it up, he uses Object Pooling and utilizes DoubleLinked lists rather than a Dictionary or Array. I could try and go into more detail, but Shane does a better job at explaining.</p>
<p>Ease of use is the main seller for me. Yes performance is great to have when you are working on high profile, bleeding edge projects. However I am often working on more basic projects that need to be completed on a tight deadline. Currently I use Tweener. It is so simple to setup and use. There are a couple of extra steps that you will need to take with Tweensy to accomplish the same ol&#8217; tween as Tweener. <em>Tweensy Zero</em> should make it more worth my while though on the smaller projects. The entire library is compressed down to 2.9kb! I&#8217;m not sure to what extend this version is limited, but it will be great to help spiffy up some boring banners!</p>
<p>Of course what I&#8217;m most excited about is the effects package that Shane has created that pairs with Tweensy well. It currently is somewhat limited to creating emitters and glowing blurry objects (as you can tell in <a href="http://blog.728media.com/2008/12/23/tweensy-adds-much-needed-effects-support/">my first demo</a> and many of <a href="http://www.lostinactionscript.com/blog/index.php/2008/08/31/as3-tween-engine-tweensy-preview/">Shane&#8217;s</a>), but he has also used it to create a cool <a href="http://www.flashdynamix.com/examples/Tweensy/0.2/bumpMapFX.html">BumpMap</a> and <a href="http://www.flashdynamix.com/examples/Tweensy/0.2/bulgeFX.html">Bulge</a> demos. Also, Shane claims it&#8217;s easy to create better tweens that <a href="http://code.google.com/p/tweensy/wiki/MotionGuides">animate on complicated motion guides</a> with Tweensy.</p>
<p>Now I&#8217;m off to download the <a href="http://code.google.com/p/tweensy/">latest source from Google Code</a>! Be sure to snag your copy and post your demos!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2009/01/06/tweensy-goes-public/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweensy adds much needed effects support</title>
		<link>http://blog.728media.com/2008/12/23/tweensy-adds-much-needed-effects-support/</link>
		<comments>http://blog.728media.com/2008/12/23/tweensy-adds-much-needed-effects-support/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 16:38:12 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Labs]]></category>
		<category><![CDATA[tweening]]></category>
		<category><![CDATA[tweensy]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=181</guid>
		<description><![CDATA[
I was lucky enough to recently acquire a beta version of the Tweensy library from Shane McCartney over at Lost In Actionscript. I&#8217;ve taken my first crack at using the engine and I have to say I&#8217;m very excited to see what is still in store for this promising library. Currently I use Tweener for [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-182" title="tweensyaudio" src="http://blog.728media.com/wp-content/uploads/2008/12/tweensyaudio.jpg" alt="tweensyaudio" width="637" height="281" /></p>
<p>I was lucky enough to recently acquire a beta version of the <a href="http://www.lostinactionscript.com/blog/index.php/2008/08/31/as3-tween-engine-tweensy-preview/">Tweensy </a>library from<a href="http://www.lostinactionscript.com/"> Shane McCartney</a> over at Lost In Actionscript. I&#8217;ve taken my first crack at using the engine and I have to say I&#8217;m very excited to see what is still in store for this promising library. Currently I use <a href="http://code.google.com/p/tweener/">Tweener </a>for all my projects. It is quick, painless and very simple to use. It doesn&#8217;t support filters and uses mainly static methods. Tweensy on the other hand has support for many different types of effects that all developers yearn for (BitmapLayer is my favorite). Tweensy is broken down in easier to manage pieces that help keep the file size down. Be sure to check back often for more demos as I expand my knowledge of this great new piece of work. Oh, and I almost forgot to mention&#8230;Tweensy has support to &#8220;yo yo&#8221; a tween!</p>
<p><a href="http://labs.728media.com/tweensy/audio">View The Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2008/12/23/tweensy-adds-much-needed-effects-support/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Drop.io AS3 Library Update</title>
		<link>http://blog.728media.com/2008/12/15/dropio-as3-library-update/</link>
		<comments>http://blog.728media.com/2008/12/15/dropio-as3-library-update/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 01:46:31 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Labs]]></category>
		<category><![CDATA[as3 lib]]></category>
		<category><![CDATA[drop.io]]></category>
		<category><![CDATA[library]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=179</guid>
		<description><![CDATA[UPDATE: I have posted what there is for files on Google Code. The code currently is considered as-is with no support.
So as I mentioned in this post, I have been working on an AS3 library for interfacing with the new Drop.io API. Since my announcement, I&#8217;ve been getting some great support from both developers and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATE: <a href="http://code.google.com/p/dropio-as3-library/">I have posted what there is for files on Google Code</a>. The code currently is considered as-is with no support.</strong></p>
<p>So as I mentioned in <a href="http://blog.728media.com/2008/12/01/dropio-as3-library/">this post</a>, I have been working on an AS3 library for interfacing with the new <a href="http://api.drop.io">Drop.io API</a>. Since my announcement, I&#8217;ve been getting some great support from both developers and the <a href="http://drop.io">Drop.io</a> team. It has been a while and I wanted to let you know I&#8217;m still working on the library. I&#8217;ve got some free time coming up soon, so I hope to use that time to get something ready for a beta stage.</p>
<p>Keep checking back for more updates! My goal is to have it complete by the end of the year.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2008/12/15/dropio-as3-library-update/feed/</wfw:commentRss>
		<slash:comments>5</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>Drop.io AS3 Library</title>
		<link>http://blog.728media.com/2008/12/01/dropio-as3-library/</link>
		<comments>http://blog.728media.com/2008/12/01/dropio-as3-library/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 07:48:37 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[drop.io]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=172</guid>
		<description><![CDATA[UPDATE: I have posted what there is for files on Google Code. The code currently is considered as-is.



So I mentioned in my last post about the new Drop.io API and how easy it is to use. Well, since then I&#8217;ve been playing around with the API in flash and accidentally started an AS3 Flash library [...]]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATE: <a href="http://code.google.com/p/dropio-as3-library/">I have posted what there is for files on Google Code</a>. The code currently is considered as-is.</strong></p>
<p><strong><br />
</strong></p>
<p><a href="http://blog.728media.com/wp-content/uploads/2008/12/picture-6.png"><img class="alignnone size-full wp-image-173" title="picture-6" src="http://blog.728media.com/wp-content/uploads/2008/12/picture-6.png" alt="" width="500" height="384" /></a></p>
<p>So I mentioned in <a href="http://blog.728media.com/2008/11/29/the-new-dropio-api-dropio-desktop-manager/">my last post</a> about the new <a href="http://api.drop.io">Drop.io API</a> and how easy it is to use. Well, since then I&#8217;ve been playing around with the API in flash and accidentally started an AS3 Flash library for the API. Hopefully I&#8217;ll have enough time soon to complete it so other Flash developers can use it to create their own <a href="http://drop.io">Drop.io</a> apps. The image above is one of the first tests I was working on that started all this.</p>
<p>I will be posting updates on the library, so be sure to check back. If anyone has already started working on an AS3 library, feel free to post a comment. Any help or support I can get is appreciated!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2008/12/01/dropio-as3-library/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The New Drop.io API: Drop.io Desktop Manager</title>
		<link>http://blog.728media.com/2008/11/29/the-new-dropio-api-dropio-desktop-manager/</link>
		<comments>http://blog.728media.com/2008/11/29/the-new-dropio-api-dropio-desktop-manager/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 19:32:34 +0000</pubDate>
		<dc:creator>Andrew Christensen</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Labs]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[drop.io]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://blog.728media.com/?p=170</guid>
		<description><![CDATA[
UPDATE: This application has been altered. The finished product is called Droplet and be viewed HERE
Over a year ago I had the pleasure of working on the team that created Drop.io. I had built the original Flash uploaders. Since then, the Drop.io team has been hard at work and just last week released a new version of [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://api.drop.io/images/dropio_logo_newschool_on_white.gif" alt="" width="126" height="39" /></p>
<p><strong>UPDATE:</strong> This application has been altered. The finished product is called <em>Droplet</em> and be viewed <a href="http://blog.728media.com/2009/03/14/droplet-quick-dropio-desktop-air-app/">HERE</a></p>
<p>Over a year ago I had the pleasure of working on the team that created <a href="http://drop.io">Drop.io</a>. I had built the original Flash uploaders. Since then, the Drop.io team has been hard at work and just last week released a new version of the site with a TON of great new features. My absolute favorite is the new <a href="http://api.drop.io/">Drop.io API</a>. Getting a <strong><span style="color: #ab0c2f;">FREE</span></strong> key is simple and very quick (possibly faster than getting a <strong><span style="color: #ab0c2f;">FREE</span></strong> drop)! With only an hour into it, I&#8217;ve already managed to move, delete, and add assets quickly and painlessly. I can&#8217;t wait to get some more time into this and build out a drop manager in Adobe AIR.</p>
<p>Keep checking back for more status updates, I hope to have the <strong>Drop.io Desktop Manager</strong> available soon!</p>
<p>Until then, check out some of my other AIR apps&#8230;<br />
<strong><a href="http://blog.728media.com/2008/10/29/super-duper-flv-player-for-adobe-air/">Super Duper Desktop FLV Player<br />
</a><span style="font-weight: normal;"><a href="http://blog.728media.com/2008/10/27/file-furnace-app-added-to-softpedia/">The File Furnace</a></span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.728media.com/2008/11/29/the-new-dropio-api-dropio-desktop-manager/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
