<?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>Sönke Rohde &#187; Flash</title>
	<atom:link href="http://soenkerohde.com/category/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://soenkerohde.com</link>
	<description>Flash Platform (Flash, Flex, AIR) thoughts and examples</description>
	<lastBuildDate>Wed, 18 Apr 2012 22:45:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Width Problem with Firefox</title>
		<link>http://soenkerohde.com/2009/06/width-problem-with-firefox/</link>
		<comments>http://soenkerohde.com/2009/06/width-problem-with-firefox/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 12:26:36 +0000</pubDate>
		<dc:creator>Sönke</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://soenkerohde.com/?p=578</guid>
		<description><![CDATA[<p>Recently I ran into a problem that I had to build a Flash movie which should fit the browser window meaning the Flash movie is embedded with 100%x100%.
The problem I had is that even if I resized the browser window to something like 400&#215;400 the stage.width property still showed 662. This caused that the content layout [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I ran into a problem that I had to build a Flash movie which should fit the browser window meaning the Flash movie is embedded with 100%x100%.<br />
The problem I had is that even if I resized the browser window to something like 400&#215;400 the stage.width property still showed 662. This caused that the content layout was wrong because it should take a width of 400 but used 662.</p>
<p>I investigated a bit more and it came out that this is caused by my Firefox browser where I tested the content. When I tested with Safari the minimal width my stage could get was 392 pixel. So WTF is happening here?</p>
<p>Then I tried to disable all Firefox toolbars and voilá, it worked like expected. Without any toolbar my flash content resized correctly to the actual size of the browser window.</p>
<p><b>Conclusion:</b> Firefox with toolbars enabled prevents that the Flashplayer stage gets below a specific width depending on the stuff you have in your toolbar.<br />
If you want to test small width Flash content which is embedded with 100%x100% be sure to disable all Firefox toolbars.</p>
<p>You can easily test it with this code for Flex:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #66cc66;">&lt;</span>?<span style="color: #0066CC;">xml</span> <span style="color: #0066CC;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> encoding=<span style="color: #ff0000;">&quot;utf-8&quot;</span>?<span style="color: #66cc66;">&gt;</span>
<span style="color: #66cc66;">&lt;</span>mx:Application xmlns:mx=<span style="color: #ff0000;">&quot;http://www.adobe.com/2006/mxml&quot;</span> layout=<span style="color: #ff0000;">&quot;absolute&quot;</span>
	resize=<span style="color: #ff0000;">&quot;resizeHandler(event)&quot;</span><span style="color: #66cc66;">&gt;</span>
&nbsp;
	<span style="color: #66cc66;">&lt;</span>mx:Script<span style="color: #66cc66;">&gt;</span>
		<span style="color: #66cc66;">&lt;!</span><span style="color: #66cc66;">&#91;</span>CDATA<span style="color: #66cc66;">&#91;</span>
&nbsp;
			<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">function</span> resizeHandler<span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>:Event<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span>
			<span style="color: #66cc66;">&#123;</span>
				<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">stage</span> <span style="color: #66cc66;">!</span>= <span style="color: #000000; font-weight: bold;">null</span><span style="color: #66cc66;">&#41;</span>
				<span style="color: #66cc66;">&#123;</span>
					<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;stage width &quot;</span> + <span style="color: #0066CC;">stage</span>.<span style="color: #0066CC;">width</span><span style="color: #66cc66;">&#41;</span>;
				<span style="color: #66cc66;">&#125;</span>
			<span style="color: #66cc66;">&#125;</span>
&nbsp;
		<span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&gt;</span>
	<span style="color: #66cc66;">&lt;/</span>mx:Script<span style="color: #66cc66;">&gt;</span>
&nbsp;
<span style="color: #66cc66;">&lt;/</span>mx:Application<span style="color: #66cc66;">&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://soenkerohde.com/2009/06/width-problem-with-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Multitouch for Telekom</title>
		<link>http://soenkerohde.com/2008/10/multitouch-for-telekom/</link>
		<comments>http://soenkerohde.com/2008/10/multitouch-for-telekom/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 10:16:53 +0000</pubDate>
		<dc:creator>Sönke</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://soenkerohde.com/?p=245</guid>
		<description><![CDATA[<p>My dear friend Jörg worked with foresee on a multitouch application for German Telekom and it went live in their store in Berlin &#8211; Mitte beginning of October. The client programming was done with Flash and Flex. I did not see it live but the video looks [...]]]></description>
			<content:encoded><![CDATA[<p>My dear friend <a href="http://liquidnight.de/2008/10/12/europes-first-multitouch/">Jörg</a> worked with <a href="http://foresee.biz">foresee</a> on a multitouch application for German Telekom and it went live in their <a href="http://4010.com/?p=http%3A//4010.com/blog/2008/09/erster-der-multitouch-im-4010-store/">store in Berlin</a> &#8211; Mitte beginning of October. The client programming was done with Flash and Flex. I did not see it live but the video looks awesome! Congratulations!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/-EqGp-53j4E&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/-EqGp-53j4E&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;fs=1" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://soenkerohde.com/2008/10/multitouch-for-telekom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search SWF &#8211; Missing Link</title>
		<link>http://soenkerohde.com/2008/07/search-swf-missing-link/</link>
		<comments>http://soenkerohde.com/2008/07/search-swf-missing-link/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 08:30:45 +0000</pubDate>
		<dc:creator>Sönke</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://soenkerohde.com/?p=220</guid>
		<description><![CDATA[<p>One of the weakness of Flash was the fact that search engines did not index SWF very well. This &#8220;missing link&#8221; was that indexing SWF was not easily possible. In the past only static textand links were indexed but to be honest &#8211; no serious Flash application works with static content. The problem was how to [...]]]></description>
			<content:encoded><![CDATA[<p>One of the weakness of Flash was the fact that search engines did not index SWF very well. This &#8220;missing link&#8221; was that indexing SWF was not easily possible. In the past only static textand links were indexed but to be honest &#8211; no serious Flash application works with static content. The problem was how to access the dynamic content because all Flash apps are coded differently and use trillions of different techniques to load external data. So the only one who can access all parts of a SWF is the Flash Player itself. For that reason Adobe developed a special headless version which runs on the server.</p>
<p><a href="http://www.andersblog.com/archives/2008/07/a_new_approach.html">Mark Anders describes it like this</a>:</p>
<blockquote><p><em>&#8220;So what we’ve done is to enable the search engines to actually run the app just as an end user would. They can not only run it and see the information that’s displayed, including data dynamically loaded from the network, but can interact with it as well, pressing on buttons and links to interact with the app and explore all of is content. </em></p>
<p><em>To enable this we have created a special version of the Flash player that is designed to run on the server as part of the indexing process. As the code executes, there are special API that notify the search engine when something changes and that allow inspection of the textual and other data that would be displayed to the user. </em></p>
<p><em> There are other API that enumerate links and allow the indexer to instruct the player to simulate a “click” on various objects that are displayed. In this way, the indexer can navigate the running app.&#8221;</em></p></blockquote>
<p>This new technology was developed together search industry leaders Google and Yahoo! and Google is rolling out this today! The nice thing is that SWFs do not have to be changed so all existing SWFs are ready to be indexed.</p>
<p><a href="http://justin.everett-church.com/index.php/2008/06/30/253/">Justin Everett-Church</a>:</p>
<blockquote><p><em>&#8220;All of this is going on now! Google is already in progress with spidering SWF content through the new system. Over the next weeks and months, you should see some pretty significant impact on the indicies as SWF content is made a first-class citizen for searchability&#8221;</em></p></blockquote>
<p>More links:</p>
<ul>
<li><a href="http://www.businesswire.com/portal/site/home/permalink/?ndmViewId=news_view&amp;newsId=20080630006649&amp;newsLang=en">Adobe announcement</a></li>
<li><a href="http://www.adobe.com/devnet/flashplayer/articles/swf_searchability.html?devcon=f1">SWF searchability FAQ </a></li>
<li><a href="http://googlewebmastercentral.blogspot.com/2008/06/improved-flash-indexing.html">Google Webmaster Central Blog</a></li>
<li><a href="http://www.techcrunch.com/2008/06/30/once-nearly-invisible-to-search-engines-flash-files-can-now-be-found-and-indexed/">TechCrunch</a></li>
<li><a href="http://dougmccune.com/blog/2008/07/02/how-adobes-special-search-indexing-flash-player-works/">Doug McCune comes with a scientific  graphical explanation</a></li>
</ul>
<p><a href="http://www.techcrunch.com/2008/06/30/once-nearly-invisible-to-search-engines-flash-files-can-now-be-found-and-indexed/"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://soenkerohde.com/2008/07/search-swf-missing-link/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Flex UG Hamburg with FC64 &#8211; Notes</title>
		<link>http://soenkerohde.com/2008/06/flex-ug-hamburg-with-fc64-notes/</link>
		<comments>http://soenkerohde.com/2008/06/flex-ug-hamburg-with-fc64-notes/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 09:34:54 +0000</pubDate>
		<dc:creator>Sönke</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[OSFlash]]></category>

		<guid isPermaLink="false">http://soenkerohde.com/?p=217</guid>
		<description><![CDATA[<p>On Friday we had our Flex Usergroup Hamburg meeting in our Adobe office. Our speaker Claus Wahlers gave us a look behind the scenes aka source of FC64 which he developed together with Darron Schall. Claus started with some &#8220;basics&#8221; about how the C64 works to get an idea about what has to be emulated. After [...]]]></description>
			<content:encoded><![CDATA[<p>On Friday we had our Flex Usergroup Hamburg meeting in our Adobe office. Our speaker <a href="http://wahlers.com.br/claus/blog/">Claus Wahlers</a> gave us a look behind the scenes aka source of <a href="http://codeazur.com.br/lab/fc64/">FC64</a> which he developed together with <a href="http://darronschall.com/weblog/">Darron Schall</a>. Claus started with some &#8220;basics&#8221; about <a href="http://en.wikipedia.org/wiki/C64">how the C64 works</a> to get an idea about what has to be emulated. After that he showed us parts of the code and explained the architecture behind which is divided into the CPU, MemoryManager and the Renderer which besides trillion other things does the final setPixel32.</p>
<p><img src="http://soenkerohde.com/img/claus_flexughh.jpg" alt="" width="640" height="480" /></p>
<p>All in all rocket science and Claus could only explain the tip of the iceberg but we got an impression what it means to build an emulator. Further he mentioned that <a href="http://www.unitzeroone.com/blog/">Ralph Hauwert</a> (one of the guys behind <a href="http://www.papervision3d.org/">Papervision3D</a>) is currently working on a Flash Player 10 version. This should open new opportunities since the new Vector class (typed Arrays) should be a big performance boost and the new sound features could open the door for sound emulation of the SID chip. For more infos and the source check the <a href="http://osflash.org/fc64">OSFlash FC64 site</a>.</p>
<p>Our next usergroup meeting will already be in two weeks. David Sowerby from <a href="http://www.shadocms.com/">Straker Interactive</a> will show us <a href="http://www.zoomflex.com">ZoomFlex</a> which claims to fasten up Flex development and generates code which is based on Cairngorm and the <a href="http://code.google.com/p/flexcairngorm/">Universal Mind Cairngorm extension</a>. Check the german <a href="http://www.flexughh.de/2008/06/28/flexughh-meeting-140708-david-sowerby-zoomflex-and-um-cairngorm-extensions/">FlexUG Hamburg blog</a> for more details.</p>
]]></content:encoded>
			<wfw:commentRss>http://soenkerohde.com/2008/06/flex-ug-hamburg-with-fc64-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FFK08 Notes</title>
		<link>http://soenkerohde.com/2008/05/ffk08-notes/</link>
		<comments>http://soenkerohde.com/2008/05/ffk08-notes/#comments</comments>
		<pubDate>Tue, 27 May 2008 17:44:28 +0000</pubDate>
		<dc:creator>Sönke</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://soenkerohde.com/?p=203</guid>
		<description><![CDATA[<p>Last week I visited the Flashforum Konferenz. It was really nice to meet old and new guys and I got some faces to names I read a lot. Sascha Wolter and Marc Thiele did an awesome job to provide such a nice conference &#8211; thanks!</p>
<p></p>
<p>Above Sascha and Marc announced Serge Jespers who is Adobe Platform Evangelist [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I visited the <a href="http://ffk08.flashforum.de">Flashforum Konferenz</a>. It was really nice to meet old and new guys and I got some faces to names I read a lot. Sascha Wolter and Marc Thiele did an awesome job to provide such a nice conference &#8211; thanks!</p>
<p><img src="http://soenkerohde.com/img/ffk08.jpg" alt="Flashforum Konferenz 2008" width="640" height="480" /></p>
<p>Above Sascha and Marc announced <a href="http://sergejespers.com/">Serge Jespers</a> who is Adobe Platform Evangelist and did the keynote. Besides many other things he demoed Pacifica which previously only was showed on MAX live. The <a href="http://blogs.adobe.com/pacifica/">Pacifica team now has a blog</a> so be sure to subscribe. Pacifica is</p>
<blockquote><p><em>&#8220;A Flash-based communications platform that allows developers to build highly customized, branded text and voice applications.&#8221;</em></p></blockquote>
<p>All sessions I visited were pretty cool. See ya next year!</p>
]]></content:encoded>
			<wfw:commentRss>http://soenkerohde.com/2008/05/ffk08-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Player 10 Links</title>
		<link>http://soenkerohde.com/2008/05/flash-player-10-links/</link>
		<comments>http://soenkerohde.com/2008/05/flash-player-10-links/#comments</comments>
		<pubDate>Mon, 19 May 2008 10:25:23 +0000</pubDate>
		<dc:creator>Sönke</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://soenkerohde.com/?p=199</guid>
		<description><![CDATA[<p>The Flash Player 10 public beta release was blogged around the web and I thought I post a few links a found during the last days:</p>

Targeting Flash Player 10 Beta with Flex SDK 3.0.x
Video Tutorial on Compiling for Flash Player 10 and from today three more Video Tutorials by Lee Brimelow
Tinic Uro from the Flash Player [...]]]></description>
			<content:encoded><![CDATA[<p>The Flash Player 10 public beta release was <a href="http://soenkerohde.com/2008/05/flash-player-10-beta-on-adobe-labs/">blogged</a> around the web and I thought I post a few links a found during the last days:</p>
<ul>
<li><a href="http://opensource.adobe.com/wiki/display/flexsdk/Targeting+Flash+Player+10+Beta+with+Flex+SDK+3.0.x">Targeting Flash Player 10 Beta with Flex SDK 3.0.x</a></li>
<li><a href="http://theflashblog.com/?p=384">Video Tutorial on Compiling for Flash Player 10 </a>and from today <a href="http://theflashblog.com/?p=384">three more Video Tutorials by Lee Brimelow</a></li>
<li><a href="http://www.kaourantin.net/">Tinic Uro</a> from the Flash Player team makes noise <a href="http://www.kaourantin.net/2008/05/adobe-is-making-some-noise-part-1.html">1</a>, <a href="http://www.kaourantin.net/2008/05/adobe-is-making-some-noise-part-2.html">2</a>, <a href="http://www.kaourantin.net/2008/05/adobe-is-making-some-noise-part-3.html">3</a> and <a href="http://www.kaourantin.net/2008/05/adobe-is-making-some-noise-part-3.html"><a href="http://www.kaourantin.net/2008/05/what-does-gpu-acceleration-mean.html">explains what GPU acceleration means</a></a></li>
<li><a href="http://justin.everett-church.com/index.php/2008/05/16/rtmfp-in-flash-player-10-beta/">RTMFP in Flash Player 10 beta</a></li>
<li><a href="http://www.bit-101.com/blog/?p=1264">Astro Dynamic Sound</a><a href="http://www.bit-101.com/blog/?p=1264"><br />
</a></li>
<li><a href="http://www.senocular.com/flash/tutorials/flash10drawingapi/">Flash Player 10 Drawing API</a></li>
<li><a href="http://www.flashcomguru.com/index.cfm/2008/5/15/player-10-beta-speex-p2p-rtmfp">Peer to peer, Speex and UDP</a></li>
<li><a href="http://www.blixtsystems.com/2008/05/random-thoughts-on-vectors-and-samplescallbackdata/">Random Thoughts on Vectors and samplesCallbackData</a></li>
</ul>
<p>Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://soenkerohde.com/2008/05/flash-player-10-links/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flash Player 10 beta on Adobe Labs</title>
		<link>http://soenkerohde.com/2008/05/flash-player-10-beta-on-adobe-labs/</link>
		<comments>http://soenkerohde.com/2008/05/flash-player-10-beta-on-adobe-labs/#comments</comments>
		<pubDate>Thu, 15 May 2008 08:50:45 +0000</pubDate>
		<dc:creator>Sönke</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://soenkerohde.com/?p=198</guid>
		<description><![CDATA[<p>The first public beta of the Flash Player 10 code-named &#8220;Astro&#8221; is on Adobe Labs. Be sure to check out Pixel Bender (formerly known as Hydra) to create custom filters and effects. When you have installed the beta visit the demo site to get some impressions.</p>
<p>Ryan Stewart and InsideRIA posted nice summaries [...]]]></description>
			<content:encoded><![CDATA[<p>The first public beta of the Flash Player 10 code-named &#8220;Astro&#8221; is on <a href="http://labs.adobe.com/technologies/flashplayer10/">Adobe Labs</a>. Be sure to check out <a href="http://www.adobe.com/go/pixelbender">Pixel Bender</a> (formerly known as Hydra) to create custom filters and effects. When you have <a href="http://labs.adobe.com/downloads/flashplayer10.html">installed</a> the beta visit the <a href="http://labs.adobe.com/technologies/flashplayer10/demos/index.html">demo site</a> to get some impressions.</p>
<p><a href="http://blog.digitalbackcountry.com/?p=1424">Ryan Stewart</a> and <a href="http://www.insideria.com/2008/05/flash-player-10.html">InsideRIA</a> posted nice summaries so far.</p>
]]></content:encoded>
			<wfw:commentRss>http://soenkerohde.com/2008/05/flash-player-10-beta-on-adobe-labs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adobe Open Screen Project</title>
		<link>http://soenkerohde.com/2008/05/adobe-open-screen-project/</link>
		<comments>http://soenkerohde.com/2008/05/adobe-open-screen-project/#comments</comments>
		<pubDate>Thu, 01 May 2008 22:40:34 +0000</pubDate>
		<dc:creator>Sönke</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Adobe]]></category>

		<guid isPermaLink="false">http://soenkerohde.com/?p=183</guid>
		<description><![CDATA[<p>Adobe and Industry Leaders Establish Open Screen Project. Have a look at the new OSP website and listen to CTO Kevin Lynch.</p>
<p>&#8220;The Open Screen Project is dedicated to driving consistent rich Internet experiences across televisions, personal computers, mobile devices, and consumer electronics. The Open Screen Project is supported by technology leaders, including Adobe, ARM, Chunghwa Telecom, Cisco, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.adobe.com/aboutadobe/pressroom/pressreleases/200804/050108AdobeOSP.html">Adobe and Industry Leaders Establish Open Screen Project</a>. Have a look at the new <a href="http://www.adobe.com/openscreenproject/">OSP website</a> and listen to <a href="http://www.adobe.com/openscreenproject/developers/">CTO Kevin Lynch</a>.</p>
<blockquote><p><em>&#8220;The Open Screen Project is dedicated to driving consistent rich Internet experiences across televisions, personal computers, mobile devices, and consumer electronics. The Open Screen Project is supported by technology leaders, including Adobe, ARM, Chunghwa Telecom, Cisco, Intel, LG Electronics Inc., Marvell, Motorola, Nokia, NTT DoCoMo, Qualcomm, Samsung Electronics Co., Sony Ericsson, Toshiba and Verizon Wireless, and leading content providers, including BBC, MTV Networks, and NBC Universal, who want to deliver rich Web and video experiences, live and on-demand across a variety of devices.&#8221;</em></p></blockquote>
<p>Since today the formats <a href="http://www.adobe.com/devnet/swf/">SWF 9</a>, <a href="http://www.adobe.com/devnet/flv/">FLV</a> and <a href="http://opensource.adobe.com/wiki/display/blazeds/Developer+Documentation">AMF Specs</a> are open and free from license restrictions.</p>
<p>It is all about leveraging Flash and AIR to provide a consistent runtime environment cross-platform and across devices and consumer electronics.</p>
<p>Now is this cool news? I am sure all Flash/Flex/AIR developers open up a beer! I will do now <img src='http://soenkerohde.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Some more links:</p>
<ul>
<li><a href="http://blog.digitalbackcountry.com/?p=1404">Ryan Stewart</a></li>
<li><a href="http://www.mikechambers.com/blog/2008/05/01/adobe-drops-restrictions-on-swf-flv-formats/">Mike Chambers</a></li>
<li><a href="http://www.onflex.org/ted/2008/05/screens-gone-wild.php">Ted Patrick</a></li>
<li><a href="http://www.techcrunch.com/2008/04/30/adobes-open-screen-project-write-once-flash-everywhere/">TechCrunch</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://soenkerohde.com/2008/05/adobe-open-screen-project/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Hobnox Audiotool now open</title>
		<link>http://soenkerohde.com/2008/04/hobnox-audiotool-now-open/</link>
		<comments>http://soenkerohde.com/2008/04/hobnox-audiotool-now-open/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 08:38:19 +0000</pubDate>
		<dc:creator>Sönke</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://soenkerohde.com/2008/04/01/hobnox-audiotool-now-open/</guid>
		<description><![CDATA[<p>Andé Michelle anounced that you can now try out the Hobnox Audiotool withouth a beta invitation or registration.</p>
<p>&#8220;Here it is, it’ll supply you with an emulator of some famous little machines, used by DJs, producers and bands all over the planet. Right now, we can equip you with a rebuilt Roland TR-808, TR-909, TB-303 and some [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.andre-michelle.com/">Andé Michelle</a> <a href="http://blog.andre-michelle.com/2008/hobnox-audiotool/">anounced</a> that you can now try out the <a href="http://www.hobnox.com/audiotool-startpage.1046.html">Hobnox Audiotool</a> withouth a beta invitation or registration.</p>
<blockquote><p><em>&#8220;Here it is, it’ll supply you with an emulator of some famous little machines, used by DJs, producers and bands all over the planet. Right now, we can equip you with a rebuilt Roland TR-808, TR-909, TB-303 and some floorboards. Interested? Give it a try!&#8221;</em></p></blockquote>
<p>I tried it out during the beta and really liked the app which works very intuitively as you can simple link the boards and effects by drag-n-drop the cable between them.</p>
<p><img title="Hobnox Audiotool" alt="Hobnox Audiotool" src="/img/hobnox.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://soenkerohde.com/2008/04/hobnox-audiotool-now-open/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Yahoo rejects Microsoft offer and comes up with new Flash/Flex Stuff</title>
		<link>http://soenkerohde.com/2008/02/yahoo-rejects-microsoft-offer-and-comes-up-with-new-flashflex-stuff/</link>
		<comments>http://soenkerohde.com/2008/02/yahoo-rejects-microsoft-offer-and-comes-up-with-new-flashflex-stuff/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 08:57:42 +0000</pubDate>
		<dc:creator>Sönke</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://soenkerohde.com/2008/02/14/yahoo-rejects-microsoft-offer-and-comes-up-with-new-flashflex-stuff/</guid>
		<description><![CDATA[<p>You must have heard that Yahoo rejects the Microsoft offer due to undervalue and Microsoft renews bit.</p>
<p>Besides that Yahoo released nice things this week: The first was the long expected Yahoo! Maps AS3 Components and second a very nice 3D Flex appliation called Yahoo! NewsGlobe (btw: I like camelcase brands).</p>
<p>It&#8217;s nice to see Yahoo&#8217;s involvement in [...]]]></description>
			<content:encoded><![CDATA[<p>You must have heard that <a href="http://news.yahoo.com/s/afp/20080212/bs_afp/usitcompanytakeovermicrosoftyahooreject_080212050933">Yahoo rejects the Microsoft offer due to undervalue and Microsoft renews bit</a>.</p>
<p>Besides that Yahoo released nice things this week: The first was the long expected <a href="http://developer.yahoo.com/flash/maps/">Yahoo! Maps AS3 Components</a> and second a very nice 3D Flex appliation called <a href="http://next.yahoo.net/download/newsglobe/index.html">Yahoo! NewsGlobe</a> (btw: I like camelcase brands).</p>
<p>It&#8217;s nice to see Yahoo&#8217;s involvement in the Flash Platform. Check more on there <a href="http://developer.yahoo.com/flash/">Flash Developer Center</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://soenkerohde.com/2008/02/yahoo-rejects-microsoft-offer-and-comes-up-with-new-flashflex-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

