<?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>Rafael Beck</title>
	<atom:link href="http://www.rafaelbeck.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rafaelbeck.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 27 Aug 2010 10:43:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>RESTFulX &#8211; «Flex on Rails»</title>
		<link>http://www.rafaelbeck.com/blog/2010/03/17/restfulx/</link>
		<comments>http://www.rafaelbeck.com/blog/2010/03/17/restfulx/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 22:27:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Presentations]]></category>

		<guid isPermaLink="false">http://www.rafaelbeck.com/blog/2010/03/17/restfulx/</guid>
		<description><![CDATA[Die Slides meiner Präsentation über das RESTFulX Framework am SFUG-Meeting vom 16.03.2010. PDF der Präsentation // Ressourcen/Support Projektsite Usergroup AS3-API Riadrom (Professional Support) Ruby-Hoster Webbynode Engineyard Heroku Railshoster Mediatemple]]></description>
			<content:encoded><![CDATA[<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding: 0px;">Die Slides meiner Präsentation über das RESTFulX Framework am <a href="http://www.sfug.ch" target="_blank"> SFUG-Meeting</a> vom 16.03.2010.</p>
<p><a href="http://www.rafaelbeck.com/blog/wp-content/uploads/2010/03/Restfulx-Praesentation.pdf">PDF der Präsentation</a></p>
<div id="restfulx_presentation"></div>
<p><script type="text/javascript">// <![CDATA[
var params = {
  allowScriptAccess: 'always',
  allowFullScreen: 'true',
  wmode:'transparent',
  flashvars: 'd=0Ui-5kRTBpNJM1-A63WzfQ'
};
swfobject.embedSWF('https://share.acrobat.com/adc/flex/mpt.swf', 'restfulx_presentation', '467', '420', '6,0,40,0', '', false, params, false);
// ]]&gt;</script></p>
<p><strong>Ressourcen/Support</strong><br />
<a href="http://restfulx.github.com" target="_blank">Projektsite</a><br />
<a href="http://groups.google.com/group/restfulx-framework/" target="_blank">Usergroup</a><br />
<a href="http://dima.github.com/restfulx_framework/" target="_blank">AS3-API</a><br />
<a href="http://www.riadrom.com" target="_blank">Riadrom (Professional Support)</a></p>
<p><strong>Ruby-Hoster</strong><br />
<a href="http://www.webbynode.com" target="_blank">Webbynode</a><br />
<a href="http://www.engineyard.com" target="_blank">Engineyard</a><br />
<a href="http://www.heroku.com" target="_blank">Heroku</a><br />
<a href="http://www.railshoster.de" target="_blank">Railshoster</a><br />
<a href="http://mediatemple.net" target="_blank">Mediatemple</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rafaelbeck.com/blog/2010/03/17/restfulx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Regular expressions for input restriction in AS3</title>
		<link>http://www.rafaelbeck.com/blog/2009/08/22/regular-expressions-for-input-restriction/</link>
		<comments>http://www.rafaelbeck.com/blog/2009/08/22/regular-expressions-for-input-restriction/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 08:36:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://www.rafaelbeck.com/blog/?p=128</guid>
		<description><![CDATA[Regular expressions is one of the useful things that Adobe has integrated in Actionscript 3. Regular expressions simplifies the way you do the validation of email, date, url ... Nonetheless if you want to use regular expressions in Actionscript 3 to restrict the input in a textfield, you will notice a difference in the syntax [...]]]></description>
			<content:encoded><![CDATA[<p>Regular expressions is one of the useful things that Adobe has integrated in Actionscript 3. Regular expressions simplifies the way you do the validation of email, date, url ...<br />
Nonetheless if you want to use regular expressions in Actionscript 3 to restrict the input in a textfield, you will notice a difference in the syntax for Adobe has come up with an own one, similar to regular expressions.<br />
The solution therefore is to implement an interception of characters typed before they are displayed. Then you can start using regular expressions.</p>
<p><strong>Reference</strong><br />
<a href="http://www.adobe.com/go/AS3_regex_overview" target="_blank">http://www.adobe.com/go/AS3_regex_overview</a></p>
<p><strong>Function</strong></p>
<pre>function restrictInput( input:String, pattern:RegExp ):String
{
	var result:Object = pattern.exec( input );
	var newInput:String = "";

	for ( var i:int = 0; i &lt; input.length; i++ )
	{
		var char:String = input.charAt( i );
		if ( pattern.test( char ) )
		{
			newInput += char;
		}
	}
	return newInput;
}</pre>
<p><strong>Usage</strong></p>
<pre>restrictInput( input, /([A-Z a-z 0-9 \t\r\n\v\f, ?!])/ );</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.rafaelbeck.com/blog/2009/08/22/regular-expressions-for-input-restriction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash at the Lake</title>
		<link>http://www.rafaelbeck.com/blog/2009/06/28/flash-at-the-lake/</link>
		<comments>http://www.rafaelbeck.com/blog/2009/06/28/flash-at-the-lake/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 09:32:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Presentations]]></category>

		<guid isPermaLink="false">http://www.rafaelbeck.com/blog/?p=80</guid>
		<description><![CDATA[An der ersten Flash at the Lake Konferenz in Zürich präsentierte ich meine «Augmented Reality AR» Session. PDF der Präsentation //]]></description>
			<content:encoded><![CDATA[<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding: 0px;">An der ersten <a href="http://www.fatl.ch" target="_blank">Flash at the Lake</a> Konferenz in Zürich präsentierte ich meine «Augmented Reality AR» Session.</p>
<p><a href="http://www.rafaelbeck.com/blog/wp-content/uploads/2009/07/FATL-Praesentation.pdf">PDF der Präsentation</a></p>
<div id="fatl_presentation"></div>
<p><script type="text/javascript">// <![CDATA[
var params = {
  allowScriptAccess: 'always',
  allowFullScreen: 'true',
  wmode:'transparent',
  flashvars: 'ext=pdf&docId=3b820966-7d25-433d-bac6-aae71740d1cf&lang=en_US'
};
swfobject.embedSWF('https://share.acrobat.com/adc/flex/mpt.swf', 'fatl_presentation', '467', '420', '6,0,40,0', '', false, params, false);
// ]]&gt;</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rafaelbeck.com/blog/2009/06/28/flash-at-the-lake/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online-Game: Die Klinik</title>
		<link>http://www.rafaelbeck.com/blog/2004/08/31/game-die-klinik/</link>
		<comments>http://www.rafaelbeck.com/blog/2004/08/31/game-die-klinik/#comments</comments>
		<pubDate>Tue, 31 Aug 2004 10:00:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.rafaelbeck.com/blog/?p=357</guid>
		<description><![CDATA[Play the Game]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.remyburger.com/atalier/games/dieklinik/" target="_blank">Play the Game</a></p>
<p><a href="http://www.remyburger.com/atalier/games/dieklinik/" target="_blank"><img class="alignnone size-full wp-image-380" title="dieklinik01" src="http://www.rafaelbeck.com/blog/wp-content/uploads/2010/08/dieklinik01.png" alt="" width="467" height="420" /></a></p>
<p><a href="http://www.rafaelbeck.com/blog/wp-content/uploads/2010/08/dieklinik01.png" rel="lightbox[357]"></a><a href="http://www.remyburger.com/atalier/games/dieklinik/" target="_blank"><img class="alignnone size-full wp-image-381" title="dieklinik02" src="http://www.rafaelbeck.com/blog/wp-content/uploads/2010/08/dieklinik02.png" alt="" width="467" height="420" /></a></p>
<p><a href="http://www.remyburger.com/atalier/games/dieklinik/" target="_blank"><img class="alignnone size-full wp-image-382" title="dieklinik03" src="http://www.rafaelbeck.com/blog/wp-content/uploads/2010/08/dieklinik03.png" alt="" width="467" height="420" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rafaelbeck.com/blog/2004/08/31/game-die-klinik/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
