<?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>kenny bunch</title>
	<atom:link href="http://www.kennybunch.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kennybunch.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 25 Sep 2009 16:11:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Embedding JavaScript into a SWF</title>
		<link>http://www.kennybunch.com/blog/2009/09/embedding-javascript-into-a-swf/</link>
		<comments>http://www.kennybunch.com/blog/2009/09/embedding-javascript-into-a-swf/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 16:11:59 +0000</pubDate>
		<dc:creator>Kenny Bunch</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=272</guid>
		<description><![CDATA[Developers that have been using Flex should be pretty familiar by now with the Embed metadata tag which allows you to embed assets into a SWF (like images, SWFs, XML, etc). This option has also been added to CS4 (CS4 uses the Flex SDK to complete this task). 
What some of you may not know [...]]]></description>
			<content:encoded><![CDATA[<p>Developers that have been using Flex should be pretty familiar by now with the <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=embed_3.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://livedocs.adobe.com/flex/3/html/help.html?content=embed_3.html');">Embed metadata tag</a> which allows you to embed assets into a SWF (like images, SWFs, XML, etc). This option has also been added to CS4 (CS4 uses the Flex SDK to complete this task). </p>
<p>What some of you may not know or though of, is that you can actually embed JavaScript libraries into your SWF and have your SWF write those libs to the pages DOM. We've been using this technique for a while. However, when someone asked for a reference on the subject, I searched the web and didn't find one. So here we are <img src='http://www.kennybunch.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>This technique is quite simple. The basics of it are that you embed the JavaScript library using the embed syntax, then create a Class that references it when instantiated, instantiate that class, get the string representation of the instance, and send that string to the page to be embedded using a JavaScript eval statement.</p>
<p>To illustrate this, lets create a JavaScript file called hello.js which has a single function hello that throws an JS alert.</p>
<p>Hello.js</p>
<div class="igBar"><span id="ljavascript-3"><a href="#" onclick="javascript:showPlainTxt('javascript-3'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">JavaScript:</span>
<div id="javascript-3">
<div class="javascript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #003366; font-weight: bold;">function</span> hello<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp;<span style="color: #000066;">alert</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">"hello"</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Now lets create the ActionScript file that embeds the JS into a SWF, writes it to the page, and calls the hello function in the lib.</p>
<div class="igBar"><span id="lactionscript-4"><a href="#" onclick="javascript:showPlainTxt('actionscript-4'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-4">
<div class="actionscript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">package </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">display</span>.<span style="color: #006600;">Sprite</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">external</span>.<span style="color: #006600;">ExternalInterface</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">class</span> EmbeddedJavaScriptExample <span style="color: #0066CC;">extends</span> Sprite</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">// embed the JavaScript into the SWF</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#91;</span>Embed<span style="color: #66cc66;">&#40;</span>source=<span style="color: #ff0000;">"hello.js"</span>, mimeType=<span style="color: #ff0000;">"application/octet-stream"</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#93;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">// create a class that can instantiate the JavaScript for embedding</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #0066CC;">static</span> const HelloJS:<span style="color: #000000; font-weight: bold;">Class</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> EmbeddedJavaScriptExample<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span>ExternalInterface.<span style="color: #006600;">available</span><span style="color: #66cc66;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">// embed the JavaScript to the page</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ExternalInterface.<span style="color: #0066CC;">call</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">"eval"</span>, <span style="color: #000000; font-weight: bold;">new</span> HelloJS<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #0066CC;">toString</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">// the embedded JavaScript has a function call named hello</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">// now that it has been embedded to the page call it</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ExternalInterface.<span style="color: #0066CC;">call</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">"hello"</span><span style="color: #66cc66;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>You can <a href="http://www.kennybunch.com/blog/wp-content/uploads/2009/09/embeddedjavascriptexample.zip" onclick="javascript:pageTracker._trackPageview('/downloads/blog/wp-content/uploads/2009/09/embeddedjavascriptexample.zip');">download the full example here.</a></p>
<p>Pretty nifty eh? Hope this shows you a neat little trick to use in distributing some of your SWF/JS libraries.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kennybunch.com/blog/2009/09/embedding-javascript-into-a-swf/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Bear on a Wire (previously Poor Bear) IPhone game released</title>
		<link>http://www.kennybunch.com/blog/2009/09/bear-on-a-wire-previously-poor-bear-iphone-game-released/</link>
		<comments>http://www.kennybunch.com/blog/2009/09/bear-on-a-wire-previously-poor-bear-iphone-game-released/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 14:57:22 +0000</pubDate>
		<dc:creator>Kenny Bunch</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[IPhone]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=267</guid>
		<description><![CDATA[
Bear on a Wire Trailer from bearzo on Vimeo.
The Game
Our first IPhone game, previously code named Poor Bear is officially available in the app store today under the name Bear on a Wire. For those of you who followed the progression of the game on our site (1,  2, 3, 4) know that this [...]]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="267"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=6367707&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=6367707&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="267"></embed></object>
<p><a href="http://vimeo.com/6367707" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://vimeo.com/6367707');">Bear on a Wire Trailer</a> from <a href="http://vimeo.com/user2239705" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://vimeo.com/user2239705');">bearzo</a> on <a href="http://vimeo.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://vimeo.com');">Vimeo</a>.</p>
<h2>The Game</h2>
<p>Our <a href="http://bearonawire.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://bearonawire.com');">first IPhone game</a>, previously code named Poor Bear is officially <a href="http://itunes.com/app/bearonawire" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://itunes.com/app/bearonawire');">available in the app store today</a> under the name Bear on a Wire. For those of you who followed the progression of the game on our site (<a href="http://dreamsocket.com/news/category/development/annoucing-project-codename-poor-bear" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/development/annoucing-project-codename-poor-bear');">1</a>,  <a href="http://dreamsocket.com/news/category/development/poor-bear-stage-2-design" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/development/poor-bear-stage-2-design');">2</a>, <a href="http://dreamsocket.com/news/category/development/poor-bear-update-3-development-progress" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/development/poor-bear-update-3-development-progress');">3</a>, <a href="http://dreamsocket.com/news/category/development/poor-bear-update-4-collision-detection" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/development/poor-bear-update-4-collision-detection');">4</a>) know that this game didn't start with designs, requirements, deadlines, or the promise of gold bars. Instead it was built on the premise that we could make something fun that we molded just how we wanted it.  That mold shifted and turned over time. Even at the starting gate, we didn't even know what type of game we were making. The game really grew organically and took on a life of its own.  I'm personally blown away with the outcome, especially considering this was Chad's (the developer)  first game and he went into it not knowing Objective C.  The design is a work of art as well. However, for those of you know <a href="http://tvmstudio.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://tvmstudio.com');">Trevor (the designer)</a>, know that you could expect nothing less. Words can't do justice to what 1 designer and 1 developer have done with this game. It is simply amazing and even though it is our own game, none of us can stop playing. That was the point though. We built something we loved. We hope you will too!</p>
<h2>Support Us</h2>
<p>We appreciate any support you can give us. For those with an IPhone grab the game now, rate it, and review it!<br />
APP STORE: <a href="http://itunes.com/app/bearonawire" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://itunes.com/app/bearonawire');">http://itunes.com/app/bearonawire</a></p>
<p>For those wanting to get the word out. Here are some links to blog, twitter, AIM, tell someone on a subway, etc. We will have flyers too that you can print and post on bathroom walls, telephone polls, and anywhere in eyes view.<br />
SHARE THE BEAR!</p>
<p>APP STORE: <a href="http://itunes.com/app/bearonawire" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://itunes.com/app/bearonawire');">http://itunes.com/app/bearonawire</a><br />
SITE: <a href="http://bearonawire.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://bearonawire.com');">http://bearonawire.com</a><br />
TWITTER: <a href="http://twitter.com/bearonawire" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://twitter.com/bearonawire');">http://twitter.com/bearonawire</a><br />
VIMEO: <a href="http://www.vimeo.com/6367707" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.vimeo.com/6367707');">http://www.vimeo.com/6367707</a><br />
YOUTUBE: <a href="http://www.youtube.com/dreamsocket" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.youtube.com/dreamsocket');">http://www.youtube.com/dreamsocket</a></p>
<h2>Press Release</h2>
<p>Dreamsocket &#038; TVM Studio are excited to announce they have just released Bear On A Wire. </p>
<p>URL: <a href="http://bearonawire.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://bearonawire.com/');">http://bearonawire.com/</a></p>
<p>Apple app store link: <a href="http://itunes.com/app/bearonawire" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://itunes.com/app/bearonawire');">http://itunes.com/app/bearonawire</a></p>
<p>About the game:<br />
Our green hero, Bearzo, has had it! No more performing for "THE MAN" day in and day out. What! Do you think he is some kind of dancing bear? NO... he is a high wire bear, and it's time for him to make his great escape from the Big Top. He loves his fans and his work, but he just wants to be free and feel his scarf blow in the wind as he shreds wire with the most insane moves ever attempted ... on a Moped... on top of high voltage power lines. Get ready to feel the power of the 49cc, two stroke, and single cylinder stallion!</p>
<p>As you tear off on the wire, try to balance Bearzo and keep him from fallingdown into the 1.21 gigawatts that alternate through the wires below him (Ah, the smell of burnt bear hair). While balancing on the wire, acquire crazy mad points by using the different stunt key combinations to generate some MOPED MAYHEM (ECO..ECo..eco) Bearzo's stunts include no hands, half twist, full twist, bear buck, back roll, front roll, jump roll, grinder, spin roll, spin buck, spin buck grinder, coat tail, coat tail kick, and the next to impossible coat tail kick spin grinder. Combine these stunts with full flips, double flips... triple flips...? Now you are just being crazy! Collect coins and rack up even more points. I know...you never saw collectable coins coming. Don't get caught hibernating b/c it's about to get all GRIZZLY up in here!</p>
<p>Get pumped for BEAR ON A WIRE.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kennybunch.com/blog/2009/09/bear-on-a-wire-previously-poor-bear-iphone-game-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Presenting at the Flex User group in Atlanta tonight</title>
		<link>http://www.kennybunch.com/blog/2009/04/presenting-at-the-flex-user-group-in-atlanta-tonight/</link>
		<comments>http://www.kennybunch.com/blog/2009/04/presenting-at-the-flex-user-group-in-atlanta-tonight/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 15:51:38 +0000</pubDate>
		<dc:creator>Kenny Bunch</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=264</guid>
		<description><![CDATA[Its late notice, but better late than never. I will be presenting along with Alan Queen tonight at Atlanta's Flex User Group in Buckhead. Alan will begin the night with talking about dynamic audio with Flex/Flash/Air and then I'll close it out talking about general media applications and our framework.
The meeting starts at 6:30 and [...]]]></description>
			<content:encoded><![CDATA[<p>Its late notice, but better late than never. I will be presenting along with Alan Queen tonight at Atlanta's Flex User Group in Buckhead. Alan will begin the night with talking about dynamic audio with Flex/Flash/Air and then I'll close it out talking about general media applications and our framework.</p>
<p>The meeting starts at 6:30 and is at<br />
Echo Eleven's offices<br />
3525 Piedmont Rd NE<br />
Building 7, Suite 400<br />
Atlanta, GA 30305</p>
<p>The <a href="http://www.meetup.com/atlflex/calendar/9984133/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.meetup.com/atlflex/calendar/9984133/');">meetup site has more details</a>. Definitely come out if you can, it looks to be a great meeting! If you do, <a href="http://www.meetup.com/atlflex/calendar/9984133/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.meetup.com/atlflex/calendar/9984133/');">make sure to RSVP</a> as it looks like the list is pretty large right now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kennybunch.com/blog/2009/04/presenting-at-the-flex-user-group-in-atlanta-tonight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Collision Detection and Poor Bear</title>
		<link>http://www.kennybunch.com/blog/2009/04/collision-detection-and-poor-bear/</link>
		<comments>http://www.kennybunch.com/blog/2009/04/collision-detection-and-poor-bear/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 20:39:04 +0000</pubDate>
		<dc:creator>Kenny Bunch</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=262</guid>
		<description><![CDATA[Chad posted a nice article on Dreamsocket.com outlining some problems he was trying to solve with doing collision detection and his solution. It is an interesting read and gives you some technical insight into some of our development process with Project Poor Bear.  Check it out when you get a chance. 
]]></description>
			<content:encoded><![CDATA[<p>Chad posted a <a href="http://dreamsocket.com/news/category/development/poor-bear-update-4-collision-detection" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/development/poor-bear-update-4-collision-detection');">nice article on Dreamsocket.com</a> outlining some problems he was trying to solve with doing collision detection and his solution. It is an interesting read and gives you some technical insight into some of our development process with Project Poor Bear.  <a href="http://dreamsocket.com/news/category/development/poor-bear-update-4-collision-detection" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/development/poor-bear-update-4-collision-detection');">Check it out</a> when you get a chance. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kennybunch.com/blog/2009/04/collision-detection-and-poor-bear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Media Framework license and pricing changes</title>
		<link>http://www.kennybunch.com/blog/2009/04/media-framework-license-and-pricing-changes/</link>
		<comments>http://www.kennybunch.com/blog/2009/04/media-framework-license-and-pricing-changes/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 18:52:14 +0000</pubDate>
		<dc:creator>Kenny Bunch</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=255</guid>
		<description><![CDATA[Today we introduced a new license and pricing model for the Dreamsocket Media Framework. 
The new license model:

$99   - Individual
$350 - Small Business (2 - 20 employees)
$895 - Midsize Business (21 -50 employees)
$1895 - Large Business (51+ employees)

To see all the details of the change and why we did it, check the post [...]]]></description>
			<content:encoded><![CDATA[<p>Today we introduced a <a href="http://dreamsocket.com/news/category/general/media-framework-license-and-price-changes" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/general/media-framework-license-and-price-changes');">new license and pricing model</a> for the <a href="http://dreamsocket.com/products/actionscript-media-framework/overview" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/products/actionscript-media-framework/overview');">Dreamsocket Media Framework</a>. </p>
<h2>The new license model:</h2>
<ul>
<li>$99   - Individual</li>
<li>$350 - Small Business (2 - 20 employees)</li>
<li>$895 - Midsize Business (21 -50 employees)</li>
<li>$1895 - Large Business (51+ employees)</li>
</ul>
<p>To see all the details of the change and why we did it, <a href="http://dreamsocket.com/news/category/general/media-framework-license-and-price-changes" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/general/media-framework-license-and-price-changes');">check the post over on our site</a>.</p>
<p>If you haven't <a href="http://dreamsocket.com/products/actionscript-media-framework/overview" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/products/actionscript-media-framework/overview');">checked out or grabbed your copy of the product</a>, now is a great time!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kennybunch.com/blog/2009/04/media-framework-license-and-pricing-changes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Clean Media Framework Documentation on Dreamsocket.com and in AS2 1.1.68 and AS3 1.1.84 release</title>
		<link>http://www.kennybunch.com/blog/2009/04/clean-media-framework-documentation-on-dreamsocketcom-and-in-as2-1168-and-as3-1184-release/</link>
		<comments>http://www.kennybunch.com/blog/2009/04/clean-media-framework-documentation-on-dreamsocketcom-and-in-as2-1168-and-as3-1184-release/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 18:12:01 +0000</pubDate>
		<dc:creator>Kenny Bunch</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=253</guid>
		<description><![CDATA[We updated all the ActionScript Media Framework documentation on the site today along with all the documentation in the product downloads. Though we put out a new release, nothing really changed but the docs and those changes were simple. We removed all uncommented private/protected class properties from the documentation. This makes reading the documentation less [...]]]></description>
			<content:encoded><![CDATA[<p>We updated all the <a href="http://dreamsocket.com/support/documentation" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/support/documentation');">ActionScript Media Framework documentation on the site</a> today along with all the documentation in the <a href="http://dreamsocket.com/products/actionscript-media-framework/overview" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/products/actionscript-media-framework/overview');">product downloads</a>. Though we put out a new release, nothing really changed but the docs and those changes were simple. We removed all uncommented private/protected class properties from the documentation. This makes reading the documentation less of a headache since its less clutter.</p>
<p><a href="http://dreamsocket.com/news/category/development/modified-as2api-source-code" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/development/modified-as2api-source-code');">Anyone that saw our earlier post on the as2api source code changes</a>, some of the capabilites that allowed us to selectively clean up the ActionScript 2 code base are in that post. Good times <img src='http://www.kennybunch.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Stay tuned for more goodies!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kennybunch.com/blog/2009/04/clean-media-framework-documentation-on-dreamsocketcom-and-in-as2-1168-and-as3-1184-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modified as2API source and binary posted</title>
		<link>http://www.kennybunch.com/blog/2009/04/modified-as2api-source-and-binary-posted/</link>
		<comments>http://www.kennybunch.com/blog/2009/04/modified-as2api-source-and-binary-posted/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 16:32:13 +0000</pubDate>
		<dc:creator>Kenny Bunch</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=251</guid>
		<description><![CDATA[We modified the as2api doc tool for ActionScript 2 to include hiding/showing private members, events, and @private tags. The source and information is posted over at Dreamsocket. If it is useful to you, go read about the changes and grab it!
]]></description>
			<content:encoded><![CDATA[<p>We modified the as2api doc tool for ActionScript 2 to include hiding/showing private members, events, and @private tags. <a href="http://dreamsocket.com/news/category/development/modified-as2api-source-code" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/development/modified-as2api-source-code');">The source and information is posted over at Dreamsocket</a>. If it is useful to you, go <a href="http://dreamsocket.com/news/category/development/modified-as2api-source-code" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/development/modified-as2api-source-code');">read about the changes and grab it</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kennybunch.com/blog/2009/04/modified-as2api-source-and-binary-posted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Poor Bear Update 3 posted</title>
		<link>http://www.kennybunch.com/blog/2009/03/project-poor-bear-update-3-posted/</link>
		<comments>http://www.kennybunch.com/blog/2009/03/project-poor-bear-update-3-posted/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 21:19:57 +0000</pubDate>
		<dc:creator>Kenny Bunch</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=249</guid>
		<description><![CDATA[We posted progress on ole Poor Bear over at Dreamsocket. However, we don't want this to be a one way communication outlet on what we are doing. We want you involved. Go check out the post and share your ideas on elements of the game. Help us make Poor happy! 
]]></description>
			<content:encoded><![CDATA[<p>We posted <a href="http://dreamsocket.com/news/category/development/poor-bear-update-3-development-progress" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/development/poor-bear-update-3-development-progress');">progress on ole Poor Bear over at Dreamsocket</a>. However, we don't want this to be a one way communication outlet on what we are doing. We want you involved. Go <a href="http://dreamsocket.com/news/category/development/poor-bear-update-3-development-progress" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/development/poor-bear-update-3-development-progress');">check out the post and share your ideas on elements of the game</a>. Help us make Poor happy! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kennybunch.com/blog/2009/03/project-poor-bear-update-3-posted/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Media Framework Solution: Cartoon Network and Jetstream Video Gallery</title>
		<link>http://www.kennybunch.com/blog/2009/03/media-framework-solution-cartoon-network-and-jetstream-video-gallery/</link>
		<comments>http://www.kennybunch.com/blog/2009/03/media-framework-solution-cartoon-network-and-jetstream-video-gallery/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 14:52:02 +0000</pubDate>
		<dc:creator>Kenny Bunch</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=246</guid>
		<description><![CDATA[Our site has a solutions section that showcases sites and applications where we have used our media framework in the past. In a way it provides a glimpse into the legacy and evolution of the framework. Unfortunately it doesn't paint the entire picture, as our largest and most notable solutions haven't been posted due client [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://dreamsocket.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com');">Our site</a> has a <a href="http://dreamsocket.com/solutions" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/solutions');">solutions section that showcases sites and applications</a> where we have used <a href="http://dreamsocket.com/products/actionscript-media-framework" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/products/actionscript-media-framework');">our media framework</a> in the past. In a way it provides a glimpse into the legacy and evolution of the framework. Unfortunately it doesn't paint the entire picture, as our largest and most notable solutions haven't been posted due client PR departments. Sometimes we get a break, mind sets change and we get the privilege to show them out of the blue. Today was one of those days when PR mindset changed. Many thanks to Jim and Paul for making this happen for us. </p>
<p>Long story short, we posted the <a href="http://dreamsocket.com/solutions/video-gallery" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/solutions/video-gallery');">Cartoon Network and Jetstream video players</a> we developed to our solutions page. Though these applications are about 3 years old, they still tell an interesting story.  When first developed, they utilized Windows Media through an abstract bridge in Flash. The conversion to Flash video was actually seamless in that we didn't change code, we replaced the internal "playback".</p>
<p><a href="http://dreamsocket.com/solutions/video-gallery"Check it out when you get a chance!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kennybunch.com/blog/2009/03/media-framework-solution-cartoon-network-and-jetstream-video-gallery/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Project Poor Bear designs posted</title>
		<link>http://www.kennybunch.com/blog/2009/03/project-poor-bear-designs-posted/</link>
		<comments>http://www.kennybunch.com/blog/2009/03/project-poor-bear-designs-posted/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 16:42:00 +0000</pubDate>
		<dc:creator>Kenny Bunch</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kennybunch.com/blog/?p=244</guid>
		<description><![CDATA[We made a new post over at Dreamsocket which contains new designs, animations, and creative write up on our IPhone game (Project Poor Bear) that is currently in progress. Trevor has some great insights into his thoughts for the game. Go check it out!
]]></description>
			<content:encoded><![CDATA[<p>We made a <a href="http://dreamsocket.com/news/category/development/poor-bear-stage-2-design" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/development/poor-bear-stage-2-design');">new post over at Dreamsocket which contains new designs, animations, and creative write up</a> on our IPhone game (Project Poor Bear) that is currently in progress. Trevor has some great insights into his thoughts for the game. <a href="http://dreamsocket.com/news/category/development/poor-bear-stage-2-design" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dreamsocket.com/news/category/development/poor-bear-stage-2-design');">Go check it out</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kennybunch.com/blog/2009/03/project-poor-bear-designs-posted/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
