<?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>Turtlebite&#039;s Blog</title>
	<atom:link href="http://blog.turtlebite.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.turtlebite.com</link>
	<description>Flash CMS Framework, Fleb Framework, Global Navigation and other ActionScript Stuff</description>
	<lastBuildDate>Wed, 04 Aug 2010 09:45:02 +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>Runtime dynamic font loading in AS3</title>
		<link>http://blog.turtlebite.com/runtime-dynamic-font-loading-in-as3/</link>
		<comments>http://blog.turtlebite.com/runtime-dynamic-font-loading-in-as3/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 08:04:44 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Utilities & Tips]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[as3 runtime dynamic font loading]]></category>
		<category><![CDATA[embed fonts]]></category>
		<category><![CDATA[runtime fonts]]></category>

		<guid isPermaLink="false">http://blog.flashcmsframework.com/?p=1031</guid>
		<description><![CDATA[I know this has been a long discussed topic. And I&#8217;m not going to re-invent the wheel. I have been searching for a long time now and have found many ways to dynamically load fonts at runtime in AS3, there are a lot of good solutions out there. But yesterday I found a font manager [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.turtlebite.com/wp-content/uploads/2010/08/as3_flash_runtime_dynamic_font_loading.jpg"></a><a href="http://blog.turtlebite.com/wp-content/uploads/2010/08/as3_flash_runtime_dynamic_font_loading1.jpg"></a><a href="http://blog.turtlebite.com/wp-content/uploads/2010/08/as3_flash_runtime_dynamic_font_loading2.jpg"><img class="alignleft size-full wp-image-1047" title="as3_flash_runtime_dynamic_font_loading" src="http://blog.turtlebite.com/wp-content/uploads/2010/08/as3_flash_runtime_dynamic_font_loading2.jpg" alt="" width="180" height="130" /></a></p>
<p>I know this has been a long discussed topic. And I&#8217;m not going to re-invent the wheel. I have been searching for a long time now and have found many ways to dynamically load fonts at runtime in AS3, there are a lot of good solutions out there. But yesterday I found a font manager class and WOW, that&#8217;s a really smart method. So all I did was wrapping it in another class, to make the handling even easier. <a href="http://www.turtlebite.com/downloads/dynamicfontloader.zip">Here it is.</a></p>
<p><a href="http://www.thetechlabs.com/tutorials/flash/dynamically-loading-fonts-with-fontloader-and-applying-styles-with-css-stylesheet-in-as3/">You should start with this tutorial</a> for the basic font loader manager class by <a href="http://etcs.ru/">etcs.ru</a> (<a href="http://translate.google.com/translate?hl=de&amp;sl=ru&amp;tl=en&amp;u=http://etcs.ru/blog/as3/fontloader_2/">translated</a>). Excerpt: &#8220;What the fontloader does is reading the swf bytecode and extract all fonts from it and registers it to the flash font class.&#8221;</p>
<p>What I did is creating a wrapper class for this, that makes the handling even easier and traces the CSS output file to the output window in the Flash IDE, so you can just copy it and paste in into a new style.css file.</p>
<p>Here is the code to load the fonts and listen to the events:</p>
<pre class="brush: php;">
import net.kaegi.utils.FontManager;
import net.kaegi.events.FontManagerEvent;
var fontManager:FontManager = new FontManager();
fontManager.addEventListener(FontManagerEvent.LOAD_PROGRESS, onFontManagerLoadProgress, false, 0, true);
fontManager.addEventListener(FontManagerEvent.LOAD_COMPLETE, onFontManagerLoadComplete, false, 0, true);
fontManager.addEventListener(FontManagerEvent.LOAD_ERROR, onFontManagerLoadError, false, 0, true);
fontManager.init(&quot;resources/fonts.swf&quot;, &quot;resources/style.css&quot;)

function onFontManagerLoadProgress(event:FontManagerEvent) {
	trace(&quot;FontManager LOAD Progress... &quot;+event.params.type+&quot;: &quot;+event.params.perc+&quot;% (&quot;+event.params.bytesLoaded +&quot;/&quot;+event.params.bytesTotal+&quot;)&quot;);
}
function onFontManagerLoadComplete(event:FontManagerEvent) {
	trace(&quot;FontManager LOAD Complete!&quot;);
	trace(event.params.displayFonts);
	trace(event.params.cssFileOutput);
}
function onFontManagerLoadError(event:FontManagerEvent) {
	trace(&quot;FontManager LOAD Error!&quot;);
	trace(event.params.msg);
}
</pre>
<p>Here is the output of the css trace, ready to use: You can copy and paste it into a new style.css file, then edit it to your needs.</p>
<pre class="brush: css;">
.font1 {
	font-family: &quot;Verdana&quot;;
	font-size: 12;
	color: #000000;
	/*font-weight: normal;*/
	/*font-style: normal;*/
	/*display: inline; /*inline, block, none
	/*leading: 0;
	/*letter-spacing: 0;
	/*margin-left: 0;
	/*margin-right: 0;*/
	/*text-align: left; /*left, center, right, justify*/
	/*text-decoration: none; /*none, underline*/
	/*text-indent: 0;*/
}

.font2 {
	font-family: &quot;Arial Unicode MS&quot;;
	font-size: 12;
	color: #000000;
	font-weight: bold;
	/*font-style: normal;*/
	/*display: inline; /*inline, block, none
	/*leading: 0;
	/*letter-spacing: 0;
	/*margin-left: 0;
	/*margin-right: 0;*/
	/*text-align: left; /*left, center, right, justify*/
	/*text-decoration: none; /*none, underline*/
	/*text-indent: 0;*/
}

.font3 {
	font-family: &quot;Helvetica CY BoldOblique&quot;;
	font-size: 12;
	color: #000000;
	font-weight: bold;
	font-style: italic;
	/*display: inline; /*inline, block, none
	/*leading: 0;
	/*letter-spacing: 0;
	/*margin-left: 0;
	/*margin-right: 0;*/
	/*text-align: left; /*left, center, right, justify*/
	/*text-decoration: none; /*none, underline*/
	/*text-indent: 0;*/
}
</pre>
<p><a href="http://www.turtlebite.com/downloads/dynamicfontloader.zip">Here are all the source files.</a></p>
<p>Some more useful links and resources about this topic:<br />
<a href="http://etcs.ru/pre/FontLoaderDemo/">http://etcs.ru/pre/FontLoaderDemo/</a><br />
<a href="http://www.thetechlabs.com/tutorials/flash/dynamically-loading-fonts-with-fontloader-and-applying-styles-with-css-stylesheet-in-as3/">http://www.thetechlabs.com/tutorials/flash/dynamically-loading-fonts-with-fontloader-and-applying-styles-with-css-stylesheet-in-as3/</a><br />
<a href="http://lab.revoke.ca/2010/02/as3-external-font-loading-class/">http://lab.revoke.ca/2010/02/as3-external-font-loading-class/</a><br />
<a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/StyleSheet.html">http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/StyleSheet.html</a></p>
<p>Even though I don&#8217;t need it in the font loading method described here, while searching the web I found a nice site to get unicode ranges: <a href="http://www.tillschneidereit.de/unicode_range_tool.html">http://www.tillschneidereit.de/unicode_range_tool.html</a> If you are embedding your founds using the EMBED tag you might find it useful.</p>
<p>OK, now back to daily business!</p>
<p>Cheers,<br />
Christian</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.turtlebite.com/runtime-dynamic-font-loading-in-as3/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.turtlebite.com/runtime-dynamic-font-loading-in-as3/&amp;title=Runtime+dynamic+font+loading+in+AS3" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.turtlebite.com/runtime-dynamic-font-loading-in-as3/&amp;title=Runtime+dynamic+font+loading+in+AS3" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.turtlebite.com/runtime-dynamic-font-loading-in-as3/&amp;title=Runtime+dynamic+font+loading+in+AS3&amp;desc=%0D%0A%0D%0AI%20know%20this%20has%20been%20a%20long%20discussed%20topic.%20And%20I%27m%20not%20going%20to%20re-invent%20the%20wheel.%20I%20have%20been%20searching%20for%20a%20long%20time%20now%20and%20have%20found%20many%20ways%20to%20dynamically%20load%20fonts%20at%20runtime%20in%20AS3%2C%20there%20are%20a%20lot%20of%20good%20solutions%20out%20there.%20But%20yesterday%20I%20found%20a%20font%20manager%20class%20and%20WOW%2C%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.turtlebite.com/runtime-dynamic-font-loading-in-as3/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.turtlebite.com/runtime-dynamic-font-loading-in-as3/&amp;bm_description=Runtime+dynamic+font+loading+in+AS3&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.turtlebite.com/runtime-dynamic-font-loading-in-as3/&amp;title=Runtime+dynamic+font+loading+in+AS3" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.turtlebite.com/runtime-dynamic-font-loading-in-as3/&amp;title=Runtime+dynamic+font+loading+in+AS3" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.turtlebite.com/runtime-dynamic-font-loading-in-as3/&amp;title=Runtime+dynamic+font+loading+in+AS3" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.turtlebite.com/runtime-dynamic-font-loading-in-as3/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Runtime+dynamic+font+loading+in+AS3+-+http://b2l.me/afqzjq&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.turtlebite.com/runtime-dynamic-font-loading-in-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Global Navigation v2.14 released</title>
		<link>http://blog.turtlebite.com/global-navigation-v2-14-released/</link>
		<comments>http://blog.turtlebite.com/global-navigation-v2-14-released/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 08:49:29 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Global Navigation]]></category>

		<guid isPermaLink="false">http://blog.flashcmsframework.com/?p=1024</guid>
		<description><![CDATA[While working on the upcoming online xml editor I have further improved the global navigation. It has a few new features like &#8220;btnIgnoreRelease&#8221; a button dispatch an event when it is clicked, useful if only the rollOver event is used to show the children buttons. There are also some minor fixes. Be sure to get [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.turtlebite.com/wp-content/uploads/2010/06/flash-online-xml-editor-menubar-global-navigation.jpg"></a><a href="http://blog.turtlebite.com/wp-content/uploads/2010/06/flash-online-xml-editor-menubar-global-navigation1.jpg"><img class="alignleft size-full wp-image-1028" title="flash-online-xml-editor-menubar-global-navigation" src="http://blog.turtlebite.com/wp-content/uploads/2010/06/flash-online-xml-editor-menubar-global-navigation1.jpg" alt="" width="180" height="130" /></a>While working on the upcoming online xml editor I have further improved the global navigation. It has a few new features like &#8220;btnIgnoreRelease&#8221; a button dispatch an event when it is clicked, useful if only the rollOver event is used to show the children buttons. There are also some minor fixes. Be sure to <a href="http://www.turtlebite.com/docs/global_navigation_download">get the latest version!</a></p>
<p>Cheers, Christian</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.turtlebite.com/global-navigation-v2-14-released/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.turtlebite.com/global-navigation-v2-14-released/&amp;title=Global+Navigation+v2.14+released" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.turtlebite.com/global-navigation-v2-14-released/&amp;title=Global+Navigation+v2.14+released" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.turtlebite.com/global-navigation-v2-14-released/&amp;title=Global+Navigation+v2.14+released&amp;desc=While%20working%20on%20the%20upcoming%20online%20xml%20editor%20I%20have%20further%20improved%20the%20global%20navigation.%20It%20has%20a%20few%20new%20features%20like%20%22btnIgnoreRelease%22%20a%20button%20dispatch%20an%20event%20when%20it%20is%20clicked%2C%20useful%20if%20only%20the%20rollOver%20event%20is%20used%20to%20show%20the%20children%20buttons.%20There%20are%20also%20some%20minor%20fixes.%20Be%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.turtlebite.com/global-navigation-v2-14-released/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.turtlebite.com/global-navigation-v2-14-released/&amp;bm_description=Global+Navigation+v2.14+released&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.turtlebite.com/global-navigation-v2-14-released/&amp;title=Global+Navigation+v2.14+released" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.turtlebite.com/global-navigation-v2-14-released/&amp;title=Global+Navigation+v2.14+released" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.turtlebite.com/global-navigation-v2-14-released/&amp;title=Global+Navigation+v2.14+released" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.turtlebite.com/global-navigation-v2-14-released/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Global+Navigation+v2.14+released+-+http://b2l.me/afqzjs&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.turtlebite.com/global-navigation-v2-14-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash CMS Framework v4.72 released</title>
		<link>http://blog.turtlebite.com/flash-cms-framwork-v4-72-released/</link>
		<comments>http://blog.turtlebite.com/flash-cms-framwork-v4-72-released/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 13:24:29 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash CMS]]></category>

		<guid isPermaLink="false">http://blog.flashcmsframework.com/?p=995</guid>
		<description><![CDATA[While I&#8217;ve been busy doing some daily business, I have continuously improved the Flash CMS. Now it&#8217;s time to release a new version. For a website I have recently created I needed a way to fine tune positions and sizes of both pictures and textfields. For example, sometimes you need to add just a few [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.turtlebite.com/wp-content/uploads/2010/06/flash-cms-position-size-fine-tuning_kl.jpg"><img class="alignleft size-full wp-image-996" title="flash-cms-position-size-fine-tuning_kl" src="http://blog.turtlebite.com/wp-content/uploads/2010/06/flash-cms-position-size-fine-tuning_kl.jpg" alt="" width="180" height="130" /></a>While I&#8217;ve been busy doing some daily business, I have continuously improved the Flash CMS. Now it&#8217;s time to <a href="http://www.flashcmsframework.com/docs/flash-cms-download">release a new version</a>. For a website I have recently created I needed a way to fine tune positions and sizes of both pictures and textfields. For example, sometimes you need to add just a few pixels of height to an image and you don&#8217;t want to do it in photoshop and upload it again. So now you can do it in the Flash CMS. Or imagine you type some text into a textbox, and the last word of a line just has not enough space and moves to the next line. Now you can add some pixels to the width of a textfield just to make room for this word.</p>
<p><strong>Goodbye Servicecenter&#8230;</strong><br />
In this release I also got rid of the Servicecenter I introduced in version 4.67. Its intention was to optimize the installation process, but in the end many users had problems with it because of file permission issues. As a consequence I have moved all settings into one file called &#8220;config.php&#8221;, where you edit all settings. User management is now also handled in this config file, so the table turtlebite_user is also not needed any longer.</p>
<p><strong>«flashcmsframework.com» changed to «turtlebite.com»</strong><br />
And finally, I changed the main domain name from &#8220;flashcmsframework.com&#8221; to &#8220;turtlebite.com&#8221;. When I started this blog, I thought it would be all about the Flash CMS. But than came the <a href="http://blog.turtlebite.com/category/global-navigation/">Global Navigation</a> and the <a href="http://blog.turtlebite.com/category/fleb-framework/">Fleb Framework</a>. And there is another project in the works: an <strong>online xml editor</strong>. Stay tuned!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.turtlebite.com/flash-cms-framwork-v4-72-released/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.turtlebite.com/flash-cms-framwork-v4-72-released/&amp;title=Flash+CMS+Framework+v4.72+released" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.turtlebite.com/flash-cms-framwork-v4-72-released/&amp;title=Flash+CMS+Framework+v4.72+released" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.turtlebite.com/flash-cms-framwork-v4-72-released/&amp;title=Flash+CMS+Framework+v4.72+released&amp;desc=While%20I%27ve%20been%20busy%20doing%20some%20daily%20business%2C%20I%20have%20continuously%20improved%20the%20Flash%20CMS.%20Now%20it%27s%20time%20to%20release%20a%20new%20version.%20For%20a%20website%20I%20have%20recently%20created%20I%20needed%20a%20way%20to%20fine%20tune%20positions%20and%20sizes%20of%20both%20pictures%20and%20textfields.%20For%20example%2C%20sometimes%20you%20need%20to%20add%20just%20a%20few" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.turtlebite.com/flash-cms-framwork-v4-72-released/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.turtlebite.com/flash-cms-framwork-v4-72-released/&amp;bm_description=Flash+CMS+Framework+v4.72+released&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.turtlebite.com/flash-cms-framwork-v4-72-released/&amp;title=Flash+CMS+Framework+v4.72+released" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.turtlebite.com/flash-cms-framwork-v4-72-released/&amp;title=Flash+CMS+Framework+v4.72+released" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.turtlebite.com/flash-cms-framwork-v4-72-released/&amp;title=Flash+CMS+Framework+v4.72+released" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.turtlebite.com/flash-cms-framwork-v4-72-released/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Flash+CMS+Framework+v4.72+released+-+http://b2l.me/afqzjt&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.turtlebite.com/flash-cms-framwork-v4-72-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Scale Bitmaps without distortion: BitmapSlice9</title>
		<link>http://blog.turtlebite.com/scale-bitmaps-without-distortion-bitmapslice9/</link>
		<comments>http://blog.turtlebite.com/scale-bitmaps-without-distortion-bitmapslice9/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 07:12:41 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Global Navigation]]></category>
		<category><![CDATA[Utilities & Tips]]></category>
		<category><![CDATA[bitmap scale9]]></category>
		<category><![CDATA[flash global navigation]]></category>

		<guid isPermaLink="false">http://blog.flashcmsframework.com/?p=977</guid>
		<description><![CDATA[I just came across a blog entry by Grant Skinner about BitmapSlice9. This is awesome news for the global navigation. I will check it out and post a sample project soon (ok, as soon as I have time&#8230;) Cheers, Christian Subscribe to the comments for this post? Share this on del.icio.us Digg this! Post this [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-978" title="flash_global_navigation_bitmapslice9" src="http://blog.flashcmsframework.com/wp-content/uploads/2010/04/flash_global_navigation_bitmapslice9.jpg" alt="flash_global_navigation_bitmapslice9" width="180" height="130" /></p>
<p>I just came across a <a href="http://www.gskinner.com/blog/archives/2010/04/bitmapslice9_sc.html">blog entry by Grant Skinner</a> about BitmapSlice9. This is awesome news for the global navigation. I will check it out and post a sample project soon (ok, as soon as I have time&#8230;)</p>
<p>Cheers,<br />
Christian</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.turtlebite.com/scale-bitmaps-without-distortion-bitmapslice9/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.turtlebite.com/scale-bitmaps-without-distortion-bitmapslice9/&amp;title=Scale+Bitmaps+without+distortion%3A+BitmapSlice9" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.turtlebite.com/scale-bitmaps-without-distortion-bitmapslice9/&amp;title=Scale+Bitmaps+without+distortion%3A+BitmapSlice9" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.turtlebite.com/scale-bitmaps-without-distortion-bitmapslice9/&amp;title=Scale+Bitmaps+without+distortion%3A+BitmapSlice9&amp;desc=%0D%0A%0D%0AI%20just%20came%20across%20a%20blog%20entry%20by%20Grant%20Skinner%20about%20BitmapSlice9.%20This%20is%20awesome%20news%20for%20the%20global%20navigation.%20I%20will%20check%20it%20out%20and%20post%20a%20sample%20project%20soon%20%28ok%2C%20as%20soon%20as%20I%20have%20time...%29%0D%0A%0D%0ACheers%2C%0D%0AChristian" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.turtlebite.com/scale-bitmaps-without-distortion-bitmapslice9/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.turtlebite.com/scale-bitmaps-without-distortion-bitmapslice9/&amp;bm_description=Scale+Bitmaps+without+distortion%3A+BitmapSlice9&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.turtlebite.com/scale-bitmaps-without-distortion-bitmapslice9/&amp;title=Scale+Bitmaps+without+distortion%3A+BitmapSlice9" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.turtlebite.com/scale-bitmaps-without-distortion-bitmapslice9/&amp;title=Scale+Bitmaps+without+distortion%3A+BitmapSlice9" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.turtlebite.com/scale-bitmaps-without-distortion-bitmapslice9/&amp;title=Scale+Bitmaps+without+distortion%3A+BitmapSlice9" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.turtlebite.com/scale-bitmaps-without-distortion-bitmapslice9/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Scale+Bitmaps+without+distortion%3A+BitmapSlice9+-+http://b2l.me/afqzju&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.turtlebite.com/scale-bitmaps-without-distortion-bitmapslice9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fleb Framework 1.27 released: Cache and preloading</title>
		<link>http://blog.turtlebite.com/fleb-framework-1-27-released-cache-preloading-included/</link>
		<comments>http://blog.turtlebite.com/fleb-framework-1-27-released-cache-preloading-included/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 15:36:33 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash SEO]]></category>
		<category><![CDATA[Fleb Framework]]></category>

		<guid isPermaLink="false">http://blog.flashcmsframework.com/?p=949</guid>
		<description><![CDATA[Some time ago I stumbled upon this post and I decided to implement it in the Fleb Framework. It&#8217;s about cache and preloading. I also optimized the initialization of a Website created with Fleb. You can now define which files need to be preloaded before the main site starts. There is a new node you [...]]]></description>
			<content:encoded><![CDATA[<p>Some time ago I stumbled upon <a href="http://www.tyz.nl/2010/01/25/cache-and-preload-gaia-pages/">this post</a> and I decided to implement it in the Fleb Framework. It&#8217;s about cache and preloading. I also optimized the initialization of a Website created with Fleb. You can now define which files need to be preloaded before the main site starts. There is a new node you can set in structure.xml, &#8220;preload_cache&#8221;. It&#8217;s optional. If set, the files (images and SWFs) are loaded to cache before the site starts.<br />
<strong><br />
Example:</strong>
<pre class="brush: xml;">
&lt;preload_cache&gt;
&lt;data file=&quot;mainBtn.swf&quot; bytes=&quot;63351&quot;/&gt;
&lt;data file=&quot;images/b1africanl001.jpg&quot; bytes=&quot;16384&quot;/&gt;
&lt;data file=&quot;images/b2architecturals018.jpg&quot; bytes=&quot;16759&quot;/&gt;
&lt;data file=&quot;images/b4architecture_interiors002.jpg&quot; bytes=&quot;19810&quot;/&gt;
&lt;data file=&quot;images/b6nature_animals_sea000.jpg&quot; bytes=&quot;18644&quot;/&gt;
&lt;data file=&quot;images/b10mechanics019.jpg&quot; bytes=&quot;19458&quot;/&gt;
&lt;data file=&quot;images/b12architecture_interiors002.jpg&quot; bytes=&quot;16384&quot;/&gt;
&lt;data file=&quot;images/b19nature_animals_sea039.jpg&quot; bytes=&quot;13505&quot;/&gt;
&lt;/preload_cache&gt;
</pre>
<p>Quick links (more info etc.):<br />
<a href="http://www.flashcmsframework.com/docs/fleb-framework-download">Download the Fleb Framework<br />
</a><a href="http://www.flashcmsframework.com/docs/fleb-framework-structure-xml">XML Attributes (structure.xml in detail)<br />
</a><a href="http://www.flashcmsframework.com/docs/start#fleb-framework">Fleb documentation</a></p>
<p>Cheers,<br />
Christian</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.turtlebite.com/fleb-framework-1-27-released-cache-preloading-included/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.turtlebite.com/fleb-framework-1-27-released-cache-preloading-included/&amp;title=Fleb+Framework+1.27+released%3A+Cache+and+preloading" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.turtlebite.com/fleb-framework-1-27-released-cache-preloading-included/&amp;title=Fleb+Framework+1.27+released%3A+Cache+and+preloading" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.turtlebite.com/fleb-framework-1-27-released-cache-preloading-included/&amp;title=Fleb+Framework+1.27+released%3A+Cache+and+preloading&amp;desc=Some%20time%20ago%20I%20stumbled%20upon%20this%20post%20and%20I%20decided%20to%20implement%20it%20in%20the%20Fleb%20Framework.%20It%27s%20about%20cache%20and%20preloading.%20I%20also%20optimized%20the%20initialization%20of%20a%20Website%20created%20with%20Fleb.%20You%20can%20now%20define%20which%20files%20need%20to%20be%20preloaded%20before%20the%20main%20site%20starts.%20There%20is%20a%20new%20node%20you%20c" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.turtlebite.com/fleb-framework-1-27-released-cache-preloading-included/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.turtlebite.com/fleb-framework-1-27-released-cache-preloading-included/&amp;bm_description=Fleb+Framework+1.27+released%3A+Cache+and+preloading&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.turtlebite.com/fleb-framework-1-27-released-cache-preloading-included/&amp;title=Fleb+Framework+1.27+released%3A+Cache+and+preloading" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.turtlebite.com/fleb-framework-1-27-released-cache-preloading-included/&amp;title=Fleb+Framework+1.27+released%3A+Cache+and+preloading" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.turtlebite.com/fleb-framework-1-27-released-cache-preloading-included/&amp;title=Fleb+Framework+1.27+released%3A+Cache+and+preloading" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.turtlebite.com/fleb-framework-1-27-released-cache-preloading-included/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fleb+Framework+1.27+released%3A+Cache+and+preloading+-+http://b2l.me/afqzjv&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.turtlebite.com/fleb-framework-1-27-released-cache-preloading-included/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fleb Framework v1.2: Dinner is served!</title>
		<link>http://blog.turtlebite.com/fleb-framework-v1-2-released/</link>
		<comments>http://blog.turtlebite.com/fleb-framework-v1-2-released/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 14:56:08 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash SEO]]></category>
		<category><![CDATA[Fleb Framework]]></category>
		<category><![CDATA[Global Navigation]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[expressinstall]]></category>
		<category><![CDATA[swfaddress]]></category>
		<category><![CDATA[swfobject]]></category>

		<guid isPermaLink="false">http://blog.flashcmsframework.com/?p=889</guid>
		<description><![CDATA[It&#8217;s been a while since the release of Fleb v1.1. I&#8217;ve been using it ever since to build websites (here you can find some examples) and at the same time have improved it a lot. It is still the same, the PHP/CSS/HTML section has not changed a lot despite a few small improvements. What did [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-904" title="fleb-flash-website-opensource-framework" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/12/fleb-flash-website-opensource-framework.jpg" alt="fleb-flash-website-opensource-framework" width="180" height="130" />It&#8217;s been a while since the release of Fleb v1.1. I&#8217;ve been using it ever since to build websites (<a href="http://www.flashcmsframework.com/docs/fleb-framework-introduction#real-examples">here you can find some examples)</a> and at the same time have improved it a lot. It is still the same, the PHP/CSS/HTML section has not changed a lot despite a few small improvements. What did change are the classes: I have removed every line of code I could out of Main.as and Base.as which were disturbing the creative work, for example setting up SWFAddress, waiting for the global navigation to finish initialisation, handling the loading/unloading of content pages etc. This code is now placed in separate classes like Startup.as, Core.as, PageLoader.as in a package &#8220;net.kaegi.fleb&#8221;. You don&#8217;t have to think about these classes and can concentrate on the cool design of your flebsite! What else? Oh, and I have created a logo for the Fleb Framework. <img src='http://blog.turtlebite.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><strong>But what the heck has &#8220;Dinner is served&#8221; to do with the Fl</strong><strong>eb Framework?</strong><br />
When I build a flebsite, I like to think of it as a table ready laid. If I want to have dinner, I will always find 3 things for sure: the table itself, a plate and some food on the plate. (Some of you might argue now that you can also eat on the floor without a plate, holding the food in your hands&#8230; Right. And you can also build websites by using SimpleText or Word&#8230; <img src='http://blog.turtlebite.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ) Okay, back to the point. Oh, I forgot two more things: the tablecloth or placemat and the menu card. But lets start with the table.<br />
<img class="alignnone size-full wp-image-909" title="fleb-flash-website-opensource-framework-v1.2-dinner-is-served" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/12/fleb-flash-website-opensource-framework-v1.2-dinner-is-served.jpg" alt="fleb-flash-website-opensource-framework-v1.2-dinner-is-served" width="595" height="351" /></p>
<p><strong>The table</strong><br />
Normally, you do not spend a thought about the table itself, but it is really important. If you remove it,  you will end up in a mess. It always has to be there, but once you have placed it somewhere in your house or flat, you probably will spend more time on the things you put on that table than the table itself. So to me as a flash website designer, I like to see the table as the necessary PHP/CSS/HTML/SEO construct I don&#8217;t want to care about every time I build a new flebsite.</p>
<p><strong>The tablecloth or placemat</strong><br />
For a decent dinner, before I put a plate on the table, I want to have a tablecloth or at least a placemat. To me, the tablecloth/placemat represents the basic settings of a flebsite: all the things that are most likely not going to change during a session, like the background image or color, a footer, a logo, a sound on/off switch etc. The tablecloth stands for a fullscreen flebsite, whereas the placemat represents a fixed size flebsite. The placemat, for example, may or may not be moved around with the plate, whereas the tablecloth will certainly stay in place when I scale the table (ups, sorry, I mean the browser window&#8230;)</p>
<p><strong>The plate and the food on it</strong><br />
The plate is the place where the action is happening: During a dinner, you may have a drink, followed by a salad or soup, then the main dishes and finally a dessert. The plate may or may not change for every course, but the food certainly does. You can share one plate for salad and soup (maybe you are having dinner at home and just don&#8217;t have more plates&#8230; <img src='http://blog.turtlebite.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ), while the main dishes are being served on different plates (even the shape and colors of the plates may change). The dessert will be served on a nice transparent glass plate.<br />
Think of the plate as your content page. The SWF displaying your data. The food is the actual data source. So you can have one plate that holds different food (the dynamically loaded content). If the food (the content) will be completely different (e.g. a change from a contact form to a gallery), than you might want to change the plate as well (the SWF). Than you have the cutlery that may or may not change with the plate: You can use the same fork for the salad and for the main dish. But you surely prefer a smaller spoon for the dessert than for the soup.</p>
<p><strong>Got the point? </strong><br />
While the table will not change at all and the tablecloth and placemat will remain the same during a &#8220;dinner session&#8221;, the plates, cutlery, glasses etc. will change, being moved around and emptied/filled up a lot.</p>
<p><strong>One more: the menu card</strong><br />
To make this metaphor complete I like to think of the global navigation as the menu card. When you hold it in your hands, it is floating above the table. In your mind you &#8220;navigate&#8221; through the dinner by selecting your food just like clicking on the buttons of a website.</p>
<p><strong>&#8230;and the last one: the waiter or &#8220;the brain&#8221;</strong><br />
Because I later refer to &#8220;the brain&#8221; when talking about &#8220;main.swf&#8221;, think of it as the person who knows everything about your dinner: the waiter. While your guests are the visitors of your flebsite, the waiter knows what to put on which plate, where to place it on the table, in which order the dishes have to be served, who has salad and who has the soup, who is vegetarian and has the risotto, when it is time to light the candles, clean up breadcrumbs, dim the lights, pump up the volume of the background music, help you with the chair if you need to go to the ladies&#8217;/men&#8217;s room, inform you about an incoming telephone call, when to ask you if the coffee may be served and so on&#8230;.</p>
<h2><strong><br />
Fleb Framework 1.2 </strong></h2>
<p><img class="alignnone size-full wp-image-906" title="fleb-flash-website-opensource-framework-overview" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/12/fleb-flash-website-opensource-framework-overview.jpg" alt="fleb-flash-website-opensource-framework-overview" width="595" height="638" /></p>
<p><strong>What&#8217;s new?</strong><br />
As written in the introduction, the whole framework has been cleaned up and restructured. Now there is much less code in main.as and you can concentrate on the design etc&#8230; As the Fleb Framework is based on the Global Navigation, I have moved the navigation settings into structure.xml. So now the whole website structure is defined in a central place.</p>
<p><strong>Flow</strong><br />
When base.swf (the &#8220;tablecloth/placemat&#8221;) is loaded, it starts loading main.swf (the &#8220;waiter&#8221; or &#8220;brain&#8221;). A preloader in base.swf shows the loading progress, main.swf will use 50% of the preloader bar. When main.swf is loaded, the navigation is initialised, which will use the other 50% of the preloader bar so it will reach 100% when main.swf and the navigation are completely initialised. Main.as will also create the pageHolder movieclip (the &#8220;plate&#8221;) and the navigationHolder movieclip (the &#8220;menu card&#8221;)</p>
<h2><strong> <span style="font-weight: normal;"><strong><br />
Examine the demosite</strong></span></strong></h2>
<p><strong><span style="font-weight: normal;"><strong><strong>Example 1: Landing on the homepage of the site<br />
<span style="font-weight: normal;">Launch the demosite: </span><span style="font-weight: normal;"><a href="http://www.flashcmsframework.com/flebsite_demo_v1.2/" target="_blank">http://www.flashcmsframework.com/flebsite_demo_v1.2<br />
</a>As you can see, there is kind of an intro before the navigation is animated into place. Of course it is up to you to have an intro. This is just an example.</span></strong></strong></span></strong></p>
<p><strong>Example 2: Deeplinking</strong><br />
An intro is nice if the user enters the site via the homepage. But what about a deeplink?<br />
Try this:  <a href="http://www.flashcmsframework.com/flebsite_demo_v1.2/en/products/turbo-series/" target="_blank">http://www.flashcmsframework.com/flebsite_demo_v1.2/en/products/turbo-series</a><br />
Now the user wants to get quickly to the content, so the intro is skipped.</p>
<p><strong>Example 3: Deeplinking with parameters</strong><br />
Maybe you have an image gallery on your site. You want to be able to deeplink to a specific image, but, because the gallery gets updated often, you cannot define all links in structure.xml. They need to be dynamic.<br />
Check this: <a href="http://www.flashcmsframework.com/flebsite_demo_v1.2/en/service/some/more/info" target="_blank">http://www.flashcmsframework.com/flebsite_demo_v1.2/en/service/some/more/info<br />
</a>The address defined in structure.xml is &#8220;/en/service/&#8221;. Everything which is beyond this scope will be stored in an array called deeplink. That way you can set up an event listener in your SWF and do whatever is needed, for example loading a certain image. This even works without flash, so you can catch the deeplink in your PHP file to feed the search engines:<br />
<a href="http://www.flashcmsframework.com/flebsite_demo_v1.2/noflash.php?swfaddress=/en/service/some/more/info" target="_blank">http://www.flashcmsframework.com/flebsite_demo_v1.2/noflash.php?swfaddress=/en/service/some/more/info<br />
</a><br />
<strong>Show your clients the &#8220;no flash&#8221; version</strong><br />
Maybe you&#8217;ve noticed the noflash.php part in the previous sample link above.<br />
Try this: <a href="http://www.flashcmsframework.com/flebsite_demo_v1.2/noflash.php" target="_blank">http://www.flashcmsframework.com/flebsite_demo_v1.2/noflash.php</a><br />
This is the site the user will see if he cancels the express install procedure. But at the same time it is really useful to easily show your clients the work &#8220;under the hood&#8221; without having them deactivate javascript.</p>
<p><strong>Transitioning pages</strong><br />
Launch the demosite: <a href="http://www.flashcmsframework.com/flebsite_demo_v1.2/" target="_blank">http://www.flashcmsframework.com/flebsite_demo_v1.2</a>. If you navigate to &#8220;About us&#8221;, then &#8220;Service&#8221;, you see that the pages are just fading in and out. Now click on &#8220;Static content&#8221;. Here the previous page will not only fade out, but also move to the right, then there is a pause, just before the &#8220;static content&#8221; page slides in from the left.In fact it is very easy to set up different transitioning modes.</p>
<h2><strong> </strong></h2>
<p><strong>SWFObject 2.2 / 2.1</strong><br />
While using the new SWFAddress version 2.4, there are problems with SWFObject 2.2 when you cancel ExpressInstall in Firefox on PC: you will end up with a blank screen. This issue is not occuring with SWFObject 2.1, so I will continue using this version for the time being.</p>
<p><strong>How to start?<br />
<span style="font-weight: normal;"><a href="http://www.flashcmsframework.com/docs/fleb-framework-download">Download the Fleb Framework</a> from the download section. It also contains the complete source of the demosite. Dive into the files and <a href="http://www.flashcmsframework.com/docs/start#fleb-framework">visit the documentation</a>, I have spent some time updating it.<br />
</span></strong></p>
<p><strong><span style="font-weight: normal;">Happy coding!<br />
Christian (the flebber&#8230;.;-)) </span></strong></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.turtlebite.com/fleb-framework-v1-2-released/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.turtlebite.com/fleb-framework-v1-2-released/&amp;title=Fleb+Framework+v1.2%3A+Dinner+is+served%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.turtlebite.com/fleb-framework-v1-2-released/&amp;title=Fleb+Framework+v1.2%3A+Dinner+is+served%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.turtlebite.com/fleb-framework-v1-2-released/&amp;title=Fleb+Framework+v1.2%3A+Dinner+is+served%21&amp;desc=It%27s%20been%20a%20while%20since%20the%20release%20of%20Fleb%20v1.1.%20I%27ve%20been%20using%20it%20ever%20since%20to%20build%20websites%20%28here%20you%20can%20find%20some%20examples%29%20and%20at%20the%20same%20time%20have%20improved%20it%20a%20lot.%20It%20is%20still%20the%20same%2C%20the%20PHP%2FCSS%2FHTML%20section%20has%20not%20changed%20a%20lot%20despite%20a%20few%20small%20improvements.%20What%20did%20change%20are%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.turtlebite.com/fleb-framework-v1-2-released/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.turtlebite.com/fleb-framework-v1-2-released/&amp;bm_description=Fleb+Framework+v1.2%3A+Dinner+is+served%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.turtlebite.com/fleb-framework-v1-2-released/&amp;title=Fleb+Framework+v1.2%3A+Dinner+is+served%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.turtlebite.com/fleb-framework-v1-2-released/&amp;title=Fleb+Framework+v1.2%3A+Dinner+is+served%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.turtlebite.com/fleb-framework-v1-2-released/&amp;title=Fleb+Framework+v1.2%3A+Dinner+is+served%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.turtlebite.com/fleb-framework-v1-2-released/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fleb+Framework+v1.2%3A+Dinner+is+served%21+-+http://b2l.me/afqwz7&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.turtlebite.com/fleb-framework-v1-2-released/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Global Navigation v2.10: suspend after initialisation</title>
		<link>http://blog.turtlebite.com/global-navigation-v2-10-suspend-after-initialisation/</link>
		<comments>http://blog.turtlebite.com/global-navigation-v2-10-suspend-after-initialisation/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 20:24:33 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Global Navigation]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://blog.flashcmsframework.com/?p=876</guid>
		<description><![CDATA[While working on the upcoming Fleb Framework release 1.2 I have made a small but quite useful update to the global navigation: It is now possible to suspend the navigation right after its initialisation just before it is transitioning in. This comes in very handy if you need to wait for an intro to finish [...]]]></description>
			<content:encoded><![CDATA[<p>While working on the upcoming Fleb Framework release 1.2 I have made a small but quite useful update to the global navigation: It is now possible to suspend the navigation right after its initialisation just before it is transitioning in. This comes in very handy if you need to wait for an intro to finish or some assets to be loaded, and you want to be sure the navigation is in place and ready.</p>
<p><a href="http://www.flashcmsframework.com/docs/doku.php?id=global-navigation2-examples">Test it here</a> (select example Nr. 16)</p>
<p>Visit the <a href="http://www.flashcmsframework.com/docs/doku.php?id=global_navigation_download">download section</a> and the <a href="http://www.flashcmsframework.com/docs/doku.php?id=global_navigation_changelog">changelog</a> for more details.</p>
<p>Cheers,<br />
Christian</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.turtlebite.com/global-navigation-v2-10-suspend-after-initialisation/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.turtlebite.com/global-navigation-v2-10-suspend-after-initialisation/&amp;title=Global+Navigation+v2.10%3A+suspend+after+initialisation" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.turtlebite.com/global-navigation-v2-10-suspend-after-initialisation/&amp;title=Global+Navigation+v2.10%3A+suspend+after+initialisation" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.turtlebite.com/global-navigation-v2-10-suspend-after-initialisation/&amp;title=Global+Navigation+v2.10%3A+suspend+after+initialisation&amp;desc=While%20working%20on%20the%20upcoming%20Fleb%20Framework%20release%201.2%20I%20have%20made%20a%20small%20but%20quite%20useful%20update%20to%20the%20global%20navigation%3A%20It%20is%20now%20possible%20to%20suspend%20the%20navigation%20right%20after%20its%20initialisation%20just%20before%20it%20is%20transitioning%20in.%20This%20comes%20in%20very%20handy%20if%20you%20need%20to%20wait%20for%20an%20intro%20to%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.turtlebite.com/global-navigation-v2-10-suspend-after-initialisation/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.turtlebite.com/global-navigation-v2-10-suspend-after-initialisation/&amp;bm_description=Global+Navigation+v2.10%3A+suspend+after+initialisation&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.turtlebite.com/global-navigation-v2-10-suspend-after-initialisation/&amp;title=Global+Navigation+v2.10%3A+suspend+after+initialisation" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.turtlebite.com/global-navigation-v2-10-suspend-after-initialisation/&amp;title=Global+Navigation+v2.10%3A+suspend+after+initialisation" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.turtlebite.com/global-navigation-v2-10-suspend-after-initialisation/&amp;title=Global+Navigation+v2.10%3A+suspend+after+initialisation" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.turtlebite.com/global-navigation-v2-10-suspend-after-initialisation/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Global+Navigation+v2.10%3A+suspend+after+initialisation+-+http://b2l.me/afqzjx&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.turtlebite.com/global-navigation-v2-10-suspend-after-initialisation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash CMS v4.71: Character Encoding Problems fixed</title>
		<link>http://blog.turtlebite.com/flash-cms-v4-71-character-encoding-problems-fixed/</link>
		<comments>http://blog.turtlebite.com/flash-cms-v4-71-character-encoding-problems-fixed/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 09:46:23 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash CMS]]></category>
		<category><![CDATA[character encoding]]></category>
		<category><![CDATA[utf8]]></category>

		<guid isPermaLink="false">http://blog.flashcmsframework.com/?p=861</guid>
		<description><![CDATA[The issue with proper character encoding has been there for a while. Even though the database tables have &#8220;latin1&#8243; as the default character set, I knew this was not the correct solution. But it always worked for me, and I have been using &#8220;utf8_encode/utf8_decode&#8221; in my php scripts and all was fine. Even though I [...]]]></description>
			<content:encoded><![CDATA[<p>The issue with proper character encoding has been there for a while. Even though the database tables have &#8220;latin1&#8243; as the default character set, I knew this was not the correct solution. But it always worked for me, and I have been using &#8220;utf8_encode/utf8_decode&#8221; in my php scripts and all was fine. Even though I had to convert some single special characters like the bullet point (•), I could live with that workaround and I used to postpone the problem for ages&#8230; Until now. Because a site I&#8217;m working on will be in russian and german, and therefor I was confronted with a whole bunch of cyrillic characters&#8230; So I had to fix this once and for all.</p>
<p>The funny thing is, it is really simple if you know the right MySQL syntax you have to use. It is not done by setting the &#8220;Default Character Set&#8221; of  the database tables to &#8220;utf8&#8243;, which is what I have tried many times before. You have to add 2 more lines before the query.</p>
<p>In PHP, Instead of this:</p>
<pre class="brush: php;">
//......
$query = &quot;SELECT * FROM table&quot;;
$result = mysql_query($query);
//.....
</pre>
<p>&#8230;it should look like this:</p>
<pre class="brush: php;">
//......
$query = &quot;SELECT * FROM yourtable&quot;;
mysql_query(&quot;SET CHARACTER SET utf8&quot;);
mysql_query(&quot;SET NAMES utf8&quot;);
$result = mysql_query($query);
//.....
</pre>
<p>I know this may seem too obvious, but at the time I was trying to solve this I just didn&#8217;t find the solution. And as I said, I had a workaround that was fine for a long time.</p>
<p><strong>Another small improvement in version 4.71: skip crop/resize picture<br />
<span style="font-weight: normal;">I have added a checkbox in the upload section of the CMS, when you crop/resize a picture. It is now possible to skip the first cropping/resizing and therefor upload a picture &#8220;as is&#8221; (see the screenshot below). After that, you can still define the thumbnail. Why that? I have a client who is very keen on image quality. Even if I set the quality of imagemagic to 100%, the image quality loss was to big for the client, and even worse, the image became to large in file size. So now the client can prepare the image in photoshop, upload it as it is and just use the thumbnail functionality of the CMS to create the thumbnail, where quality does not matter that much.</span></strong></p>
<p><img class="alignnone size-full wp-image-864" title="flash-cms-skip-crop-resize-picture" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/12/flash-cms-skip-crop-resize-picture.jpg" alt="flash-cms-skip-crop-resize-picture" width="595" height="250" /></p>
<p><a href="http://www.flashcmsframework.com/docs/doku.php?id=flash-cms-download">Download the Turtlebite Flash CMS here</a>.</p>
<p>Cheers,<br />
Christian</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.turtlebite.com/flash-cms-v4-71-character-encoding-problems-fixed/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.turtlebite.com/flash-cms-v4-71-character-encoding-problems-fixed/&amp;title=Flash+CMS+v4.71%3A+Character+Encoding+Problems+fixed" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.turtlebite.com/flash-cms-v4-71-character-encoding-problems-fixed/&amp;title=Flash+CMS+v4.71%3A+Character+Encoding+Problems+fixed" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.turtlebite.com/flash-cms-v4-71-character-encoding-problems-fixed/&amp;title=Flash+CMS+v4.71%3A+Character+Encoding+Problems+fixed&amp;desc=The%20issue%20with%20proper%20character%20encoding%20has%20been%20there%20for%20a%20while.%20Even%20though%20the%20database%20tables%20have%20%22latin1%22%20as%20the%20default%20character%20set%2C%20I%20knew%20this%20was%20not%20the%20correct%20solution.%20But%20it%20always%20worked%20for%20me%2C%20and%20I%20have%20been%20using%20%22utf8_encode%2Futf8_decode%22%20in%20my%20php%20scripts%20and%20all%20was%20fine.%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.turtlebite.com/flash-cms-v4-71-character-encoding-problems-fixed/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.turtlebite.com/flash-cms-v4-71-character-encoding-problems-fixed/&amp;bm_description=Flash+CMS+v4.71%3A+Character+Encoding+Problems+fixed&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.turtlebite.com/flash-cms-v4-71-character-encoding-problems-fixed/&amp;title=Flash+CMS+v4.71%3A+Character+Encoding+Problems+fixed" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.turtlebite.com/flash-cms-v4-71-character-encoding-problems-fixed/&amp;title=Flash+CMS+v4.71%3A+Character+Encoding+Problems+fixed" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.turtlebite.com/flash-cms-v4-71-character-encoding-problems-fixed/&amp;title=Flash+CMS+v4.71%3A+Character+Encoding+Problems+fixed" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.turtlebite.com/flash-cms-v4-71-character-encoding-problems-fixed/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Flash+CMS+v4.71%3A+Character+Encoding+Problems+fixed+-+http://b2l.me/afqzjy&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.turtlebite.com/flash-cms-v4-71-character-encoding-problems-fixed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flash CMS version 4.70 released</title>
		<link>http://blog.turtlebite.com/flash-cms-version-4-70-released/</link>
		<comments>http://blog.turtlebite.com/flash-cms-version-4-70-released/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 20:11:00 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash CMS]]></category>

		<guid isPermaLink="false">http://blog.flashcmsframework.com/?p=855</guid>
		<description><![CDATA[While stuck in daily business I managed to improve the Flash CMS Framework. I&#8217;m a working on 2 websites at the moment with loads of pictures to manage. So I added a search field to be able to find a specific text phrase or picture file within the CMS. Also, if you roll over the [...]]]></description>
			<content:encoded><![CDATA[<p>While stuck in daily business I managed to improve the Flash CMS Framework. I&#8217;m a working on 2 websites at the moment with loads of pictures to manage. So I added a search field to be able to find a specific text phrase or picture file within the CMS. Also, if you roll over the <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash-cms-user-interface-overview#picture_selector">picture selector</a>, a text field is fading in displaying the file name. This is really useful if you have to deal with many pictures!</p>
<p><img class="alignnone size-full wp-image-856" title="flash-cms-search-preview-url-update" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/12/flash-cms-search-preview-url-update.jpg" alt="flash-cms-search-preview-url-update" width="595" height="400" /></p>
<p>You can download the Flash CMS <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash-cms-download">here</a>. Be sure to <a href="http://www.flashcmsframework.com/docs/doku.php#flash_cms_framework">visit the documentation</a> for further info.</p>
<p>Don&#8217;t hesitate to leave a comment or drop me a line if you need help or have questions!</p>
<p>BTW: Merry christmas! <img src='http://blog.turtlebite.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
Christian</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.turtlebite.com/flash-cms-version-4-70-released/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.turtlebite.com/flash-cms-version-4-70-released/&amp;title=Flash+CMS+version+4.70+released" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.turtlebite.com/flash-cms-version-4-70-released/&amp;title=Flash+CMS+version+4.70+released" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.turtlebite.com/flash-cms-version-4-70-released/&amp;title=Flash+CMS+version+4.70+released&amp;desc=While%20stuck%20in%20daily%20business%20I%20managed%20to%20improve%20the%20Flash%20CMS%20Framework.%20I%27m%20a%20working%20on%202%20websites%20at%20the%20moment%20with%20loads%20of%20pictures%20to%20manage.%20So%20I%20added%20a%20search%20field%20to%20be%20able%20to%20find%20a%20specific%20text%20phrase%20or%20picture%20file%20within%20the%20CMS.%20Also%2C%20if%20you%20roll%20over%20the%20picture%20selector%2C%20a%20t" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.turtlebite.com/flash-cms-version-4-70-released/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.turtlebite.com/flash-cms-version-4-70-released/&amp;bm_description=Flash+CMS+version+4.70+released&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.turtlebite.com/flash-cms-version-4-70-released/&amp;title=Flash+CMS+version+4.70+released" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.turtlebite.com/flash-cms-version-4-70-released/&amp;title=Flash+CMS+version+4.70+released" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.turtlebite.com/flash-cms-version-4-70-released/&amp;title=Flash+CMS+version+4.70+released" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.turtlebite.com/flash-cms-version-4-70-released/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Flash+CMS+version+4.70+released+-+http://b2l.me/afqzjz&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.turtlebite.com/flash-cms-version-4-70-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing Flash CMS Blog</title>
		<link>http://blog.turtlebite.com/introducing-flash-cms-blog/</link>
		<comments>http://blog.turtlebite.com/introducing-flash-cms-blog/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 13:43:05 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash CMS]]></category>

		<guid isPermaLink="false">http://blog.flashcmsframework.com/?p=844</guid>
		<description><![CDATA[Today I wrote a little guest post about the Turtlebite Flash CMS Framework in the Flash CMS Blog. Check it out! Here is what the say about themselves: &#8220;We are excited to introduce new informative Topflashcms.com source you could find useful for yourself. You may ask what is it all about? It is innovatory blog [...]]]></description>
			<content:encoded><![CDATA[<p>Today I wrote a little <a href="http://www.topflashcms.com/providers/an-insight-into-the-turtlebite-flash-cms/">guest post</a> about the Turtlebite Flash CMS Framework in the <a href="http://www.topflashcms.com">Flash CMS Blog.</a> <a href="http://www.topflashcms.com/providers/an-insight-into-the-turtlebite-flash-cms/">Check it out!</a></p>
<p><em>Here is what the say about themselves:</em></p>
<p><img class="alignleft size-full wp-image-851" title="topflashcms" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/12/topflashcms1.jpg" alt="topflashcms" width="180" height="130" />&#8220;We are excited to introduce new informative <a href="http://www.topflashcms.com/">Topflashcms.com</a> source you could find useful for yourself. You may ask what is it all about? It is innovatory blog from where the users can derive extensive knowledge about various <a href="http://www.topflashcms.com/">top Flash CMS</a> inventions.</p>
<p>In case you lack essential information, this source thoroughly examines new Flash technologies and consequently issues most effective informational output whether it is connected with diverse Flash CMS platforms, or with professional Flash CMS Templates.</p>
<p>For Flash designers, Topflashcms.com is considered to be a profound set of informative blocks that gives exhaustive explanations of every new Flash novelty. What is also exciting that Topflashcms.com enables the visitors and Flash fans to share their own flash conceptions within submitted guest posts. In addition, this blog, being considerably redesigned, uses modern and clean style approach to make intelligible lay-out execution.</p>
<p>Apart from all above, you can find there functional on-line store with comprehensive variety of <a href="http://www.templates.com/product/flash-cms-templates/">top-quality Flash CMS Templates</a> you can purchase at affordable prices.</p>
<p>So, either you are a Flash designer, Flash enthusiast, or a Flash site owner you have a lot of reasons to check out <a href="http://www.topflashcms.com">Topflashcms.com</a>.&#8221;</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://blog.turtlebite.com/introducing-flash-cms-blog/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.turtlebite.com/introducing-flash-cms-blog/&amp;title=Introducing+Flash+CMS+Blog" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.turtlebite.com/introducing-flash-cms-blog/&amp;title=Introducing+Flash+CMS+Blog" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.turtlebite.com/introducing-flash-cms-blog/&amp;title=Introducing+Flash+CMS+Blog&amp;desc=Today%20I%20wrote%20a%20little%20guest%20post%20about%20the%20Turtlebite%20Flash%20CMS%20Framework%20in%20the%20Flash%20CMS%20Blog.%20Check%20it%20out%21%0D%0A%0D%0AHere%20is%20what%20the%20say%20about%20themselves%3A%0D%0A%0D%0A%22We%20are%20excited%20to%20introduce%20new%20informative%20Topflashcms.com%20source%20you%20could%20find%20useful%20for%20yourself.%20You%20may%20ask%20what%20is%20it%20all%20about%3F%20It%20is" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.turtlebite.com/introducing-flash-cms-blog/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.turtlebite.com/introducing-flash-cms-blog/&amp;bm_description=Introducing+Flash+CMS+Blog&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.turtlebite.com/introducing-flash-cms-blog/&amp;title=Introducing+Flash+CMS+Blog" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.turtlebite.com/introducing-flash-cms-blog/&amp;title=Introducing+Flash+CMS+Blog" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.turtlebite.com/introducing-flash-cms-blog/&amp;title=Introducing+Flash+CMS+Blog" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.turtlebite.com/introducing-flash-cms-blog/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Introducing+Flash+CMS+Blog+-+http://b2l.me/afqzj2&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://blog.turtlebite.com/introducing-flash-cms-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
