<?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>Claudius Albat</title>
	<atom:link href="http://blog.flashability.de/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.flashability.de</link>
	<description>flex development and consulting</description>
	<lastBuildDate>Thu, 14 Jan 2010 10:21:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>AMFPHP &#8211; Errors After PHP 5.3 Upgrade</title>
		<link>http://blog.flashability.de/?p=26</link>
		<comments>http://blog.flashability.de/?p=26#comments</comments>
		<pubDate>Thu, 14 Jan 2010 09:16:34 +0000</pubDate>
		<dc:creator>claudius</dc:creator>
				<category><![CDATA[AMFPHP]]></category>
		<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://blog.flashability.de/?p=26</guid>
		<description><![CDATA[In PHP 5.3 the function eregi_replace() is deprecated, you can replace it with preg_replace().
The function eregi_replace() is used in the file MethodTable.php in line 505 and 507.
In file /amfphp/core/shared/util/MethodTable.php go to line 505 and replace these three lines of code:
505506507$comment = eregi_replace&#40;&#34;\n[ \t]+&#34;, &#34;\n&#34;, trim&#40;$comment&#41;&#41;;
$comment = str_replace&#40;&#34;\n&#34;, &#34;\\n&#34;, trim&#40;$comment&#41;&#41;;
$comment = eregi_replace&#40;&#34;[\t ]+&#34;, &#34; &#34;, trim&#40;$comment&#41;&#41;;
with [...]]]></description>
			<content:encoded><![CDATA[<p>In PHP 5.3 the function eregi_replace() is deprecated, you can replace it with preg_replace().</p>
<p>The function eregi_replace() is used in the file MethodTable.php in line 505 and 507.<br />
In file /amfphp/core/shared/util/MethodTable.php go to line 505 and replace these three lines of code:</p>
<div class="codecolorer-container php default" 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>505<br />506<br />507<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000088;">$comment</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/eregi_replace"><span style="color: #990000;">eregi_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>[ <span style="color: #000099; font-weight: bold;">\t</span>]+&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span> <a href="http://www.php.net/trim"><span style="color: #990000;">trim</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$comment</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$comment</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/str_replace"><span style="color: #990000;">str_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\\</span>n&quot;</span><span style="color: #339933;">,</span> <a href="http://www.php.net/trim"><span style="color: #990000;">trim</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$comment</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$comment</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/eregi_replace"><span style="color: #990000;">eregi_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;[<span style="color: #000099; font-weight: bold;">\t</span> ]+&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot; &quot;</span><span style="color: #339933;">,</span> <a href="http://www.php.net/trim"><span style="color: #990000;">trim</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$comment</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></td></tr></tbody></table></div>
<p>with these lines of code:</p>
<div class="codecolorer-container php default" 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>505<br />506<br />507<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000088;">$comment</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/preg_replace"><span style="color: #990000;">preg_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;'<span style="color: #000099; font-weight: bold;">\n</span>[ <span style="color: #000099; font-weight: bold;">\t</span>]+'U&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span> <a href="http://www.php.net/trim"><span style="color: #990000;">trim</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$comment</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$comment</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/str_replace"><span style="color: #990000;">str_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\\</span>n&quot;</span><span style="color: #339933;">,</span> <a href="http://www.php.net/trim"><span style="color: #990000;">trim</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$comment</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$comment</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/preg_replace"><span style="color: #990000;">preg_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;'[<span style="color: #000099; font-weight: bold;">\t</span> ]+'U&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot; &quot;</span><span style="color: #339933;">,</span> <a href="http://www.php.net/trim"><span style="color: #990000;">trim</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$comment</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></td></tr></tbody></table></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.flashability.de/?feed=rss2&amp;p=26</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cairngorm Plugin released on Labs</title>
		<link>http://blog.flashability.de/?p=14</link>
		<comments>http://blog.flashability.de/?p=14#comments</comments>
		<pubDate>Wed, 19 Nov 2008 16:25:31 +0000</pubDate>
		<dc:creator>claudius</dc:creator>
				<category><![CDATA[Cairngorm]]></category>

		<guid isPermaLink="false">http://blog.flashability.de/?p=14</guid>
		<description><![CDATA[The Cairngorm Plugin is released on http://opensource.adobe.com/wiki/display/cairngorm/Plugin
You can install it from an Eclipse update site:

Within Eclipse go to Help &#62; Software Updates &#62; Find and Install&#8230;
Choose Search for new features to install and click Next.
Create a New Remote Site&#8230;
Enter a Name (e.g. Cairngorm) and the following URL:  http://download.macromedia.com/pub/opensource/cairngorm/plugin/
Select Europa Discovery Site for references.
Follow the [...]]]></description>
			<content:encoded><![CDATA[<p>The Cairngorm Plugin is released on <a href="http://opensource.adobe.com/wiki/display/cairngorm/Plugin">http://opensource.adobe.com/wiki/display/cairngorm/Plugin</a></p>
<p>You can install it from an Eclipse update site:</p>
<ul>
<li>Within Eclipse go to Help &gt; Software Updates &gt; Find and Install&#8230;</li>
<li>Choose Search for new features to install and click Next.</li>
<li>Create a New Remote Site&#8230;</li>
<li>Enter a Name (e.g. Cairngorm) and the following URL:  <a rel="nofollow" href="http://download.macromedia.com/pub/opensource/cairngorm/plugin/">http://download.macromedia.com/pub/opensource/cairngorm/plugin/</a></li>
<li>Select Europa Discovery Site for references.</li>
<li>Follow the installation wizard.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.flashability.de/?feed=rss2&amp;p=14</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free H.264 Video Converter for Flash Player 9 (moviestar)</title>
		<link>http://blog.flashability.de/?p=12</link>
		<comments>http://blog.flashability.de/?p=12#comments</comments>
		<pubDate>Thu, 03 Apr 2008 14:46:50 +0000</pubDate>
		<dc:creator>claudius</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Add new tag]]></category>

		<guid isPermaLink="false">http://blog.flashability.de/?p=12</guid>
		<description><![CDATA[With the march release of SUPER© the free video converter from eRightSoft now converts videos to H.264 streamable MP4 or MOV. This will support progressive download while playback in Flash Player 9.
Within SUPER© click on the tiny switch &#8220;Other Opts&#8221; and check &#8220;Streamable H.264&#8243;

]]></description>
			<content:encoded><![CDATA[<p>With the march release of SUPER© the free video converter from <a title="rRightSoft" href="http://www.erightsoft.com">eRightSoft</a> now converts videos to H.264 streamable MP4 or MOV. This will support progressive download while playback in Flash Player 9.</p>
<p>Within SUPER© click on the tiny switch &#8220;Other Opts&#8221; and check &#8220;Streamable H.264&#8243;</p>
<p><a href="http://flashability.de/wp-content/uploads/2008/04/progressiveh264videosforflash9.jpg"><img class="alignnone size-medium wp-image-13" title="progressive H.264 videos for flash player 9 moviestar" src="http://flashability.de/wp-content/uploads/2008/04/progressiveh264videosforflash9-300x230.jpg" alt="" width="300" height="230" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flashability.de/?feed=rss2&amp;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex 3 Beta and AIR available on Labs</title>
		<link>http://blog.flashability.de/?p=11</link>
		<comments>http://blog.flashability.de/?p=11#comments</comments>
		<pubDate>Mon, 11 Jun 2007 15:39:39 +0000</pubDate>
		<dc:creator>claudius</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blog.flashability.de/?p=11</guid>
		<description><![CDATA[The new Adobe Flex 3 beta with Adobe Integrated Runtime (AIR) &#8211; formerly code-named Apollo &#8211; support is avalable on Adobe Labs.
]]></description>
			<content:encoded><![CDATA[<p>The new <a title="Adobe Flex 3" target="_blank" href="http://labs.adobe.com/technologies/flex/">Adobe Flex 3</a> beta with <a title="Adobe Integrated Runtime (AIR)" target="_blank" href="http://labs.adobe.com/technologies/air/">Adobe Integrated Runtime (AIR)</a> &#8211; formerly code-named Apollo &#8211; support is avalable on <a title="Adobe Labs" target="_blank" href="http://labs.adobe.com">Adobe Labs</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flashability.de/?feed=rss2&amp;p=11</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LiveCycle Data Services ES 2.5 available</title>
		<link>http://blog.flashability.de/?p=8</link>
		<comments>http://blog.flashability.de/?p=8#comments</comments>
		<pubDate>Tue, 05 Jun 2007 06:42:49 +0000</pubDate>
		<dc:creator>claudius</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blog.flashability.de/?p=8</guid>
		<description><![CDATA[Flex Data Services has been renamed to LiveCycle Data Services 2.5 providing enhanced integration with Adobe LiveCycle server products. Take a look at the new features here:

LiveCycle Data Services ES


LiveCycle Data Services documentation:

LCDS Getting started
LCDS Developerâ€™s Guide
LiveCycle Remoting
LiveCycle ES ActionScript Language Reference
LiveCycle Data Services JavaDoc

]]></description>
			<content:encoded><![CDATA[<p>Flex Data Services has been renamed to LiveCycle Data Services 2.5 providing enhanced integration with <a target="_blank" title="Adobe LiveCycle Enterprise Suite" href="http://www.adobe.com/products/livecycle/">Adobe LiveCycle</a> server products. Take a look at the new features here:</p>
<ul>
<li><a target="_blank" title="Adobe LiveCycle Data Services ES" href="http://www.adobe.com/products/livecycle/dataservices/">LiveCycle Data Services ES<br />
</a></li>
</ul>
<p>LiveCycle Data Services documentation:</p>
<ul>
<li><a target="_blank" title="LCDS Getting started" href="http://livedocs.adobe.com/livecycle/es/sdkHelp/programmer/lcds/getstarted_1.html">LCDS Getting started</a></li>
<li><a target="_blank" title="LCDS Developer's Guide" href="http://livedocs.adobe.com/livecycle/es/sdkHelp/programmer/lcds/Part1_developer_1.html">LCDS Developerâ€™s Guide</a></li>
<li><a target="_blank" title="LiveCycle Remoting" href="http://livedocs.adobe.com/livecycle/es/sdkHelp/programmer/sdkHelp/Invoking_LiveCycle/invokingLCRemoting.2.1.html">LiveCycle Remoting</a></li>
<li><a target="_blank" title="LiveCycle ES ActionScript Language Reference" href="http://livedocs.adobe.com/livecycle/es/sdkHelp/common/langref/index.html">LiveCycle ES ActionScript Language Reference</a></li>
<li><a target="_blank" title="LiveCycle Data Services JavaDoc" href="http://livedocs.adobe.com/livecycle/es/sdkHelp/programmer/lcdsjavadoc">LiveCycle Data Services JavaDoc</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.flashability.de/?feed=rss2&amp;p=8</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Workshop Downloads</title>
		<link>http://blog.flashability.de/?p=4</link>
		<comments>http://blog.flashability.de/?p=4#comments</comments>
		<pubDate>Fri, 01 Jun 2007 13:15:13 +0000</pubDate>
		<dc:creator>claudius</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Trainings]]></category>

		<guid isPermaLink="false">http://blog.flashability.de/?p=4</guid>
		<description><![CDATA[The download is valid for all attendees of the Adobe Flex 2 Advanced Workshops in Brussels (spring 2007) and in Vienna (winter 2006).

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_SecureDownload_973269921"
			class="flashmovie"
			width="380"
			height="270">
	<param name="movie" value="http://blog.flashability.de/swf/f2ca/SecureDownload.swf" />
	<param name="base" value="http://blog.flashability.de/swf/f2ca/" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://blog.flashability.de/swf/f2ca/SecureDownload.swf"
			name="fm_SecureDownload_973269921"
			width="380"
			height="270">
		<param name="base" value="http://blog.flashability.de/swf/f2ca/" />
	<!--<![endif]-->
		

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
]]></description>
			<content:encoded><![CDATA[<p>The download is valid for all attendees of the Adobe Flex 2 Advanced Workshops in Brussels (spring 2007) and in Vienna (winter 2006).</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_SecureDownload_48580742"
			class="flashmovie"
			width="380"
			height="270">
	<param name="movie" value="http://blog.flashability.de/swf/f2ca/SecureDownload.swf" />
	<param name="base" value="http://blog.flashability.de/swf/f2ca/" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://blog.flashability.de/swf/f2ca/SecureDownload.swf"
			name="fm_SecureDownload_48580742"
			width="380"
			height="270">
		<param name="base" value="http://blog.flashability.de/swf/f2ca/" />
	<!--<![endif]-->
		<a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a><br />

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
]]></content:encoded>
			<wfw:commentRss>http://blog.flashability.de/?feed=rss2&amp;p=4</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apollo Password Encoder</title>
		<link>http://blog.flashability.de/?p=3</link>
		<comments>http://blog.flashability.de/?p=3#comments</comments>
		<pubDate>Fri, 01 Jun 2007 12:48:50 +0000</pubDate>
		<dc:creator>claudius</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blog.flashability.de/?p=3</guid>
		<description><![CDATA[The Password Encoder apollo application is based on the cairngorm multilanguage sample from my &#8220;Adobe Flex 2 &#8211; Developing Cairngorm Applications with FDS and Java&#8221; workshop. It uses the crypt classes from the corelib library you can find at RIAForge. Download the Password Encoder AIR-file by clicking the picture below.

]]></description>
			<content:encoded><![CDATA[<p>The Password Encoder apollo application is based on the cairngorm multilanguage sample from my &#8220;Adobe Flex 2 &#8211; Developing Cairngorm Applications with FDS and Java&#8221; workshop. It uses the crypt classes from the <a target="_blank" title="The corelib project consists of several basic utilities for MD5 hashing, JSON serialization, advanced string and date parsing, and more" href="http://code.google.com/p/as3corelib/">corelib</a> library you can find at <a target="_blank" title="RIAForge - ActionScript 3 Libraries" href="http://actionscript3libraries.riaforge.org/">RIAForge</a>. Download the Password Encoder AIR-file by clicking the picture below.</p>
<p><a target="_blank" title="download PasswordEncoder.air" href="http://blog.flashability.de/air/PasswordEncoder.air"><img alt="Download Apollo Password Encoder" title="Download Apollo Password Encoder" src="http://blog.flashability.de/images/PasswordEncoder.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flashability.de/?feed=rss2&amp;p=3</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cairngorm 2.2.1 for Flex 2.0.1 with Hotfix 2</title>
		<link>http://blog.flashability.de/?p=10</link>
		<comments>http://blog.flashability.de/?p=10#comments</comments>
		<pubDate>Fri, 01 Jun 2007 07:20:58 +0000</pubDate>
		<dc:creator>claudius</dc:creator>
				<category><![CDATA[Cairngorm]]></category>

		<guid isPermaLink="false">http://blog.flashability.de/?p=10</guid>
		<description><![CDATA[A beta release of Cairngorm has been put on Alistair McLeod&#8217;s blog and will be moved over onto the Cairngorm page on Adobe Labs once feedback has been received.
]]></description>
			<content:encoded><![CDATA[<p>A beta release of Cairngorm has been put <span class="external">on </span><a class="external" title="http://weblogs.macromedia.com/amcleod/archives/2007/05/new release - c.cfm" rel="nofollow" target="_blank" href="http://weblogs.macromedia.com/amcleod/archives/2007/05/new_release_-_c.cfm">Alistair McLeod&#8217;s blog</a> and will be moved over onto the <a href="http://www.adobe.com/go/cairngorm">Cairngorm page on Adobe Labs</a> once feedback has been received.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flashability.de/?feed=rss2&amp;p=10</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cairngen: Adobe Cairngorm Code Generator</title>
		<link>http://blog.flashability.de/?p=9</link>
		<comments>http://blog.flashability.de/?p=9#comments</comments>
		<pubDate>Thu, 10 May 2007 07:13:56 +0000</pubDate>
		<dc:creator>claudius</dc:creator>
				<category><![CDATA[Cairngorm]]></category>

		<guid isPermaLink="false">http://blog.flashability.de/?p=9</guid>
		<description><![CDATA[Eric Feminella has released a new version of Cairngen.
Cairngen is a one-shot  code generation tool for Adobe Cairngorm.
]]></description>
			<content:encoded><![CDATA[<p><font size="-1">Eric Feminella has released a new version of <a target="_blank" title="Cairngen" href="http://www.ericfeminella.com/blog/cairngen/">Cairngen</a>.</font></p>
<p><font size="-1" /><font size="-1"><a target="_blank" title="Cairngen" href="http://www.ericfeminella.com/blog/cairngen/">Cairngen</a></font><font size="-1"> is a one-shot  code generation tool for Adobe Cairngorm.</font></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flashability.de/?feed=rss2&amp;p=9</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apollo Pocket Guide on Labs</title>
		<link>http://blog.flashability.de/?p=7</link>
		<comments>http://blog.flashability.de/?p=7#comments</comments>
		<pubDate>Mon, 19 Mar 2007 12:10:47 +0000</pubDate>
		<dc:creator>claudius</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blog.flashability.de/?p=7</guid>
		<description><![CDATA[The free &#8220;Apollo for Adobe Flex Developers Pocket Guide&#8221; PDF is available for download here.

]]></description>
			<content:encoded><![CDATA[<p>The free &#8220;Apollo for Adobe Flex Developers Pocket Guide&#8221; PDF is available for download <a target="_blank" title=" Apollo:Books:Apollo for Adobe Flex Developers Pocket Guide" href="http://labs.adobe.com/wiki/index.php/Apollo:Books:Apollo_for_Adobe_Flex_Developers_Pocket_Guide">here</a>.</p>
<p><a title=" Apollo:Books:Apollo for Adobe Flex Developers Pocket Guide" target="_blank" href="http://labs.adobe.com/wiki/index.php/Apollo:Books:Apollo_for_Adobe_Flex_Developers_Pocket_Guide"><img title="Apollo Pocket Guide" alt="Apollo Pocket Guide" src="http://www.flashability.de/images/apollo_pocketguide.gif" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.flashability.de/?feed=rss2&amp;p=7</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

