<?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>Fancy CMS &#187; Tutorials</title>
	<atom:link href="http://fancycms.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://fancycms.com</link>
	<description>Flash CMS</description>
	<lastBuildDate>Sun, 11 Mar 2012 10:13:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The index file of my flash CMS template does not open.</title>
		<link>http://fancycms.com/tutorials/the-index-file-of-my-flash-cms-template-does-not-open/</link>
		<comments>http://fancycms.com/tutorials/the-index-file-of-my-flash-cms-template-does-not-open/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 12:19:26 +0000</pubDate>
		<dc:creator>FancyCMS</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://fancycms.com/?p=402</guid>
		<description><![CDATA[We have received some complaints that the index file of the music band flash CMS template is not opening on the local PC. There&#8217;s actually no need to panic, as the solution is quite simple. The error is being caused by the settings of your Adobe Flash Player. To allow the flash player run our [...]]]></description>
			<content:encoded><![CDATA[<p>We have received some complaints that the index file of the music band <a href="http://fancycms.com/free-flash-cms/">flash CMS template</a> is not opening on the local PC.<br />
There&#8217;s actually no need to panic, as the solution is quite simple. The error is being caused by the settings of your <strong>Adobe Flash Player</strong>.</p>
<p>To allow the flash player run our cms template go to <a href="http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04a.html"><strong>Adobe Settings Manager</strong></a> and do the following:</p>
<p><center><img src="http://www.flashdevelopment24.com/help/images/screens/settings_manager.png" alt="Adobe" /></center></p>
<p>Set the radio button to <strong>Always Allow</strong> mode.<br />
Click on the <strong>&#8220;Edit Locations&#8230;&#8221;</strong> and add a FULL path to the index page. Which will look like this:<br />
 <em>file:///D:/fancycms_084/bin/index.html</em></p>
<p>Once done, reopen the index file and it will show up fine. Good luck to everybody. And sorry that we did not point it out from the very beginning.</p>
]]></content:encoded>
			<wfw:commentRss>http://fancycms.com/tutorials/the-index-file-of-my-flash-cms-template-does-not-open/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding a page in Fancy Flash CMS</title>
		<link>http://fancycms.com/tutorials/adding-a-page-in-fancy-flash-cms/</link>
		<comments>http://fancycms.com/tutorials/adding-a-page-in-fancy-flash-cms/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 11:35:10 +0000</pubDate>
		<dc:creator>FancyCMS</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://fancycms.com/?p=301</guid>
		<description><![CDATA[The following tutorial explains in detail how to add pages to Fancy Flash CMS template using XML: I have taken a Music Band CMS template as an example for this tutorial. First Step: Adding a page with one content block. 1. Open “/data/pages.xml” file. This file contains all information about the pages you have under [...]]]></description>
			<content:encoded><![CDATA[<p>The following tutorial explains in detail how to add pages to <a href="http://fancycms.com/">Fancy Flash CMS</a> template using XML:</p>
<p>I have taken a Music Band CMS template as an example for this tutorial.<br />
<img class="aligncenter size-full wp-image-302" title="cms-template-overview" src="http://fancycms.com/wp-content/uploads/2010/03/cms-template-overview.png" alt="" width="500" height="263" /><br />
<span id="more-301"></span></p>
<h4>First Step: Adding a page with one content block.</h4>
<p><strong>1.</strong> Open <strong>“/data/pages.xml”</strong> file. This file contains all information about the pages you have under your flash cms template.  Each page is defined by the following tags:</p>
<pre class="brush: xml; title: ; notranslate">&lt;page&gt;&lt;/page&gt;</pre>
<p><strong>2.</strong> Add the following code anywhere after the closing page tag:</p>
<pre class="brush: xml; title: ; notranslate">&lt;/page&gt;</pre>
<p>Here&#8217;s the code to add:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;page name=&quot;MyPage&quot; mainmenu=&quot;1&quot; footermenu=&quot;0&quot;&gt;
	&lt;subpage name=&quot;&quot; footermenu=&quot;&quot;&gt;
	&lt;pageheader value=&quot;MyHeader.jpg&quot; url=&quot;&quot; enable=&quot;1&quot; /&gt;
	&lt;panel position=&quot;center&quot; value=&quot;mypage/mypage.xml&quot; type=&quot;simple&quot; size=&quot;1000&quot; enable=&quot;1&quot; /&gt;
	&lt;/subpage&gt;
&lt;/page&gt;
</pre>
<h5>Where:</h5>
<ul>
<li><strong>name=&#8221;MyPage&#8221;</strong> – The name of the button in menu;</li>
<li><strong>mainmenu=&#8221;1&#8243;</strong> – defines if the button is shown in main menu (=&#8221;1&#8243;) or not (=&#8221;0&#8243;);</li>
<li><strong>footermenu=&#8221;0&#8243;</strong> – defines if the button is shown in footer menu (=&#8221;1&#8243;) or not (=&#8221;0&#8243;);</li>
<li><strong>subpage name=&#8221;" &amp; footermenu=&#8221;"</strong> – those are needed to add subpages;</li>
<li><strong>pageheader value=&#8221;MyHeader.jpg&#8221;</strong> –image or flash movie in header. Supported extensions: *.jpg, *.png, *.gif, *.swf. File should be placed under “/assets” directory. Recommended header width – 1000px;</li>
<li><strong>url=&#8221;"</strong> – this makes a banner clickable and sends visitor to the url specified in quotation marks;</li>
<li><strong>enable=&#8221;1&#8243;</strong> – turning header on (=&#8221;1&#8243;) and off (=&#8221;2&#8243;);</li>
<li><strong>position=&#8221;center&#8221;</strong> – mandatory parameter, central panel should always exist on the page;</li>
<li><strong>value=&#8221;mypage/mypage.xml&#8221;</strong> – path to the xml content. “/mypage” folder should be created under “/data” folder;</li>
<li><strong>type=&#8221;simple&#8221;</strong> – the type of the page. Variations: simple, news, gallery;</li>
<li><strong>size=&#8221;1000&#8243;</strong> – panel width. Since overall page width is 1000, all the panels should give 1000 in total width sum;</li>
<li><strong>enable=&#8221;1&#8243;</strong> – turning panel on (=&#8221;1&#8243;) and off (=&#8221;2&#8243;);</li>
</ul>
<p>Please note that the source XML file for <strong>value=&#8221;mypage/mypage.xml&#8221;</strong> should be taken from <strong>“/_templates”</strong> directory, and it’s name is <strong>simple.xml</strong>.</p>
<p><strong>3.</strong> Let’s open <strong>“data/references.xml”</strong> file now. This file defines the order of the pages. We are going to add our page to the very end so you’ll have to scroll to the bottom till you see the following line:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;link id=&quot;sitemap&quot; type=&quot;sitemap&quot; address=&quot;/sitemap&quot; title=&quot;Sitemap&quot; /&gt;
</pre>
<p>Right before it add the following code:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;link id=&quot;7.0.0&quot; type=&quot;&quot; address=&quot;/mypage&quot; title=&quot;My Page&quot; /&gt;
</pre>
<h5>Where:</h5>
<ul>
<li><strong>link id=&#8221;7.0.0&#8243;</strong> – position of the page according to the template: =“Page_Number.SubPage_Number.Gallery_SubCategory”. It should be related to the nearby pages values. As far as the last page before had an id of 6.0.0, the next will be 7.0.0;</li>
<li><strong>type=&#8221;"</strong> – is defined only in case we’re adding items;</li>
<li><strong>address=&#8221;/mypage&#8221;</strong> – unique path to the page that will be showed in the address bar;</li>
<li><strong>title=&#8221;My Page&#8221;</strong> – Title of the page which will be showed in browser.</li>
</ul>
<p>All set! Now refresh the template and check your newly created page.</p>
<p><img class="aligncenter size-full wp-image-311" title="cms-template-new-page" src="http://fancycms.com/wp-content/uploads/2010/03/cms-template-new-page.png" alt="" width="500" height="257" /></p>
<h4>Second Step: Adding a news panel to a page.</h4>
<p>Open <strong>“/data/pages.xml”</strong> file. And find the page code that we had recently added. Right before <strong></strong> add the following code:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;panel position=&quot;left&quot; value=&quot;mypage/mypage2.xml&quot; type=&quot;news&quot; size=&quot;300&quot; enable=&quot;1&quot; /&gt;
</pre>
<h5>Where:</h5>
<ul>
<li><strong>position=&#8221;left&#8221;</strong> – position of the new block, can be either left or right, as long as we have the center one;</li>
<li><strong>value=&#8221;mypage/mypage2.xml&#8221;</strong> – path to the xml content of the block. “/mypage” folder should be created under “/data” folder;</li>
<li><strong>size=&#8221;300&#8243;</strong> – panel width. Since overall page width is 1000, the center panel width should be reduced to 700;</li>
<li><strong>enable=&#8221;1&#8243;</strong> – turning panel on (=&#8221;1&#8243;) and off (=&#8221;2&#8243;).</li>
</ul>
<p>Please note that the source XML file for <strong>value=&#8221;mypage/mypage2.xml&#8221;</strong> should be taken from <strong>“/_templates”</strong> directory, and it’s name is <strong>news.xml</strong></p>
<p>Here’s the full page code that you should have:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;page name=&quot;MyPage&quot; mainmenu=&quot;1&quot; footermenu=&quot;0&quot;&gt;
&lt;subpage name=&quot;&quot; footermenu=&quot;&quot;&gt;
&lt;pageheader value=&quot;MyHeader.jpg&quot; url=&quot;&quot; enable=&quot;1&quot; /&gt;
&lt;panel position=&quot;center&quot; value=&quot;mypage/mypage.xml&quot; type=&quot;simple&quot; size=&quot;1000&quot; enable=&quot;1&quot; /&gt;
&lt;panel position=&quot;left&quot; value=&quot;mypage/mypage2.xml&quot; type=&quot;news&quot; size=&quot;300&quot; enable=&quot;1&quot; /&gt;
&lt;/subpage&gt;
&lt;/page&gt;
</pre>
<p>Now renew the page and see the new block appear on the page:<br />
<img class="aligncenter size-full wp-image-317" title="cms-template-new-page-news" src="http://fancycms.com/wp-content/uploads/2010/03/cms-template-new-page-news.png" alt="" width="500" height="324" /></p>
<p>If you have any issues with this tutorial, please post them in comments. I will be glad to help you!<br />
Here is the link to download our <a href="http://fancycms.com/free-flash-cms/">free flash cms</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://fancycms.com/tutorials/adding-a-page-in-fancy-flash-cms/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
