<?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 &#187; Flash CMS</title>
	<atom:link href="http://blog.turtlebite.com/tag/flash-cms/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>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>Flash CMS step by step tutorial &#8220;editing text&#8221;</title>
		<link>http://blog.turtlebite.com/flash-cms-quick-start-tutorial-editing-text/</link>
		<comments>http://blog.turtlebite.com/flash-cms-quick-start-tutorial-editing-text/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 08:05:43 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash CMS]]></category>
		<category><![CDATA[as3 cms]]></category>
		<category><![CDATA[cms admin]]></category>
		<category><![CDATA[flash cms tutorial]]></category>
		<category><![CDATA[rich text editor]]></category>

		<guid isPermaLink="false">http://blog.flashcmsframework.com/?p=668</guid>
		<description><![CDATA[The first step-by-step quick start tutorial is finished! It covers the basics and will guide you from the installation of the Flash CMS to the integration of it in your flash website (or maybe a flebsite? Well, that&#8217;s another story&#8230; ). I have set up a FLA file that shows kind of a greeting card. [...]]]></description>
			<content:encoded><![CDATA[<p>The first step-by-step quick start tutorial is finished! It covers the basics and will guide you from the installation of the Flash CMS to the integration of it in your flash website (or maybe a <a href="http://blog.flashcmsframework.com/category/fleb-framework/">flebsite</a>? Well, that&#8217;s another story&#8230; <img src='http://blog.turtlebite.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> ). I have set up a FLA file that shows kind of a greeting card. I&#8217;m sorry for the ugly 3D look, but I wanted the file to be compatible to CS3. In CS4 you would be doing this with the new 3D transformation tools. Anyway, it was important to show that you can connect any existing textfield; distorted, skewed etc. In this tutorial I will concentrate on editing a textfield only.</p>
<p><img class="alignnone size-full wp-image-759" title="flas-cms-design-edit-load" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/09/flas-cms-design-edit-load.jpg" alt="flas-cms-design-edit-load" width="595" height="438" /></p>
<h2><strong>Before you start</strong></h2>
<p><strong></strong>To complete this tutorial it is required that you have <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash_cms_installation">installed and tested the Flash CMS</a>. I have used free fonts from <a href="http://www.dafont.com">dafont.com</a>: &#8220;<a href="http://www.dafont.com/another.font">Another</a>&#8220;, &#8220;<a href="http://www.dafont.com/chicken-scratch.font">Chicken Scratch</a>&#8221; and &#8220;<a href="http://www.dafont.com/hardcore-pen.font">Hardcore Pen</a>&#8220;. Note for Mac users: On my MacBook Pro the fonts do not work in the flash IDE. I had to convert them into Mac True Type format (.dfont) first. I could not find a software for the Mac so I ended up using <a href="http://www.acutesystems.com/scrcf.htm">CrossFont</a> on my old PC for doing this.<br />
While reading this tutorial you might want to <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash-cms-case-studies">visit the case studies</a> for more details. You can find the <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash-cms-download">source files for this tutorial in the download section of the CMS</a>.</p>
<p><strong>Initial situation</strong><br />
Let&#8217;s assume some time ago you have created a website in AS3 that contains a &#8220;greeting card&#8221; like the one in the screenshot above. One day your client calls you to ask if you can make the text on the right side of the greeting card editable&#8230;</p>
<p>As the Turtlebite Flash CMS is a back end solution, this can easily be done. This is one of the huge advantages of this Flash CMS: You don&#8217;t have to build your website in a certain way or in a special cms system. Just create the website the way you prefer and &#8220;plug in&#8221; the cms later. Even better: the client gets a simple login to the Flash CMS and is only seeing what is relevant at the very moment: the textfield for the greeting card. No upload buttons, setting buttons or menu items that are not used yet and so on. Just give your client what he has demanded and don&#8217;t distract him with a bunch of not (yet) needed functionality. You set the menu on a per user basis in an xml file, but more about this later on.</p>
<h2><strong>Let&#8217;s integrate the Flash CMS</strong></h2>
<p><strong></strong>After you have <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash_cms_installation">installed and tested the Flash CMS</a>, there are the following 5 steps that need to be done to integrate the Flash CMS:</p>
<ol>
<li><strong>Analyze the textfield</strong> of your FLA file (width, used fonts, colors and styles).</li>
<li><strong>Embed the fonts.</strong></li>
<li><strong>Define the  layout.</strong> Information about the textfield (type, width, position, multiline, textstyles, background color etc.) is saved in an xml file.</li>
<li><strong>Create the Flash CMS menu. </strong>An xml file that contains all the menu items your client will be seeing. You can have a different menu for each user.</li>
<li><strong>Create the user account.</strong></li>
</ol>
<p>Okay, let&#8217;s get a deeper look at each step.</p>
<p><strong>Step 1: Analyze the textfield that needs to be connected to the Flash CMS</strong><br />
Open &#8220;quickstart.fla&#8221; and navigate to the textfield (book -&gt; textbox -&gt; tf). We need the following info:</p>
<ul>
<li>Textfield width: 338 pixel (You don&#8217;t need to bother about the height, it will later be auto-sized)</li>
<li>Textfield leading: 2</li>
<li>&#8220;hardcore_pen&#8221;, 45 Pt., color: #486401. Let&#8217;s call it it &#8220;Title&#8221;.</li>
<li>&#8220;Another&#8221;, 20 Pt., color: #4D5544. Let&#8217;s call it &#8220;Body&#8221;.</li>
<li>&#8220;ChickenScratch AOE&#8221;, 22 Pt., color: #000000. Let&#8217;s call it &#8220;Body Chicken Scratch&#8221;.</li>
<li>The color for hyperlinks is #990000.</li>
</ul>
<p><strong>Step 2: Embed the fonts for the  Flash CMS.</strong></p>
<ol>
<li> Create a new FLA, ActionScript 2. The size of the stage does not matter. Save it as &#8220;fonts.fla&#8221;.</li>
<li>In the library, add 3 new fonts with the settings shown in these pictures:<br />

<div class="ngg-galleryoverview" id="ngg-gallery-3-668">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://blog.turtlebite.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=3&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-33" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/quickstart-font-settings/flash-cms-step-by-step-tutorial-embed-font-1.jpg" title=" " class="shutterset_set_3" >
								<img title="flash-cms-step-by-step-tutorial-embed-font-1" alt="flash-cms-step-by-step-tutorial-embed-font-1" src="http://blog.turtlebite.com/wp-content/gallery/quickstart-font-settings/thumbs/thumbs_flash-cms-step-by-step-tutorial-embed-font-1.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-34" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/quickstart-font-settings/flash-cms-step-by-step-tutorial-embed-font-2.jpg" title=" " class="shutterset_set_3" >
								<img title="flash-cms-step-by-step-tutorial-embed-font-2" alt="flash-cms-step-by-step-tutorial-embed-font-2" src="http://blog.turtlebite.com/wp-content/gallery/quickstart-font-settings/thumbs/thumbs_flash-cms-step-by-step-tutorial-embed-font-2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-35" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/quickstart-font-settings/flash-cms-step-by-step-tutorial-embed-font-3.jpg" title=" " class="shutterset_set_3" >
								<img title="flash-cms-step-by-step-tutorial-embed-font-3" alt="flash-cms-step-by-step-tutorial-embed-font-3" src="http://blog.turtlebite.com/wp-content/gallery/quickstart-font-settings/thumbs/thumbs_flash-cms-step-by-step-tutorial-embed-font-3.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-36" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/quickstart-font-settings/flash-cms-step-by-step-tutorial-font-library.jpg" title=" " class="shutterset_set_3" >
								<img title="flash-cms-step-by-step-tutorial-font-library" alt="flash-cms-step-by-step-tutorial-font-library" src="http://blog.turtlebite.com/wp-content/gallery/quickstart-font-settings/thumbs/thumbs_flash-cms-step-by-step-tutorial-font-library.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</li>
<li>In the first frame, copy and paste this code:
<pre class="brush: php;">
_level0.myFontStyle = [];
_level0.myFontStyle.push({styleName:&quot;Body&quot;,font:&quot;_myfont1&quot;, size:20, color:0x4D5544});
_level0.myFontStyle.push({styleName:&quot;Body Chicken Scratch&quot;, font:&quot;_myfont2&quot;, size:22, color:0x000000});
_level0.myFontStyle.push({styleName:&quot;Title&quot;,font:&quot;_myfont3&quot;,size:45,color:0x486401});
// --------------------------------------------
_level0.myLinkStyle = new TextField.StyleSheet();
_level0.myLinkStyle.setStyle(&quot;a:link&quot;,{color:&quot;#990000&quot;, textDecoration:&quot;underline&quot;});
_level0.myLinkStyle.setStyle(&quot;a:hover&quot;,{color:&quot;#FF0000&quot;, textDecoration:&quot;none&quot;});
</pre>
</li>
<li> As you can see when you look at the code above, the font information of step 1 is used here to define the font menu for the text editor. Later in the Flash CMS the &#8220;Select font style&#8221; menu  will look like this:<br />
<img class="alignnone size-full wp-image-721" title="flash-cms-tutorial-editing-text-fontstyles" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/09/flash-cms-tutorial-editing-text-fontstyles.jpg" alt="flash-cms-tutorial-editing-text-fontstyles" width="584" height="176" /><br />
Export this FLA for <strong>ActionScript 2</strong>. Then upload the &#8220;fonts.swf&#8221; into your the folder &#8220;login&#8221; which is inside your CMS folder on your server. There is already a &#8220;fonts.swf&#8221; file from the basic installation. You can rename it before you upload the newly created fonts.swf if you don&#8217;t want to overwrite it.</li>
</ol>
<p><strong>Step 5: Define the layout.</strong><br />
So far we have installed the Flash CMS, tested it, created and uploaded an SWF with the embedded fonts. The technical part is done. Now the Flash CMS needs to know about the textfield for the greeting card, the size of it, the fonts being used, colors and so on. All of this information is stored in an xml file.</p>
<p>Create an xml file, copy and paste the content below and save it as &#8220;slot_layout_quickstart.xml&#8221;.
<pre class="brush: xml;">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;root&gt;
&lt;setup maxRows=&quot;15&quot; slotSpace=&quot;2&quot; tabChar=&quot;§&quot; editRollOverColor=&quot;990000&quot; editRollOutColor=&quot;CCCCCC&quot; layoutMenuHorizontal=&quot;false&quot;/&gt;
&lt;layouts&gt;
&lt;layout label=&quot; Single Textfield &quot;/&gt;
&lt;/layouts&gt;
&lt;targets&gt;
&lt;target id=&quot;tf&quot; type=&quot;text_html&quot; visibility=&quot;1&quot; x=&quot;0&quot; y=&quot;0&quot; width=&quot;338&quot; richtext=&quot;true&quot; embedfonts=&quot;true&quot; multiline=&quot;true&quot; align=&quot;left&quot; leading=&quot;2&quot; textStyles=&quot;myFontStyle&quot; linkStyle=&quot;myLinkStyle&quot; linkDir=&quot;&quot; linkRemovedColor=&quot;4D5544&quot; antiAliasType=&quot;advanced&quot;/&gt;
&lt;/targets&gt;
&lt;/root&gt;
</pre>
<p>Please <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash-cms-slot-layout-xml-attributes">refer to the docs for a complete description of each node/element</a> of this slot xml file.<br />
Now upload &#8220;slot_layout_quickstart.xml&#8221; to the server into folder &#8220;config&#8221; of your CMS installation.</p>
<p><strong>Step 6: Create the Flash CMS menu</strong><br />
Now that the definition of the editable parts (the textfield of the greeting card) are defined, it&#8217;s time to create the menu bar for the Flash CMS:<br />
<img class="alignnone size-full wp-image-736" title="flash-cms-step-by-step-tutorial-cms-menubar" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/09/flash-cms-step-by-step-tutorial-cms-menubar.jpg" alt="flash-cms-step-by-step-tutorial-cms-menubar" width="590" height="100" /></p>
<p>Create an xml file, copy and paste the content below and save it as &#8220;cms_menu_quickstart_john.xml&#8221;:</p>
<pre class="brush: xml;">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;menu&gt;
&lt;menuitem label=&quot;File&quot;&gt;
&lt;menuitem label=&quot;Logout&quot; id=&quot;logoff&quot;/&gt;
&lt;/menuitem&gt;
&lt;menuitem label=&quot;Edit&quot;&gt;
&lt;menuitem label=&quot;Greeting Card&quot; contentSource=&quot;greeting_card&quot; slotSource=&quot;slot_layout_quickstart.xml&quot; hideContentVersionManager=&quot;1&quot; slotNew=&quot;0&quot; slotMove=&quot;0&quot; slotCopy=&quot;0&quot; slotLayout=&quot;0&quot; slotDelete=&quot;0&quot; bgColor=&quot;FFFFFF&quot;/&gt;&lt;/menuitem&gt;
&lt;/menu&gt;
</pre>
<p>Because our fictive user &#8220;john&#8221; should only be allowed to edit a single textfield and not being able to add new/move/copy/delete a slot, we have disabled these attributes in the cms menu xml file. Now we need to create an administrator file. Create an xml file, copy and paste the content below and save it as &#8220;cms_menu_quickstart_admin.xml&#8221;:</p>
<pre class="brush: xml;">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;menu&gt;
&lt;menuitem label=&quot;File&quot;&gt;
&lt;menuitem label=&quot;Logout&quot; id=&quot;logoff&quot;/&gt;
&lt;/menuitem&gt;
&lt;menuitem label=&quot;Edit&quot;&gt;
&lt;menuitem label=&quot;Greeting Card&quot; contentSource=&quot;greeting_card&quot; slotSource=&quot;slot_layout_quickstart.xml&quot; hideContentVersionManager=&quot;1&quot; slotNew=&quot;1&quot; slotMove=&quot;1&quot; slotCopy=&quot;1&quot; slotLayout=&quot;1&quot; slotDelete=&quot;1&quot; bgColor=&quot;FFFFFF&quot;/&gt;
&lt;/menuitem&gt;
&lt;/menu&gt;
</pre>
<p>Now upload &#8220;cms_menu_quickstart_john.xml&#8221; and &#8220;cms_menu_quickstart_admin.xml&#8221; to the server into the folder &#8220;config&#8221; of your CMS installation.</p>
<p><strong>Step 7: Create the user account(s)</strong><br />
Create 2 user accounts, one for &#8220;John&#8221; and the other one for the fictive adminstrator of John, &#8220;Kevin&#8221;. Remember: Each user can have his own menubar. Open &#8220;config.php&#8221; in your Flash CMS installation and add the two users: first Kevin, for &#8220;cmsmenu&#8221; type &#8220;cms_menu_quickstart_admin.xml&#8221;. Then add &#8220;John&#8221;, cmsmenu = &#8220;cms_menu_quickstart_john.xml&#8221;.</p>
<h2><strong>That&#8217;s it! Now let&#8217;s try it out.</strong></h2>
<p><strong></strong>Login to the Flash CMS as the administrator &#8220;Kevin&#8221;:<br />
<a href="http://blog.flashcmsframework.com/wp-content/uploads/2009/09/flash-cms-admin-login.jpg"><img class="alignnone size-medium wp-image-743" title="flash-cms-admin-login" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/09/flash-cms-admin-login-300x95.jpg" alt="flash-cms-admin-login" width="300" height="95" /></a></p>
<p>In the menu bar, click on &#8220;edit&#8221;, than &#8220;greeting card&#8221;. We have to create the first slot. Do this by clicking on &#8220;Add new&#8221;:<br />
<img class="alignnone size-full wp-image-745" title="flash-cms-admin-edit" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/09/flash-cms-admin-edit.jpg" alt="flash-cms-admin-edit" width="444" height="156" /></p>
<p>A new slot is created with an empty textfield:<br />
<img class="alignnone size-full wp-image-746" title="flash-cms-admin-edit-slot-created" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/09/flash-cms-admin-edit-slot-created.jpg" alt="flash-cms-admin-edit-slot-created" width="444" height="137" /></p>
<p>Now logout: In the menu bar, click on &#8220;File&#8221;, then &#8220;Logout&#8221;:<br />
<img class="alignnone size-full wp-image-747" title="flash-cms-admin-logout" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/09/flash-cms-admin-logout.jpg" alt="flash-cms-admin-logout" width="444" height="137" /></p>
<p>Let&#8217;s see what it looks like for our client &#8220;John&#8221;. Log in now as &#8220;John&#8221;. In the menu bar click &#8220;edit&#8221;, then &#8220;Greeting card&#8221;. It should look like this:<br />
<img class="alignnone size-full wp-image-748" title="flash-cms-user-edit" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/09/flash-cms-user-edit.jpg" alt="flash-cms-user-edit" width="444" height="137" /><br />
See the difference? The <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash-cms-user-interface-overview#slot_navigator">Slot Navigator</a> and the <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash-cms-user-interface-overview#slot_menu">Slot Menu</a> are missing. That&#8217;s because we use different slot layout xml files for user John and for administrator Kevin. John should not be able to move/copy/delete slots etc. and therefor does not need to see the Slot Navigator and Slot Menu. Keep it as simple as possible for the client! <img src='http://blog.turtlebite.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Ok, lets enter some text now. Just lean back and watch the video:<br />
<span class="youtube">
<object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/FeIL4U2ztAE&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0?rel=1&amp;fmt=22" />
<param name="allowFullScreen" value="true" />
<embed wmode="transparent" src="http://www.youtube.com/v/FeIL4U2ztAE&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0?rel=1&amp;fmt=22" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355"></embed>
<param name="wmode" value="transparent" />
</object>
</span><p><a href="http://www.youtube.com/watch?v=FeIL4U2ztAE">www.youtube.com/watch?v=FeIL4U2ztAE</a></p></p>
<p><strong>Final step: Load the content of the CMS into the textfield of your FLA!</strong><br />
Open &#8220;quickstart.fla&#8221; and add this code in the first frame:</p>
<pre class="brush: php;">
// Imports
import net.kaegi.cms.LoadSlots;
import net.kaegi.events.LoadSlotsEvent;
// This info is used in loadSlots. _myfontX in loaded html text will be replaced by the proper fontname.
var fonts:Array = [];
fonts[0] = [&quot;_myfont1&quot;,&quot;Another&quot;];
fonts[1] = [&quot;_myfont2&quot;,&quot;ChickenScratch AOE&quot;];
fonts[2] = [&quot;_myfont3&quot;,&quot;hardcore_pen&quot;];
// Load the textfield
var loadSlots:LoadSlots = new LoadSlots(this,fonts);
// Link style for the textfields
var linkStyle:StyleSheet = new StyleSheet();
linkStyle.setStyle(&quot;a:link&quot;,{color:&quot;#990000&quot;, textDecoration:&quot;underline&quot;});
linkStyle.setStyle(&quot;a:hover&quot;,{color:&quot;#FF0000&quot;, textDecoration:&quot;none&quot;});
loadSlots.styleSheet = linkStyle;
// avoid the slots being drawn. For more info see http://www.flashcmsframework.com/docs/doku.php?id=flash-cms-case-studies#free
loadSlots.drawSlotsEnabled = false;
// hijack textfield events:
loadSlots.hijackTextfieldEvents = true;
loadSlots.setup(pathToCMS, &quot;slot_layout_quickstart.xml&quot;, &quot;greeting_card&quot;);
loadSlots.load();
// Events
loadSlots.addEventListener(LoadSlotsEvent.TF_LOADED, textfieldLoadedHandler,false,0,true);
// Hijacked Textfield Events:
function textfieldLoadedHandler(event:LoadSlotsEvent):void {
book.textbox.tf.styleSheet = linkStyle;
book.textbox.tf.htmlText = event.params.tf.htmlText;
book.textbox.tf.addEventListener(TextEvent.LINK, onLinkEvent,false,0,true);
}
</pre>
<p>Your final compiled SWF of the greeting card should look like this:<br />
<img class="alignnone size-full wp-image-754" title="flash-cms-final-greeting-card" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/09/flash-cms-final-greeting-card.jpg" alt="flash-cms-final-greeting-card" width="595" height="545" /></p>
<h2><strong>Conclusion</strong></h2>
<p><strong></strong>Of course there is much more to cover. I realised that I have highly underestimated the effort of making a good documentation and how time-consuming it would be. I have put years into this Flash CMS and there are just so many things to explain. But this tutorial should give you a good starting point to get into it. Once you have completed your first project with it I&#8217;m sure you will gain speed quickly.</p>
<p>The next tutorial will cover the handling of images. Stay tuned!<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-quick-start-tutorial-editing-text/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-quick-start-tutorial-editing-text/&amp;title=Flash+CMS+step+by+step+tutorial+%22editing+text%22" 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-quick-start-tutorial-editing-text/&amp;title=Flash+CMS+step+by+step+tutorial+%22editing+text%22" 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-quick-start-tutorial-editing-text/&amp;title=Flash+CMS+step+by+step+tutorial+%22editing+text%22&amp;desc=The%20first%20step-by-step%20quick%20start%20tutorial%20is%20finished%21%20It%20covers%20the%20basics%20and%20will%20guide%20you%20from%20the%20installation%20of%20the%20Flash%20CMS%20to%20the%20integration%20of%20it%20in%20your%20flash%20website%20%28or%20maybe%20a%20flebsite%3F%20Well%2C%20that%27s%20another%20story...%20%3A-%29%29.%20I%20have%20set%20up%20a%20FLA%20file%20that%20shows%20kind%20of%20a%20greeting%20card" 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-quick-start-tutorial-editing-text/&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-quick-start-tutorial-editing-text/&amp;bm_description=Flash+CMS+step+by+step+tutorial+%22editing+text%22&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-quick-start-tutorial-editing-text/&amp;title=Flash+CMS+step+by+step+tutorial+%22editing+text%22" 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-quick-start-tutorial-editing-text/&amp;title=Flash+CMS+step+by+step+tutorial+%22editing+text%22" 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-quick-start-tutorial-editing-text/&amp;title=Flash+CMS+step+by+step+tutorial+%22editing+text%22" 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-quick-start-tutorial-editing-text/" 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+step+by+step+tutorial+%22editing+text%22+-+http://b2l.me/afrdu3&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-quick-start-tutorial-editing-text/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flash CMS Case Studies</title>
		<link>http://blog.turtlebite.com/flash-cms-case-studies/</link>
		<comments>http://blog.turtlebite.com/flash-cms-case-studies/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 14:50:07 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash CMS]]></category>
		<category><![CDATA[as3 cms]]></category>

		<guid isPermaLink="false">http://blog.flashcmsframework.com/?p=702</guid>
		<description><![CDATA[At the moment I am working on a quick start step-by-step tutorial for the Flash CMS. While doing that, I felt the need of explaining the philosophy of the Flash CMS in more detail. There are 7 basic situations to cover when you are using the Flash CMS. Have a look at the SWF below, [...]]]></description>
			<content:encoded><![CDATA[<p>At the moment I am working on a quick start step-by-step tutorial for the Flash CMS. While doing that, I felt the need of explaining the philosophy of the Flash CMS in more detail. There are 7 basic situations to cover when you are using the Flash CMS. Have a look at the SWF below, navigate through the different case studies. Be sure to turn on the checkbox &#8220;show Slots&#8221; to see how the content is organized in the so-called &#8220;Slots&#8221;, a core concept of the Flash CMS. I have <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash-cms-case-studies">documented this thoroughly here</a>, check it out for more info!<span id="more-702"></span></p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_flash_cms_case_studies_1820983631"
			class="flashmovie"
			width="595"
			height="550">
	<param name="movie" value="http://blog.flashcmsframework.com/wp-content/data/flash_cms_case_studies.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://blog.flashcmsframework.com/wp-content/data/flash_cms_case_studies.swf"
			name="fm_flash_cms_case_studies_1820983631"
			width="595"
			height="550">
	<!--<![endif]-->
		
<p><img class="alignnone size-full wp-image-705" title="flash-cms-case-studies-preview" src="http://blog.flashcmsframework.com/wp-content/uploads/2009/09/flash-cms-case-studies-preview.jpg" alt="flash-cms-case-studies-preview" width="190" height="140" /></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p><a href="http://www.flashcmsframework.com/docs/doku.php?id=flash-cms-case-studies">Visit the documentation here.</a></p>
<p>I will finish the step-by-step tutorial within the next view days, so 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-case-studies/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-case-studies/&amp;title=Flash+CMS+Case+Studies" 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-case-studies/&amp;title=Flash+CMS+Case+Studies" 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-case-studies/&amp;title=Flash+CMS+Case+Studies&amp;desc=At%20the%20moment%20I%20am%20working%20on%20a%20quick%20start%20step-by-step%20tutorial%20for%20the%20Flash%20CMS.%20While%20doing%20that%2C%20I%20felt%20the%20need%20of%20explaining%20the%20philosophy%20of%20the%20Flash%20CMS%20in%20more%20detail.%20There%20are%207%20basic%20situations%20to%20cover%20when%20you%20are%20using%20the%20Flash%20CMS.%20Have%20a%20look%20at%20the%20SWF%20below%2C%20navigate%20through%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-case-studies/&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-case-studies/&amp;bm_description=Flash+CMS+Case+Studies&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-case-studies/&amp;title=Flash+CMS+Case+Studies" 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-case-studies/&amp;title=Flash+CMS+Case+Studies" 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-case-studies/&amp;title=Flash+CMS+Case+Studies" 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-case-studies/" 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+Case+Studies+-+http://b2l.me/af8kpj&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-case-studies/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to use your own fonts and textstyles in the Flash CMS</title>
		<link>http://blog.turtlebite.com/how-to-use-your-own-fonts-and-textstyles-in-the-flash-cms/</link>
		<comments>http://blog.turtlebite.com/how-to-use-your-own-fonts-and-textstyles-in-the-flash-cms/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 19:16:22 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash CMS]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[embed fonts]]></category>
		<category><![CDATA[textstyles]]></category>

		<guid isPermaLink="false">http://www.flashcmsframework.com/?p=481</guid>
		<description><![CDATA[This first tutorial will cover a very basic requirement of the Flash CMS: defining different fonts and font styles. I assume you have downloaded and installed the Flash CMS and everything works fine so far. You&#8217;ve tested and played around with it and now want to take the next steps. Step 1: Embedding the fonts [...]]]></description>
			<content:encoded><![CDATA[<p>This first tutorial will cover a very basic requirement of the Flash CMS: defining different fonts and font styles.</p>
<p><img class="alignnone size-full wp-image-493" title="ownfonts" src="http://www.flashcmsframework.com/wp-content/uploads/ownfonts.jpg" alt="ownfonts" width="673" height="397" /></p>
<p><span id="more-481"></span></p>
<p>I assume you have <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash_cms_installation">downloaded and installed</a> the Flash CMS and everything works fine so far. You&#8217;ve tested and played around with it and now want to take the next steps.</p>
<p><strong>Step 1: Embedding the fonts</strong></p>
<ol>
<li>Open &#8220;fonts.fla&#8221; in Flash.</li>
<li>Open the library: you see 2 fonts already defined: &#8220;_myfont1&#8243; and &#8220;_myfont2&#8243;. You are going to owerwrite these 2 and create a third, new font.</li>
<li>In the library, create a new font. Name it &#8220;_myfont3&#8243;. (Note: The CMS will refer to these names. You can define up to 15 different fonts: &#8220;_myfont1&#8243; to &#8220;_myfont15&#8243;).</li>
<li>Open &#8220;_myfont1&#8243; in the library and choose any font you like. Be sure your export settings are the same as in the screenshot. Repeat these steps for &#8220;_myfont2&#8243; and &#8220;_myfont3&#8243; with different fonts.</li>
</ol>
<p><strong><img class="alignnone size-full wp-image-483" title="font_export" src="http://www.flashcmsframework.com/wp-content/uploads/font_export.jpg" alt="font_export" width="560" height="490" /></strong></p>
<p><strong>Step 2: Defining textstyles</strong></p>
<ol>
<li> Now open frame 1 (&#8220;setup&#8221;) in the actions panel to edit it.</li>
<li>At the top you can see the styles for hyperlinks. Change it if you like (different colours and decorations).</li>
<li>Next, you can find an array &#8220;_level0.testFontStyle&#8221;. Leave the name for now. There are 3 styles defined: &#8220;Body&#8221;, &#8220;Body bold&#8221; and &#8220;Headline&#8221;. These are the names the user sees and can choose from in the CMS.</li>
</ol>
<p>Now, type in the fontnames you have embedded. I have used these fonts: &#8220;Bumblebee&#8221; (_myfont1), &#8220;JanicesHand&#8221; (_myfont2) and &#8220;Gadget&#8221; (_myfont3). <strong> </strong></p>
<p>Here the code after all changes:</p>
<pre class="brush: php;">
_level0.testLinkStyle = new TextField.StyleSheet();
_level0.testLinkStyle.setStyle("a:link",{color:"#24A831", textDecoration:"underline"});
_level0.testLinkStyle.setStyle("a:hover",{color:"#177120", textDecoration:"none"});
// --------------------------------------------
_level0.testFontStyle = [];
// --------------------------------------------
f = {};
f.styleName = "Body";
f.font = "_myfont3";
f.size = 12;
f.color = 0x000000;
_level0.testFontStyle.push(f);
// --------------------------------------------
f = {};
f.styleName = "Handwriting in red";
f.font = "_myfont2";
f.size = 15;
f.color = 0x990000;
_level0.testFontStyle.push(f);
// --------------------------------------------
f = {};
f.styleName = "bigger Handwr. in blue";
f.font = "_myfont2";
f.size = 20;
f.color = 0x003399;
_level0.testFontStyle.push(f);
// --------------------------------------------
f = {};
f.styleName = "HUGE Handwr.in pink";
f.font = "_myfont2";
f.size = 45;
f.color = 0xD906F0;
_level0.testFontStyle.push(f);
// --------------------------------------------
f = {};
f.styleName = "The bubble Bumblebees";
f.font = "_myfont1";
f.size = 22;
f.color = 0x003333;
_level0.testFontStyle.push(f);
</pre>
<p><strong>Step 3: Export fonts.swf and upload it to the server</strong></p>
<ol>
<li>Export fonts.swf for (ActionScript 2!) and upload it into the folder &#8220;login&#8221; on your server.</li>
</ol>
<p>Login the CMS and test it. It should look similar to this (of course with your chosen fonts).</p>
<p><img class="alignnone size-full wp-image-491" title="texteditor" src="http://www.flashcmsframework.com/wp-content/uploads/texteditor.jpg" alt="texteditor" width="536" height="308" /><br />
<strong>Step 4: Create the FLA that loads this content</strong></p>
<p>First, we will create the &#8220;fonts_as3.swf&#8221;. In this SWF the fonts are embedded for global use all over your website. Create 3 fonts in the library with the settings as shown in this screenshot below.</p>
<p><img class="alignnone size-full wp-image-506" title="fonts_as3" src="http://www.flashcmsframework.com/wp-content/uploads/fonts_as3.jpg" alt="fonts_as3" width="546" height="429" /></p>
<p><strong>Step 6: Register the fonts in AS3</strong></p>
<pre class="brush: php;">

Font.registerFont(_myfont1);
Font.registerFont(_myfont2);
Font.registerFont(_myfont3);

import net.kaegi.utils.VarCentral;
var fonts:Array = [];
fonts[0] = ["_myfont1","Bumblebee"];
fonts[1] = ["_myfont2","JanicesHand Regular"];
fonts[2] = ["_myfont3","Gadget"];
VarCentral.getInstance().vars.fontsForCMS = fonts;
</pre>
<p>In the code above you can see that I use a little class, &#8220;VarCentral&#8221;. This comes in very handy if you want to store any variables in a central place because you may need them somewhere else in your site. It&#8217;s up to you to also use this or do the handling of global vars in your preferred way. The array &#8220;fonts&#8221; will later be used to replace all occurences of &#8220;_myfontX&#8221; in the html textfields of the CMS with the corresponding real fonts. This method is very useful, because you are able to change fonts without disturbing the saved html text.</p>
<p><strong>Step 7: Create the SWF that loads the CMS slots</strong></p>
<p><a href="http://www.flashcmsframework.com/downloads/turtlebite_flash_cms_example_embed_fonts.zip">Please download this FLAs</a>. I have commented everything so it should be self-explanatory. It also contains the font_as3.fla. Note that you may have to adjust it to your own fonts.</p>
<p>Below just a reminder that the Flash CMS backend is written in AS2 and your website is written in AS3:</p>
<p><img class="alignnone size-full wp-image-509" title="fonts_as2_as3.001" src="http://www.flashcmsframework.com/wp-content/uploads/fonts_as2_as3.001.jpg" alt="fonts_as2_as3.001" width="536" height="242" /></p>
<p>.</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/how-to-use-your-own-fonts-and-textstyles-in-the-flash-cms/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/how-to-use-your-own-fonts-and-textstyles-in-the-flash-cms/&amp;title=How+to+use+your+own+fonts+and+textstyles+in+the+Flash+CMS" 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/how-to-use-your-own-fonts-and-textstyles-in-the-flash-cms/&amp;title=How+to+use+your+own+fonts+and+textstyles+in+the+Flash+CMS" 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/how-to-use-your-own-fonts-and-textstyles-in-the-flash-cms/&amp;title=How+to+use+your+own+fonts+and+textstyles+in+the+Flash+CMS&amp;desc=This%20first%20tutorial%20will%20cover%20a%20very%20basic%20requirement%20of%20the%20Flash%20CMS%3A%20defining%20different%20fonts%20and%20font%20styles.%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0AI%20assume%20you%20have%20downloaded%20and%20installed%20the%20Flash%20CMS%20and%20everything%20works%20fine%20so%20far.%20You%27ve%20tested%20and%20played%20around%20with%20it%20and%20now%20want%20to%20take%20the%20next%20steps.%0D%0A%0D%0ASt" 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/how-to-use-your-own-fonts-and-textstyles-in-the-flash-cms/&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/how-to-use-your-own-fonts-and-textstyles-in-the-flash-cms/&amp;bm_description=How+to+use+your+own+fonts+and+textstyles+in+the+Flash+CMS&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/how-to-use-your-own-fonts-and-textstyles-in-the-flash-cms/&amp;title=How+to+use+your+own+fonts+and+textstyles+in+the+Flash+CMS" 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/how-to-use-your-own-fonts-and-textstyles-in-the-flash-cms/&amp;title=How+to+use+your+own+fonts+and+textstyles+in+the+Flash+CMS" 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/how-to-use-your-own-fonts-and-textstyles-in-the-flash-cms/&amp;title=How+to+use+your+own+fonts+and+textstyles+in+the+Flash+CMS" 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/how-to-use-your-own-fonts-and-textstyles-in-the-flash-cms/" 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=How+to+use+your+own+fonts+and+textstyles+in+the+Flash+CMS+-+http://b2l.me/afrdnn&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/how-to-use-your-own-fonts-and-textstyles-in-the-flash-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash CMS version 4.67: Introducing the ServiceCenter</title>
		<link>http://blog.turtlebite.com/flash-cms-version-4-67-introducing-the-servicecenter/</link>
		<comments>http://blog.turtlebite.com/flash-cms-version-4-67-introducing-the-servicecenter/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 14:51:22 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash CMS]]></category>
		<category><![CDATA[as3 cms]]></category>
		<category><![CDATA[cms admin]]></category>
		<category><![CDATA[service center]]></category>

		<guid isPermaLink="false">http://www.flashcmsframework.com/?p=474</guid>
		<description><![CDATA[Update 06/21/2010 I have removed the servicecenter alltogether because there were too many problems reported by different users on different servers ( especially concerning file permissions). But I have moved everything into one config.php file so in fact it&#8217;s not difficult at all to install the CMS without the servicecenter. Just follow the installation steps. [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update 06/21/2010</strong><br />
I have removed the servicecenter alltogether because there were too many problems reported by different users on different servers ( especially concerning file permissions). But I have moved everything into one config.php file so in fact it&#8217;s not difficult at all to install the CMS without the servicecenter. Just <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash_cms_installation">follow the installation steps</a>.</p>
<p>&#8212;-</p>
<p>Done! I have finished the service center, and have rewritten the <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash_cms_installation">installation steps</a>. There are not many anymore&#8230; <img src='http://blog.turtlebite.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
Also I had to remove the download of the demo site, because I need to do some adjustements to it due to the introduction of the service center. Anyway, as I&#8217;ve written in my previous post, the demo site was far to complex for someone to start with the Flash CMS, so I will setup some examples (yes I know, promised for a loooong time&#8230;), starting with very simple ones and going deeper one by one. The first example is ready and can be <a href="http://www.flashcmsframework.com/docs/doku.php?id=flash-cms-download">downloaded</a>. I will document it here as soon as I have time&#8230;<span id="more-474"></span></p>
<p><img class="alignnone size-full wp-image-475" title="flash-cms-servicecenter-1" src="http://www.flashcmsframework.com/wp-content/uploads/flash-cms-servicecenter-1.jpg" alt="flash-cms-servicecenter-1" width="536" height="348" /></p>
<p>OK, back to work&#8230;</p>
<p>.</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-67-introducing-the-servicecenter/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-67-introducing-the-servicecenter/&amp;title=Flash+CMS+version+4.67%3A+Introducing+the+ServiceCenter" 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-67-introducing-the-servicecenter/&amp;title=Flash+CMS+version+4.67%3A+Introducing+the+ServiceCenter" 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-67-introducing-the-servicecenter/&amp;title=Flash+CMS+version+4.67%3A+Introducing+the+ServiceCenter&amp;desc=Update%2006%2F21%2F2010%0D%0AI%20have%20removed%20the%20servicecenter%20alltogether%20because%20there%20were%20too%20many%20problems%20reported%20by%20different%20users%20on%20different%20servers%20%28%20especially%20concerning%20file%20permissions%29.%20But%20I%20have%20moved%20everything%20into%20one%20config.php%20file%20so%20in%20fact%20it%27s%20not%20difficult%20at%20all%20to%20install%20the%20CM" 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-67-introducing-the-servicecenter/&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-67-introducing-the-servicecenter/&amp;bm_description=Flash+CMS+version+4.67%3A+Introducing+the+ServiceCenter&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-67-introducing-the-servicecenter/&amp;title=Flash+CMS+version+4.67%3A+Introducing+the+ServiceCenter" 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-67-introducing-the-servicecenter/&amp;title=Flash+CMS+version+4.67%3A+Introducing+the+ServiceCenter" 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-67-introducing-the-servicecenter/&amp;title=Flash+CMS+version+4.67%3A+Introducing+the+ServiceCenter" 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-67-introducing-the-servicecenter/" 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.67%3A+Introducing+the+ServiceCenter+-+http://b2l.me/aftwr8&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-67-introducing-the-servicecenter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where are the promised Flash CMS tutorials?</title>
		<link>http://blog.turtlebite.com/where-are-the-promised-flash-cms-tutorials/</link>
		<comments>http://blog.turtlebite.com/where-are-the-promised-flash-cms-tutorials/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 12:07:47 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash CMS]]></category>

		<guid isPermaLink="false">http://www.flashcmsframework.com/?p=447</guid>
		<description><![CDATA[After some time working with the CMS and some constructive feedback from you I have realized that there is a huge gap for new users to quickly get into the CMS, especially when it comes to using it in your own websites. The installation of the demosite is not the problem, but then it gets [...]]]></description>
			<content:encoded><![CDATA[<p>After some time working with the CMS and some constructive feedback from you I have realized that there is a huge gap for new users to quickly get into the CMS, especially when it comes to using it in your own websites. The installation of the demosite is not the problem, but then it gets tricky to adapt it to another page.<span id="more-447"></span></p>
<p>I know I promised a quick start tutorial. In fact, I&#8217;ve started with a simple example that shows how you can connect a textfield of your website to the Flash CMS. But there are still too many questions that need to be answered so I have decided to programm something first: the Turtlebite Flash CMS ServiceCenter. With this, you can configurate and setup the CMS in a central place, and you dont&#8217;t have to edit a single PHP file anymore. You even don&#8217;t have to use phpMyAdmin or another MySQL tool to edit, delete or add CMS users in the tables! <img src='http://blog.turtlebite.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  By using this, it will be the first step into the direction of my final goal: To make the installation and setup as painless and easy as possible.</p>
<p>So, here is a quick glance:</p>
<p><span style="color: #333333;"><strong>Configuration</strong></span></p>
<p><img class="alignnone size-full wp-image-448" title="flash_cms_servicecenter_1" src="http://www.flashcmsframework.com/wp-content/uploads/flash_cms_servicecenter_1.jpg" alt="flash_cms_servicecenter_1" width="595" height="487" /><br />
On this page a systemcheck is performed, telling you if your server meets the requirements. You enter your database connection setup, hit ENTER and the corresponding php file (db_connect.php) will automatically be created for you. Also, you set the browser title, welcome text, background color settings etc., and it will create the php file for you (config.php).<!--more--></p>
<p><span style="color: #000000;"><strong>CMS Users</strong></span></p>
<p><strong><img class="alignnone size-full wp-image-449" title="flash_cms_servicecenter_2" src="http://www.flashcmsframework.com/wp-content/uploads/flash_cms_servicecenter_2.jpg" alt="flash_cms_servicecenter_2" width="595" height="270" /><br />
</strong></p>
<p>Here you can edit, add or delete users of the Flash CMS. No need anymore to use phpMyAdmin or any other MySQL editor tool!</p>
<p><strong><span style="color: #333333;">View the CMS Database</span><br />
</strong></p>
<p><img class="alignnone size-full wp-image-450" title="flash_cms_servicecenter_3" src="http://www.flashcmsframework.com/wp-content/uploads/flash_cms_servicecenter_3.jpg" alt="flash_cms_servicecenter_3" width="595" height="532" /></p>
<p>On this page you can view the content of the Flash CMS tables. This is not the place to edit anything, but you can view and, more important, delete records. You can only delete records from &#8220;turtlebite_index&#8221;. The records of &#8220;turtlebite_slot&#8221; and &#8220;turtlebite_content&#8221; will be removed accordingly. Remember the relationship: Every index record has any number of slots, and every slot has any number of content records. So, this is a good place to explore the tables to see if they contain anything, but also to cleanup and empty a CMS installation.</p>
<p>I&#8217;m still working on the ServiceCenter, I hope I finish soon so I can provide a much easier start for the Turtlebite Flash CMS, and also a simple long awaited quick start tutorial!</p>
<p>Stay tuned!</p>
<p>.</p>
<p><strong> </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/where-are-the-promised-flash-cms-tutorials/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/where-are-the-promised-flash-cms-tutorials/&amp;title=Where+are+the+promised+Flash+CMS+tutorials%3F" 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/where-are-the-promised-flash-cms-tutorials/&amp;title=Where+are+the+promised+Flash+CMS+tutorials%3F" 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/where-are-the-promised-flash-cms-tutorials/&amp;title=Where+are+the+promised+Flash+CMS+tutorials%3F&amp;desc=After%20some%20time%20working%20with%20the%20CMS%20and%20some%20constructive%20feedback%20from%20you%20I%20have%20realized%20that%20there%20is%20a%20huge%20gap%20for%20new%20users%20to%20quickly%20get%20into%20the%20CMS%2C%20especially%20when%20it%20comes%20to%20using%20it%20in%20your%20own%20websites.%20The%20installation%20of%20the%20demosite%20is%20not%20the%20problem%2C%20but%20then%20it%20gets%20tricky%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/where-are-the-promised-flash-cms-tutorials/&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/where-are-the-promised-flash-cms-tutorials/&amp;bm_description=Where+are+the+promised+Flash+CMS+tutorials%3F&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/where-are-the-promised-flash-cms-tutorials/&amp;title=Where+are+the+promised+Flash+CMS+tutorials%3F" 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/where-are-the-promised-flash-cms-tutorials/&amp;title=Where+are+the+promised+Flash+CMS+tutorials%3F" 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/where-are-the-promised-flash-cms-tutorials/&amp;title=Where+are+the+promised+Flash+CMS+tutorials%3F" 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/where-are-the-promised-flash-cms-tutorials/" 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=Where+are+the+promised+Flash+CMS+tutorials%3F+-+http://b2l.me/afqr25&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/where-are-the-promised-flash-cms-tutorials/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flash CMS v4.66 released!</title>
		<link>http://blog.turtlebite.com/flash-cms-v466-released/</link>
		<comments>http://blog.turtlebite.com/flash-cms-v466-released/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 13:47:38 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash CMS]]></category>
		<category><![CDATA[as3 cms]]></category>

		<guid isPermaLink="false">http://www.flashcmsframework.com/?p=385</guid>
		<description><![CDATA[Today is a very special day for me: I&#8217;m releasing my Flash CMS after years of development and refinements. At the moment and in the next view weeks I will be working on the documentations and tutorials. But I decided it is time to release the CMS, as it is finished and working. The last [...]]]></description>
			<content:encoded><![CDATA[<p>Today is a very special day for me: I&#8217;m releasing my Flash CMS after years of development and refinements. <img src='http://blog.turtlebite.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  At the moment and in the next view weeks I will be working on the documentations and tutorials. But I decided it is time to release the CMS, as it is finished and working. The last view weeks I concentrated on setting up a <a href="http://www.flashcmsframework.com/demosite/">demosite</a> that covers all aspects of the Flash CMS. The complete source is also in the zip when you download the CMS framework, so it is a good point to start exploring. Because there is still a lot I will have to explain and document, you can now <a href="http://www.flashcmsframework.com/get-flash-cms/">download and play around with the framework</a>. Maybe with some more input I know which parts are more important to cover in a tutorial than others. Just give me your feedback!<span id="more-385"></span></p>
<p>Have a look at <a href="http://www.flashcmsframework.com/downloads/flash_cms_docu_steps.pdf">this PDF</a>, it shows the concept of the Flash CMS:</p>
<p><a href="http://www.flashcmsframework.com/downloads/flash_cms_docu_steps.pdf"><img class="alignnone size-full wp-image-386" title="overview_1" src="http://www.flashcmsframework.com/wp-content/uploads/overview_1.jpg" alt="overview_1" width="595" height="446" /></a></p>
<p>Don&#8217;t get scared off by <a href="http://www.flashcmsframework.com/downloads/turtlebite_technical_overview.pdf">this PDF</a>, I just try to visualize where the XML/PHP files etc. appear in the CMS:</p>
<p><a href="http://www.flashcmsframework.com/downloads/turtlebite_technical_overview.pdf"><img class="alignnone size-full wp-image-387" title="turtlebite_technical_overview" src="http://www.flashcmsframework.com/wp-content/uploads/turtlebite_technical_overview.jpg" alt="turtlebite_technical_overview" width="595" height="423" /></a></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-v466-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-v466-released/&amp;title=Flash+CMS+v4.66+released%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/flash-cms-v466-released/&amp;title=Flash+CMS+v4.66+released%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/flash-cms-v466-released/&amp;title=Flash+CMS+v4.66+released%21&amp;desc=Today%20is%20a%20very%20special%20day%20for%20me%3A%20I%27m%20releasing%20my%20Flash%20CMS%20after%20years%20of%20development%20and%20refinements.%20%3A-%29%20At%20the%20moment%20and%20in%20the%20next%20view%20weeks%20I%20will%20be%20working%20on%20the%20documentations%20and%20tutorials.%20But%20I%20decided%20it%20is%20time%20to%20release%20the%20CMS%2C%20as%20it%20is%20finished%20and%20working.%20The%20last%20view%20wee" 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-v466-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-v466-released/&amp;bm_description=Flash+CMS+v4.66+released%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/flash-cms-v466-released/&amp;title=Flash+CMS+v4.66+released%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/flash-cms-v466-released/&amp;title=Flash+CMS+v4.66+released%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/flash-cms-v466-released/&amp;title=Flash+CMS+v4.66+released%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/flash-cms-v466-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+v4.66+released%21+-+http://b2l.me/afujke&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-v466-released/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to use the Flash CMS for a Picture Gallery</title>
		<link>http://blog.turtlebite.com/how-to-use-the-flash-cms-for-a-picture-gallery/</link>
		<comments>http://blog.turtlebite.com/how-to-use-the-flash-cms-for-a-picture-gallery/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 17:49:48 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash CMS]]></category>
		<category><![CDATA[as3 cms]]></category>
		<category><![CDATA[flash gallery]]></category>

		<guid isPermaLink="false">http://www.flashcmsframework.com/?p=307</guid>
		<description><![CDATA[I&#8217;ve produced a little video showing how the CMS can easely be used to feed a gallery. Normally, when the slot data is loaded from the DB, the slots and there contents are placed at there positions. That&#8217;s fine if you want it as it is. In the case of this gallery, I want the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve produced a little video showing how the CMS can easely be used to feed a gallery. Normally, when the slot data is loaded from the DB, the slots and there contents are placed at there positions. <span id="more-307"></span>That&#8217;s fine if you want it as it is. In the case of this gallery, I want the CMS user to be able to upload pictures, sort them and enter some text for each picture. Later on the site, I hijack the events when the slots are loaded, and do what I want with the data that is returned. In this case, build a gallery.</p>
<p>BTW, I will release this gallery class for free in the near future. <img src='http://blog.turtlebite.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><span class="youtube">
<object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/ETmwERvRSec&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0?rel=1&amp;fmt=22" />
<param name="allowFullScreen" value="true" />
<embed wmode="transparent" src="http://www.youtube.com/v/ETmwERvRSec&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0?rel=1&amp;fmt=22" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355"></embed>
<param name="wmode" value="transparent" />
</object>
</span><p><a href="http://www.youtube.com/watch?v=ETmwERvRSec">www.youtube.com/watch?v=ETmwERvRSec</a></p></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/how-to-use-the-flash-cms-for-a-picture-gallery/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/how-to-use-the-flash-cms-for-a-picture-gallery/&amp;title=How+to+use+the+Flash+CMS+for+a+Picture+Gallery" 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/how-to-use-the-flash-cms-for-a-picture-gallery/&amp;title=How+to+use+the+Flash+CMS+for+a+Picture+Gallery" 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/how-to-use-the-flash-cms-for-a-picture-gallery/&amp;title=How+to+use+the+Flash+CMS+for+a+Picture+Gallery&amp;desc=I%27ve%20produced%20a%20little%20video%20showing%20how%20the%20CMS%20can%20easely%20be%20used%20to%20feed%20a%20gallery.%20Normally%2C%20when%20the%20slot%20data%20is%20loaded%20from%20the%20DB%2C%20the%20slots%20and%20there%20contents%20are%20placed%20at%20there%20positions.%20That%27s%20fine%20if%20you%20want%20it%20as%20it%20is.%20In%20the%20case%20of%20this%20gallery%2C%20I%20want%20the%20CMS%20user%20to%20be%20able%20to%20u" 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/how-to-use-the-flash-cms-for-a-picture-gallery/&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/how-to-use-the-flash-cms-for-a-picture-gallery/&amp;bm_description=How+to+use+the+Flash+CMS+for+a+Picture+Gallery&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/how-to-use-the-flash-cms-for-a-picture-gallery/&amp;title=How+to+use+the+Flash+CMS+for+a+Picture+Gallery" 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/how-to-use-the-flash-cms-for-a-picture-gallery/&amp;title=How+to+use+the+Flash+CMS+for+a+Picture+Gallery" 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/how-to-use-the-flash-cms-for-a-picture-gallery/&amp;title=How+to+use+the+Flash+CMS+for+a+Picture+Gallery" 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/how-to-use-the-flash-cms-for-a-picture-gallery/" 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=How+to+use+the+Flash+CMS+for+a+Picture+Gallery+-+http://b2l.me/afujj6&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/how-to-use-the-flash-cms-for-a-picture-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash CMS: a quick walk-through</title>
		<link>http://blog.turtlebite.com/flash-cms-a-quick-walk-through/</link>
		<comments>http://blog.turtlebite.com/flash-cms-a-quick-walk-through/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 13:26:41 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Flash CMS]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[Fleb Framework]]></category>

		<guid isPermaLink="false">http://www.flashcmsframework.com/?p=295</guid>
		<description><![CDATA[It&#8217;s been a while again, times goes by like crazy&#8230; Well, I&#8217;ve done the english translation and I&#8217;m in the middle of setting up a complete demosite for the Turtlebite Flash CMS, where I will demonstrate all aspects of the Flash CMS. This demosite will be downloadable as well, so it will be much easier [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while again, times goes by like crazy&#8230; Well, I&#8217;ve done the english translation and I&#8217;m in the middle of setting up a complete demosite for the Turtlebite Flash CMS, where I will demonstrate all aspects of the Flash CMS. This demosite will be downloadable as well, so it will be much easier to get into the CMS by working through it.</p>
<p>I have created some pictures of the CMS when logged in. In these screenshots I gave everything a name. I will post more infos as time comes. And I will set up a structured documentation <a href="http://www.flashcmsframework.com/docs">here</a>.</p>

<div class="ngg-galleryoverview" id="ngg-gallery-2-295">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://blog.turtlebite.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=2&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-21" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/flash-cms-loginscreen.jpg" title=" " class="shutterset_set_2" >
								<img title="flash-cms-loginscreen" alt="flash-cms-loginscreen" src="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/thumbs/thumbs_flash-cms-loginscreen.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-29" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/turtlebite-flash-cms.jpg" title=" " class="shutterset_set_2" >
								<img title="turtlebite-flash-cms" alt="turtlebite-flash-cms" src="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/thumbs/thumbs_turtlebite-flash-cms.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-22" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/flash-cms-menubar.jpg" title=" " class="shutterset_set_2" >
								<img title="flash-cms-menubar" alt="flash-cms-menubar" src="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/thumbs/thumbs_flash-cms-menubar.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-28" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/flash-cms-slots.jpg" title=" " class="shutterset_set_2" >
								<img title="flash-cms-slots" alt="flash-cms-slots" src="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/thumbs/thumbs_flash-cms-slots.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-27" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/flash-cms-slotmenu.jpg" title=" " class="shutterset_set_2" >
								<img title="flash-cms-slotmenu" alt="flash-cms-slotmenu" src="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/thumbs/thumbs_flash-cms-slotmenu.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-26" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/flash-cms-slot-navigator.jpg" title=" " class="shutterset_set_2" >
								<img title="flash-cms-slot-navigator" alt="flash-cms-slot-navigator" src="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/thumbs/thumbs_flash-cms-slot-navigator.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-20" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/flash-cms-content-version-manager.jpg" title=" " class="shutterset_set_2" >
								<img title="flash-cms-content-version-manager" alt="flash-cms-content-version-manager" src="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/thumbs/thumbs_flash-cms-content-version-manager.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-24" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/flash-cms-picture-selector.jpg" title=" " class="shutterset_set_2" >
								<img title="flash-cms-picture-selector" alt="flash-cms-picture-selector" src="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/thumbs/thumbs_flash-cms-picture-selector.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-23" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/flash-cms-picture-link.jpg" title=" " class="shutterset_set_2" >
								<img title="flash-cms-picture-link" alt="flash-cms-picture-link" src="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/thumbs/thumbs_flash-cms-picture-link.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-25" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/flash-cms-rich-text-editor.jpg" title=" " class="shutterset_set_2" >
								<img title="flash-cms-rich-text-editor" alt="flash-cms-rich-text-editor" src="http://blog.turtlebite.com/wp-content/gallery/flash-cms-name-elements/thumbs/thumbs_flash-cms-rich-text-editor.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p>So, again: Thanks for the patience and stay tuned!<br />
Christian</p>
<p>.</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-a-quick-walk-through/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-a-quick-walk-through/&amp;title=Flash+CMS%3A+a+quick+walk-through" 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-a-quick-walk-through/&amp;title=Flash+CMS%3A+a+quick+walk-through" 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-a-quick-walk-through/&amp;title=Flash+CMS%3A+a+quick+walk-through&amp;desc=It%27s%20been%20a%20while%20again%2C%20times%20goes%20by%20like%20crazy...%20Well%2C%20I%27ve%20done%20the%20english%20translation%20and%20I%27m%20in%20the%20middle%20of%20setting%20up%20a%20complete%20demosite%20for%20the%20Turtlebite%20Flash%20CMS%2C%20where%20I%20will%20demonstrate%20all%20aspects%20of%20the%20Flash%20CMS.%20This%20demosite%20will%20be%20downloadable%20as%20well%2C%20so%20it%20will%20be%20much%20eas" 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-a-quick-walk-through/&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-a-quick-walk-through/&amp;bm_description=Flash+CMS%3A+a+quick+walk-through&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-a-quick-walk-through/&amp;title=Flash+CMS%3A+a+quick+walk-through" 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-a-quick-walk-through/&amp;title=Flash+CMS%3A+a+quick+walk-through" 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-a-quick-walk-through/&amp;title=Flash+CMS%3A+a+quick+walk-through" 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-a-quick-walk-through/" 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%3A+a+quick+walk-through+-+http://b2l.me/afra5m&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-a-quick-walk-through/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
