<?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"
	>

<channel>
	<title>Markus Raab - All I don't know.</title>
	<atom:link href="http://blog.derraab.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.derraab.com</link>
	<description>Information Accumulation.</description>
	<pubDate>Wed, 18 Jun 2008 11:44:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Select and access local SWF files within an AIR application</title>
		<link>http://blog.derraab.com/2008/06/17/select-and-access-local-swf-files-within-an-air-application/</link>
		<comments>http://blog.derraab.com/2008/06/17/select-and-access-local-swf-files-within-an-air-application/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 15:44:32 +0000</pubDate>
		<dc:creator>derRaab</dc:creator>
		
		<category><![CDATA[AIR]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://blog.derraab.com/?p=36</guid>
		<description><![CDATA[Well, it took me a little time to figure out how to select and load a local SWF file into an SWFLoader instance. Several times I got this error message:
“SecurityError: Error #3015: Loader.loadBytes() is not permitted to load content with executable code.”
After some research I found this "dreaming in flash" blog entry which basically contains [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it took me a little time to figure out how to select and load a local SWF file into an SWFLoader instance. Several times I got this error message:</p>
<p>“SecurityError: Error #3015: Loader.loadBytes() is not permitted to load content with executable code.”</p>
<p>After some research I found <a href="http://www.dreaminginflash.com/2008/05/14/“securityerror-error-3015-loaderloadbytes-is-not-permitted-to-load-content-with-executable-code/">this "dreaming in flash" blog entry</a> which basically contains the solution I was looking for.</p>
<p>But then it took me a little more time to figure out how to use this with the SWFLoader. So here is a basic code example:</p>
<div class="igBar"><span id="lactionscript-2"><a href="#" onclick="javascript:showPlainTxt('actionscript-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-2">
<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;"><span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">display</span>.<span style="color: #006600;">Loader</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">filesystem</span>.<span style="color: #006600;">File</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;"><span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">filesystem</span>.<span style="color: #006600;">FileMode</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">filesystem</span>.<span style="color: #006600;">FileStream</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;"><span style="color: #0066CC;">import</span> flash.<span style="color: #0066CC;">system</span>.<span style="color: #006600;">LoaderContext</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">utils</span>.<span style="color: #006600;">ByteArray</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;"><span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">controls</span>.<span style="color: #006600;">SWFLoader</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&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;"><span style="color: #808080; font-style: italic;">// File reference</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">var</span> swfFile: File;</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;"><span style="color: #808080; font-style: italic;">// Open the SWF file</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;"><span style="color: #000000; font-weight: bold;">var</span> fileStream: FileStream = <span style="color: #000000; font-weight: bold;">new</span> FileStream<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; fileStream.<span style="color: #006600;">open</span><span style="color: #66cc66;">&#40;</span> swfFile, FileMode.<span style="color: #006600;">READ</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;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080; font-style: italic;">// Read SWF bytes into byte array and close file</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;"><span style="color: #000000; font-weight: bold;">var</span> swfBytes: ByteArray = <span style="color: #000000; font-weight: bold;">new</span> ByteArray<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; fileStream.<span style="color: #006600;">readBytes</span><span style="color: #66cc66;">&#40;</span> swfBytes <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; fileStream.<span style="color: #0066CC;">close</span><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;</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;"><span style="color: #808080; font-style: italic;">// Prepare the loader context to avoid security error</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">var</span> loaderContext: LoaderContext = <span style="color: #000000; font-weight: bold;">new</span> LoaderContext<span style="color: #66cc66;">&#40;</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; loaderContext.<span style="color: #006600;">allowLoadBytesCodeExecution</span> = <span style="color: #000000; font-weight: bold;">true</span>; <span style="color: #808080; font-style: italic;">// that's it!</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&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;"><span style="color: #808080; font-style: italic;">// Now you could use this with a Loader instance</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">var</span> loader: Loader = <span style="color: #000000; font-weight: bold;">new</span> Loader<span style="color: #66cc66;">&#40;</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; loader.<span style="color: #006600;">loadBytes</span><span style="color: #66cc66;">&#40;</span> swfBytes, loaderContext <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; </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;"><span style="color: #808080; font-style: italic;">// Or you could use this with a SWFLoader instance</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">var</span> swfLoader: SWFLoader = <span style="color: #000000; font-weight: bold;">new</span> SWFLoader<span style="color: #66cc66;">&#40;</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; swfLoader.<span style="color: #006600;">loaderContext</span> = loaderContext;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; swfLoader.<span style="color: #006600;">source</span> = swfBytes; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.derraab.com/2008/06/17/select-and-access-local-swf-files-within-an-air-application/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Grant Skinners 50 reasons why AS 3 kicks ass</title>
		<link>http://blog.derraab.com/2008/05/31/grant-skinners-50-reasons-why-as-3-kicks-ass/</link>
		<comments>http://blog.derraab.com/2008/05/31/grant-skinners-50-reasons-why-as-3-kicks-ass/#comments</comments>
		<pubDate>Sat, 31 May 2008 12:21:41 +0000</pubDate>
		<dc:creator>derRaab</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flash Player]]></category>

		<category><![CDATA[Flash in Browser]]></category>

		<guid isPermaLink="false">http://blog.derraab.com/?p=35</guid>
		<description><![CDATA[I found great slides on Grant Skinners blog. They give a quick introduction in AS 3 and it's core benefits!
50 reasons why AS 3 kicks ass (Grant Skinner)
Also a must read for developers!
Update: And he also added more slides from a workshop here
]]></description>
			<content:encoded><![CDATA[<p>I found great slides on Grant Skinners blog. They give a quick introduction in AS 3 and it's core benefits!</p>
<p><a href="http://gskinner.com/talks/50reasonsAS3/">50 reasons why AS 3 kicks ass (Grant Skinner)</a></p>
<p>Also a must read for developers!</p>
<p>Update: And he also added more slides from a workshop <a href="http://gskinner.com/talks/as3workshop/">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.derraab.com/2008/05/31/grant-skinners-50-reasons-why-as-3-kicks-ass/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Microsoft Word error during HTML import</title>
		<link>http://blog.derraab.com/2008/05/29/microsoft-word-error-during-html-import/</link>
		<comments>http://blog.derraab.com/2008/05/29/microsoft-word-error-during-html-import/#comments</comments>
		<pubDate>Thu, 29 May 2008 09:52:25 +0000</pubDate>
		<dc:creator>derRaab</dc:creator>
		
		<category><![CDATA[Microsoft Office]]></category>

		<category><![CDATA[Word]]></category>

		<guid isPermaLink="false">http://blog.derraab.com/?p=34</guid>
		<description><![CDATA[Since I have to use Microsoft Word 2008 for Mac I figured out some issue: During opening a clean XHTML file with external CSS declarations Word can find these CSS files only in the same directory. I tried serveral ways to declare the href tag, but only the last one works...
PLAIN TEXT
HTML:




&#60;link href="../style.css" rel="stylesheet" type="text/css" [...]]]></description>
			<content:encoded><![CDATA[<p>Since I have to use Microsoft Word 2008 for Mac I figured out some issue: During opening a clean XHTML file with external CSS declarations Word can find these CSS files only in the same directory. I tried serveral ways to declare the href tag, but only the last one works...</p>
<div class="igBar"><span id="lhtml-4"><a href="#" onclick="javascript:showPlainTxt('html-4'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-4">
<div class="html">
<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: #009900;"><a href="http://december.com/html/4/element/link.html"><span style="color: #000000; font-weight: bold;">&lt;link</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"../style.css"</span> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">"stylesheet"</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">"text/css"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/link.html"><span style="color: #000000; font-weight: bold;">&lt;link</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"./../style.css"</span> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">"stylesheet"</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">"text/css"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></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;"><span style="color: #009900;"><a href="http://december.com/html/4/element/link.html"><span style="color: #000000; font-weight: bold;">&lt;link</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"..\style.css"</span> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">"stylesheet"</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">"text/css"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/link.html"><span style="color: #000000; font-weight: bold;">&lt;link</span></a> <span style="color: #000066;">href</span>=<span style="color: #ff0000;">"style.css"</span> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">"stylesheet"</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">"text/css"</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Maybe there is a solution? I can't figure it out.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.derraab.com/2008/05/29/microsoft-word-error-during-html-import/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe Flash Player 9 Security Changes</title>
		<link>http://blog.derraab.com/2008/05/10/adobe-flash-player-9-security-changes/</link>
		<comments>http://blog.derraab.com/2008/05/10/adobe-flash-player-9-security-changes/#comments</comments>
		<pubDate>Sat, 10 May 2008 19:38:07 +0000</pubDate>
		<dc:creator>derRaab</dc:creator>
		
		<category><![CDATA[Flash Player]]></category>

		<guid isPermaLink="false">http://blog.derraab.com/2008/05/10/adobe-flash-player-9-security-changes/</guid>
		<description><![CDATA[As a developer you should definitely have a look at this paper
]]></description>
			<content:encoded><![CDATA[<p>As a developer you should definitely have a look at <a href="http://www.adobe.com/devnet/flashplayer/articles/flash_player9_security_update.html">this paper</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.derraab.com/2008/05/10/adobe-flash-player-9-security-changes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flash Player GarbageCollection Problem</title>
		<link>http://blog.derraab.com/2008/04/23/flash-player-garbagecollection-problem/</link>
		<comments>http://blog.derraab.com/2008/04/23/flash-player-garbagecollection-problem/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 11:17:24 +0000</pubDate>
		<dc:creator>derRaab</dc:creator>
		
		<category><![CDATA[Flash Player]]></category>

		<guid isPermaLink="false">http://blog.derraab.com/2008/04/23/flash-player-garbagecollection-problem/</guid>
		<description><![CDATA[Grant Skinners post about the (for me) unknown problem with the Flash Player GarbageCollection is definitely a must read!
One of my projects also has problems with external loaded contents wasting memory.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gskinner.com/blog/archives/2008/04/failure_to_unlo.html">Grant Skinners post</a> about the (for me) unknown problem with the Flash Player GarbageCollection is definitely a must read!</p>
<p>One of my projects also has problems with external loaded contents wasting memory.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.derraab.com/2008/04/23/flash-player-garbagecollection-problem/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe technology platform RIA guide</title>
		<link>http://blog.derraab.com/2008/03/20/adobe-technology-platform-ria-guide/</link>
		<comments>http://blog.derraab.com/2008/03/20/adobe-technology-platform-ria-guide/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 21:59:15 +0000</pubDate>
		<dc:creator>derRaab</dc:creator>
		
		<category><![CDATA[AIR]]></category>

		<category><![CDATA[Documentations]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Librarys]]></category>

		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://blog.derraab.com/2008/03/20/adobe-technology-platform-ria-guide/</guid>
		<description><![CDATA[This is simply the link list contained in the recently released Adobe technology platform ActionScript Reference PDF.
API References 

Adobe ActionScript 3 Language Reference
Adobe AIR JavaScript Language Reference

Documentation 

Flex 3 Documentation
Adobe AIR Documentation

Developer Centers 

Adobe Developer Center
Adobe AIR Developer Center
Flex Developer Center 
Flash Player Developer Center

Downloads 

Flex SDK 
Flex Builder 3 
Adobe AIR 

Miscellaneous Resources 

Adobe [...]]]></description>
			<content:encoded><![CDATA[<p>This is simply the link list contained in the recently released <a href="http://www.adobe.com/devnet/actionscript/articles/atp_ria_guide/atp_ria_guide.pdf">Adobe technology platform ActionScript Reference PDF</a>.</p>
<p>API References </p>
<ul>
<li><a href="http://www.adobe.com/go/flex3_apiref">Adobe ActionScript 3 Language Reference</a></li>
<li><a href="http://www.adobe.com/go/learn_air_html_jslr">Adobe AIR JavaScript Language Reference</a></li>
</ul>
<p>Documentation </p>
<ul>
<li><a href="http://www.adobe.com/go/flex_documentation">Flex 3 Documentation</a></li>
<li><a href="http://www.adobe.com/go/airdocs">Adobe AIR Documentation</a></li>
</ul>
<p>Developer Centers </p>
<ul>
<li><a href="http://www.adobe.com/devnet">Adobe Developer Center</a></li>
<li><a href="http://www.adobe.com/go/airdevcenter">Adobe AIR Developer Center</a></li>
<li><a href="http://www.adobe.com/go/flex_devcenter">Flex Developer Center </a></li>
<li><a href="http://www.adobe.com/go/flashplayerdevcenter">Flash Player Developer Center</a></li>
</ul>
<p>Downloads </p>
<ul>
<li><a href="http://www.adobe.com/go/flex3_sdk">Flex SDK </a></li>
<li><a href="http://www.adobe.com/go/flex_trial">Flex Builder 3 </a></li>
<li><a href="http://www.adobe.com/go/getair">Adobe AIR </a></li>
</ul>
<p>Miscellaneous Resources </p>
<ul>
<li><a href="http://bugs.adobe.com/flex/">Adobe Flex Public Bugbase</a></li>
<li><a href="http://www.flex.org">Flex.org</a></li>
<li><a href="http://www.adobe.com/go/flex3_quick_start_tutorials">Flex Quick Start Tutorials </a></li>
<li><a href="http://www.adobe.com/go/labs">Adobe Labs</a></li>
<li><a href="http://www.adobe.com/go/opensourceflex">Open Source Flex</a></li>
</ul>
<p>Mailing Lists </p>
<ul>
<li><a href="http://www.adobe.com/go/flexcoders">Flex Coders</a></li>
<li><a href="http://tech.groups.yahoo.com/group/apollocoders/">Apollo Coders (Adobe AIR)</a></li>
</ul>
<p>Forums </p>
<ul>
<li><a href="http://www.adobe.com/go/flex_forums">Flex</a></li>
<li><a href="http://www.adobe.com/go/airforums">Adobe AIR</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.derraab.com/2008/03/20/adobe-technology-platform-ria-guide/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe should make some noise</title>
		<link>http://blog.derraab.com/2008/03/20/adobe-should-make-some-noise/</link>
		<comments>http://blog.derraab.com/2008/03/20/adobe-should-make-some-noise/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 21:10:29 +0000</pubDate>
		<dc:creator>derRaab</dc:creator>
		
		<category><![CDATA[Audio]]></category>

		<category><![CDATA[Flash Player]]></category>

		<guid isPermaLink="false">http://blog.derraab.com/2008/03/20/adobe-should-make-some-noise/</guid>
		<description><![CDATA[I really love the work of André Michelle and Joa Ebert, especially if it's about some cool audio stuff! But the Flash Player doesn't provide enhanced audio support, actually it seems to get worse.
So we all should support the Adobe, MAKE SOME NOISE campain!
]]></description>
			<content:encoded><![CDATA[<p>I really love the work of <a href="http://blog.andre-michelle.com/">André Michelle</a> and <a href="http://blog.je2050.de/">Joa Ebert</a>, especially if it's about some cool audio stuff! But the Flash Player doesn't provide enhanced audio support, actually it seems to get worse.</p>
<p>So we all should support the <a href="http://www.adobemakesomenoise.com/">Adobe, MAKE SOME NOISE</a> campain!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.derraab.com/2008/03/20/adobe-should-make-some-noise/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Write with AIR applications to the application resource directory</title>
		<link>http://blog.derraab.com/2008/03/12/write-with-air-applications-to-the-application-resource-directory/</link>
		<comments>http://blog.derraab.com/2008/03/12/write-with-air-applications-to-the-application-resource-directory/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 22:24:17 +0000</pubDate>
		<dc:creator>derRaab</dc:creator>
		
		<category><![CDATA[AIR]]></category>

		<guid isPermaLink="false">http://blog.derraab.com/2008/03/12/write-with-air-applications-to-the-application-resource-directory/</guid>
		<description><![CDATA[AIR applications are not permitted to write to the application resource directory. This seems to be a security feature and makes sense, because some systems would not allow to write into this directory at system level.
But for testing purposes you might hack this by using a single line of code:
PLAIN TEXT
Actionscript:




// Writing into that file [...]]]></description>
			<content:encoded><![CDATA[<p>AIR applications are not permitted to write to the application resource directory. This seems to be a security feature and makes sense, because some systems would not allow to write into this directory at system level.</p>
<p>But for testing purposes you might hack this by using a single line of code:</p>
<div class="igBar"><span id="lactionscript-6"><a href="#" onclick="javascript:showPlainTxt('actionscript-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Actionscript:</span>
<div id="actionscript-6">
<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;"><span style="color: #808080; font-style: italic;">// Writing into that file would fail</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000000; font-weight: bold;">var</span> yourFileInAppDir: File = File.<span style="color: #006600;">applicationDirectory</span>.<span style="color: #006600;">resolvePath</span><span style="color: #66cc66;">&#40;</span> <span style="color: #ff0000;">"yourFile.xml"</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;"><span style="color: #808080; font-style: italic;">// This is the simple hack:</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">yourFileInAppDir = <span style="color: #000000; font-weight: bold;">new</span> File<span style="color: #66cc66;">&#40;</span> yourFileInAppDir.<span style="color: #006600;">nativePath</span> <span style="color: #66cc66;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>But this only avoids a AIR security error! You must be sure to have write access to the directory!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.derraab.com/2008/03/12/write-with-air-applications-to-the-application-resource-directory/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Are you Singularity?</title>
		<link>http://blog.derraab.com/2008/02/08/are-you-singularity/</link>
		<comments>http://blog.derraab.com/2008/02/08/are-you-singularity/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 13:26:22 +0000</pubDate>
		<dc:creator>derRaab</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://blog.derraab.com/2008/02/08/are-you-singularity/</guid>
		<description><![CDATA[Find out:

]]></description>
			<content:encoded><![CDATA[<p>Find out:</p>
<p><a href="http://singularity08.com"><img src="http://singularity08.com/images/buttons/button_468x60.gif" width="468" height="60" alt="Singularity?" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.derraab.com/2008/02/08/are-you-singularity/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe Creative Suite is calling mummy</title>
		<link>http://blog.derraab.com/2008/01/04/adobe-creative-suite-is-calling-mummy/</link>
		<comments>http://blog.derraab.com/2008/01/04/adobe-creative-suite-is-calling-mummy/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 13:18:51 +0000</pubDate>
		<dc:creator>derRaab</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.derraab.com/2008/01/04/adobe-creative-suite-is-calling-mummy/</guid>
		<description><![CDATA[Just a quick note: http://www.heise.de/newsticker/meldung/101258
Adobe products are calling 2O7.net (192.168.112.2O7.net) and send statistics. Visit 2O7.net to disable this.
]]></description>
			<content:encoded><![CDATA[<p>Just a quick note: http://www.heise.de/newsticker/meldung/101258</p>
<p>Adobe products are calling 2O7.net (192.168.112.2O7.net) and send statistics. Visit <a HREF="http://www.2O7.net">2O7.net</a> to disable this.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.derraab.com/2008/01/04/adobe-creative-suite-is-calling-mummy/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
