<?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>PelFusion Design Magazine &#187; flash</title>
	<atom:link href="http://pelfusion.com/tag/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://pelfusion.com</link>
	<description>pixels that make your life easy</description>
	<lastBuildDate>Wed, 08 Feb 2012 07:03:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>7 Common Mistakes by Flash Beginners</title>
		<link>http://pelfusion.com/coding/7-common-mistakes-by-flash-beginners/</link>
		<comments>http://pelfusion.com/coding/7-common-mistakes-by-flash-beginners/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 12:30:14 +0000</pubDate>
		<dc:creator>Viki</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Flash Tutorials]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=14700</guid>
		<description><![CDATA[Flash provides incredible interaction to your visitors, but inappropriate use of flash often brings the negative result. Making mistakes is the best way to learn. This post lists common mistakes made by beginners, the ones that teach valuable lessons and bring the most experience. In the area of mistakes, the most painful ones are the [...]]]></description>
			<content:encoded><![CDATA[<p>Flash provides incredible interaction to your visitors, but inappropriate use of flash often brings the negative result. Making mistakes is the best way to learn. This post lists common mistakes made by beginners, the ones that teach valuable lessons and bring the most experience. In the area of mistakes, the most painful ones are the ones from which you learn the most.</p>
<h3 class=underLineTitle>Underscore:</h3>
<p> <img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/11/1.jpg" width="300" height="149" /></p>
<p><a href="http://pelfusion.com/tutorials/actionscript-and-php-development-tutorials/">ActionScript</a>2.0 and ActionScript3.0 are different. For those designers who need to adjust the shift, some mistakes were made by habit. The most common one is to remove the underscore (._x, ._alpha, etc). ActionScript2.0 uses a lot of attributes that start with the &#8220;_&#8221;, whereas in ActionScript3.0, you have to remove the underscore from all properties. </p>
<h3 class=underLineTitle>Different Percentages:</h3>
<p> <img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/11/2.jpg" width="300" height="150" /></p>
<p>Percentage  is another difference between ActionScript2.0 and ActionScript3.0 which causes  common mistake by beginners. For example, you set 50 to an alpha property, but  it&rsquo;s still 100% opaque in ActionScript3.0. That&rsquo;s because the valid percentage  range is different between ActionScript2.0 and ActionScript3.0. The valid range  of ActionScript2.0 is 0 to 100; whereas in ActionScript3.0, it&rsquo;s 0 to 1. So you  need to change the value to 0.5 to achieve the 50% result.</p>
<h3 class=underLineTitle>Mixing Up Property with Variable:</h3>
<p> <img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/11/3.jpg" width="300" height="150" /></p>
<p>When  trying to create several of the same items, you may mix up the &ldquo;name&rdquo; property  with the variable name. For instance:</p>
<pre class="brush: jscript; title: ; notranslate">
for (var i:int = 0; i &lt; numMCs; i++)
{
var mc:MovieClip = new MovieClip();
mc.name = &quot;mc&quot; + i;&lt;br/&gt;
mc.x = i * 40;
}
mc0.y = 50; //Error
</pre>
<p>It is a common mistake made by beginners which often works anyway.</p>
<h3 class=underLineTitle>Forgetting to Embed the Fonts:</h3>
<p> <img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/11/4.jpg" width="300" height="150" /></p>
<p>Font is an indispensable part of flash. Very often you add a particular font to make flash special; but sometimes the problem occurs that it doesn&#8217;t play the way you want. It is usually noticed when you test your SWF. So if you are testing a SWF, don&#8217;t just testing on your own computer, but other&#8217;s as well. Because non-standard font may not probably installed on users computer. The fonts will display correctly if they exist on the machine running the SWF, but will revert back to standard system fonts when not. To avoid such mistake, you need to embed any fonts you are using in your SWF.</p>
<h3 class=underLineTitle>Variables and Constants are Case Sensitive:</h3>
<p> <img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/11/5.jpg" width="300" height="150" /></p>
<p>For example: yourdrivinglicence and yourDrivingLicence. In ActionScript3.0, they are different variables. The single-word variables should be named with a lowercased first letter; the multi-word variables should begin with a lowercased character and subsequent words capitalized.</p>
<p>On the other hand, constants should be entirely uppercase. Designers need to realize the difference; it is helpful to differentiate your variables and constants.</p>
<h3 class=underLineTitle>Using Flash to Imitate HTML and CSS:</h3>
<p> <img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/11/6.jpg" width="300" height="150" /></p>
<p>First of all, check this <a rel="nofollow" href="http://www.cubamoon.com/" target="_blank" >website</a>, and what is your feel? At the very beginning, I feel it&#8217;s cool, but after I make a deeper view, I close this site within 10 seconds. Cause I can&#8217;t even open links in a new tab or can&#8217;t copy any selected text.</p>
<p>It is another common mistake of inappropriate use of flash – imitate anything by flash. Flash is used to make attractive visual effects, such as graphic motion, video and audio; but don&#8217;t try to imitate HTML or CSS, that&#8217;s totally unnecessary. Long texts shouldn&#8217;t be embedded in flash, because it&#8217;s difficult to work with the embedded text once you need to. So make use of flash when you really want to do so.</p>
<h3 class=underLineTitle>Using Flash as the Only Way for Animation:</h3>
<p> <img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/11/7.jpg" width="300" height="150" /></p>
<p>Flash is a great tool for creating web animation and it has achieved large popularity among designers. But using flash as the only way is a big mistake which many designers haven&#8217;t realized. First of all, flash is not text, but animation, so it is not search engine friendly, that&#8217;s why web is tortured with those ubiquitous animation type intros. Secondly, flash is slow to load. Don&#8217;t expect every visitor has a 10M bandwidth. Think about that, if your visitor waiting for the flash landing page with their fingers knocking on the table, you are actually killing their user experience of your website. The consequence is you are probably losing your visitors.</p>
<p>To avoid such a mistake, you can use HTML5 animation instead. HTML5 animation is search engine optimized. So here comes another question: you are not expertise in HTML5, so how to make that possible? Well, as a matter of fact, you don&#8217;t have to be expertise in HTML5; there are tools out there for flash to HTML5 conversion, such as <a rel="nofollow" href="http://www.sothink.com/product/flashdecompiler/?utm_source=flashmistake&#038;utm_medium=article&#038;utm_campaign=1109" target="_blank"><strong>SWF Decompiler</strong></a> or Google Swiffy and etc. hey help you to convert SWF to HTML5 within several minutes.</p>
<p>The mistake is one of the best teachers in our designing career; it helps us in the way of promotion. If you encounter with the similar situation, don&#8217;t forget to avoid those mistakes. Besides if you ever be tripped up by other mistakes, leave us a comment to share. Because the more we learn, the better designer we are.</p>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/coding/7-common-mistakes-by-flash-beginners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 Premium Flash Game Development Tutorials With Source Code</title>
		<link>http://pelfusion.com/tutorials/9-premium-flash-game-development-tutorials-with-source-code/</link>
		<comments>http://pelfusion.com/tutorials/9-premium-flash-game-development-tutorials-with-source-code/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 14:26:44 +0000</pubDate>
		<dc:creator>Ferman</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash actionscript]]></category>
		<category><![CDATA[flash cs3 tutorial]]></category>
		<category><![CDATA[flash game source]]></category>
		<category><![CDATA[flash game tutorial]]></category>
		<category><![CDATA[game development]]></category>
		<category><![CDATA[premium tutorials]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=13578</guid>
		<description><![CDATA[Once we created a roundup on flash game development tutorials, which our readers liked the most and due to their interest decided to create another post which will for sure help them in building flash games. All these tutorials are premium and you can get the source code for 1 or 2 dollars. 1. Build [...]]]></description>
			<content:encoded><![CDATA[<p>Once we created a roundup on <a href="http://pelfusion.com/tutorials/35-flash-game-development-tutorials-fla-files/">flash game development tutorials</a>, which our readers liked the most and due to their interest decided to create another post which will for sure help them in building flash games. All these tutorials are premium and you can get the source code for 1 or 2 dollars.</p>
<h3>1. <a rel="nofollow" href="http://marketplace.tutsplus.com/item/build-a-striking-breakout-game-in-flash/242912?ref=pelfusion">Build a Striking Breakout Game in Flash</a></h3>
<p>Using the Flash drawing tools we&#8217;ll create a great looking graphic interface that will be powered by several straightforward ActionScript 3 classes. The user will be able to play through a series of levels and you, the developer, can easily add as many levels as you like! </p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/06/flash-brick-game.jpg" width="540" height="275" class=whiteBrdr alt="Flash Brick Game" /></p>
<a class="pf_button" href="http://marketplace.tutsplus.com/item/build-a-striking-breakout-game-in-flash/242912?ref=pelfusion"><span> Demo / Download </span></a>
<h3>2. <a rel="nofollow" href="http://marketplace.tutsplus.com/item/awesome-flash-blackjack-game/242934?ref=pelfusion">Awesome Flash BlackJack Game</a></h3>
<p>In this Premium Tutorial, you&#8217;ll be building an amazing BlackJack game, from scratch, using Flash and AS3.
</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/06/flash-blackjack-game.jpg" width="540" height="275" class=whiteBrdr alt="Flash BlackJack Game" /></p>
<a class="pf_button" href="http://marketplace.tutsplus.com/item/awesome-flash-blackjack-game/242934?ref=pelfusion"><span> Demo / Download </span></a>
<h3>3. <a rel="nofollow" href="http://marketplace.tutsplus.com/item/create-a-slot-machine-game-in-flash-using-as3/222034?ref=pelfusion">Create a Slot Machine Game in Flash Using AS3</a></h3>
<p>Let&#8217;s have a crack at building an entertaining Slot Machine game in Flash and  AS3 . Spin the wheels and see what you could win!</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/06/flash-slot-machine-game.jpg" width="540" height="293" class=whiteBrdr alt="Flash Slot Machine Game" /></p>
<a class="pf_button" href="http://marketplace.tutsplus.com/item/create-a-slot-machine-game-in-flash-using-as3/222034?ref=pelfusion"><span> Demo / Download </span></a>
<h3>4. <a rel="nofollow" href="http://marketplace.tutsplus.com/item/create-a-space-shooter-game-in-flash-using-as3/242176?ref=pelfusion">Create a Space Shooter Game in Flash Using AS3</a></h3>
<p>Follow the straight-forward steps of this Premium Tutorial to create an entertaining shoot-&#8217;em-up with Flash and  AS3 .</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/06/flash-space-shooter-game.jpg" width="540" height="275" class=whiteBrdr alt="Flash Space Shooter Game" /></p>
<a class="pf_button" href="http://marketplace.tutsplus.com/item/create-a-space-shooter-game-in-flash-using-as3/242176?ref=pelfusion"><span> Demo / Download </span></a>
<h3>5. <a rel="nofollow" href="http://marketplace.tutsplus.com/item/hangman-game-in-flash-using-actionscript-30/132561?ref=pelfusion">Hangman Game in Flash Using ActionScript 3.0</a></h3>
<p>Developing a game is must-have skill if you are a Flash Developer, it   makes use of many different ActionScript methods and properties, plus   you will have plenty of fun in the process! In this tutorial, I will   show you how to create an advanced Hangman game using ActionScript 3.0.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/06/flash-hangman-game.jpg" width="540" height="400" class=whiteBrdr alt="Flash HangMan Game" /></p>
<a class="pf_button" href="http://marketplace.tutsplus.com/item/hangman-game-in-flash-using-actionscript-30/132561?ref=pelfusion"><span> Demo / Download </span></a>
<h3>6. <a rel="nofollow" href="http://marketplace.tutsplus.com/item/design-and-develop-a-flash-shooting-gallery-game/132245?ref=pelfusion">Design and Develop a Flash Shooting Gallery Game</a></h3>
<p>In this Tutorial, I&#8217;ll teach you how to combine several ActionScript 3   classes and skills to create a fantastic shooting gallery game.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/06/flash-shooting-gallery-game.jpg" width="540" height="391" class=whiteBrdr alt="Flash Shooting Gallery Game" /></p>
<a class="pf_button" href="http://marketplace.tutsplus.com/item/design-and-develop-a-flash-shooting-gallery-game/132245?ref=pelfusion"><span> Demo / Download </span></a>
<h3>7. <a rel="nofollow" href="http://marketplace.tutsplus.com/item/create-an-epic-war-game-in-flash-part-1/132962?ref=pelfusion">Create an Epic War Game in Flash</a></h3>
<p>Creating a game is definitely one of the most involved tasks in the   world of programming. Even a small platformer can take a lot of time and   effort to build. </p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/06/flash-epic-war-game.jpg" width="540" height="450" class=whiteBrdr alt="Flash Epic War Game" /></p>
<a class="pf_button" href="http://marketplace.tutsplus.com/item/create-an-epic-war-game-in-flash-part-1/132962?ref=pelfusion"><span> Demo / Download </span></a>
<h3>8. <a rel="nofollow" href="http://marketplace.tutsplus.com/item/build-an-as3-tetris-game-from-the-ground-up/178304?ref=pelfusion">Build an AS3 Tetris Game From the Ground Up</a></h3>
<p>In this Active Premium tutorial we&#8217;ll be creating a variant of the classic Tetris game,   explaining general game concepts as well as some specific to this genre.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/06/flash-tetris-game.jpg" width="540" height="598" class=whiteBrdr alt="Flash Tetris Game" /></p>
<a class="pf_button" href="http://marketplace.tutsplus.com/item/build-an-as3-tetris-game-from-the-ground-up/178304?ref=pelfusion"><span> Demo / Download </span></a>
<h3>9. <a rel="nofollow" href="http://marketplace.tutsplus.com/item/customizing-game-characters-with-palette-mapping/166629?ref=pelfusion">Customizing Game Characters with Palette Mapping</a></h3>
<p>In this flash tutorial author will show you how to use  AS3 &#8216;s PaletteMap feature to   create a character customization interface for your next game.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/06/flash-character-mapping.jpg" width="540" height="412" class=whiteBrdr alt="Flash Character Mapping" /></p>
<a class="pf_button" href="http://marketplace.tutsplus.com/item/customizing-game-characters-with-palette-mapping/166629?ref=pelfusion"><span> Demo / Download </span></a>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/tutorials/9-premium-flash-game-development-tutorials-with-source-code/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Create a Flash Website in Two Hours</title>
		<link>http://pelfusion.com/know-how/how-to-create-flash-website/</link>
		<comments>http://pelfusion.com/know-how/how-to-create-flash-website/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 11:48:57 +0000</pubDate>
		<dc:creator>Ferman</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash CMS]]></category>
		<category><![CDATA[flash templates]]></category>
		<category><![CDATA[flash websites]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=13042</guid>
		<description><![CDATA[Sometimes it happens that all your plans go down because of a major client who wants to have a magnificent website right here and right now. Most likely, every web developer knows the feelings that take over you after such unexpected but money-promising order. In most cases, orders of this sort end up as a [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes it happens that all your plans go down because of a major client who wants to have a magnificent website right here and right now. Most likely, every web developer knows the feelings that take over you after such unexpected but money-promising order. In most cases, orders of this sort end up as a lot of troubles for a developer, that&#8217;s the simple truth that everybody will agree with. On one hand, you feel like you want to throw all your efforts to complete the task as soon as you can, but on the other hand, you understand that it will be rather hard to create a website by the deadline. But business is business, and you have to do the job you get paid for, because as a business person, you have to take care of permanent profits and reputation. </p>
<p>So, being in such conditions, I couldn&#8217;t refuse an offer from one of my permanent clients who needed to <a rel="nofollow" href="http://www.motocms.com/">make Flash website</a> for his company in a matter of a couple of days. Frankly speaking, I didn&#8217;t hope to much for the extensive functionality of the website we were to build, but still why not to take a chance?!</p>
<p>I had to create a corporate website for the distributor of art paintings. According to the target audience interests, there was a need to mention the info about the firm and its existing partners, as well as to deliver the info proving the company&#8217;s credibility on the market. The task was more than clear, but the time was not on my side and all I had left to do was to ask Google: &quot;What should I do?&quot; And the reply came over: &quot;MotoCMS is an advanced Flash CMS aimed at Flash developers, design studios or freelancers, which allows them to create professional Flash websites.&quot; (this is an actual quote from the Google search). It sounded promisingly, so I didn&#8217;t want to lose another minute.</p>
<p>Among the variety of <a rel="nofollow" href="http://templates.motocms.com/">Flash templates</a> in the MotoCMS store, I chose a business template designed in minimalist style with original bubbled menu buttons moving randomly at the Splash page. That was exactly what I needed, there was no doubt.</p>
<p><a rel="nofollow" href="http://templates.motocms.com/flash-moto-templates-type/28146.html"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-1.jpg" width="540" height="337" alt="Create Flash Website" /></a>
</p>
<p>This Flash template is designed in a calm color scheme, but it&#8217;s ok, because, as it is said, I can change all the settings into whatever I want. </p>
<p>First of all, I registered the demo version of MotoCMS to try it free in action for 30 days. In order to do it I just needed to type my email at the proper field and to click on the theme I&#8217;d like to test.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-2.jpg" width="540" height="328" alt="Create Flash Website" /></p>
<p>As soon as the registration was successfully completed, I&#8217;ve got an e-mail with my permanent demo URL plus login and password for entering the control panel. The template with all changes is available for 30 days and is saved on the MotoCMS hosting. Due to this feature, you can show your work to the customer from wherever you want, and then buy the template with all customizations already in it. That&#8217;s why I didn&#8217;t pay for the template before the client approved the results of my work.</p>
<p>So, I started the customization&#8230; </p>
<p>The first thing I&#8217;ve seen after entering my demo account was the Splash Page with a toolbar.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-3.jpg" width="540" height="331" alt="Create Flash Website" /></p>
<p>This Flash CMS is equipped with WYSIWYG editor, which helps you to edit the layout elements without any specific software and complex programming knowledge. So, even an end-user with no experience in Flash can build a website on this CMS. Just double click on the element you&#8217;d like to correct and do what you have to do. For example, I tried to edit the company name and its slogan. </p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-4.jpg" width="540" height="334" alt="Create Flash Website" /></p>
<p>And the thing I&#8217;d recommend you to pay attention at is the toolbar at the right side of the window – there are all functions you may need while formatting the text. </p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-5.jpg" width="300" height="701" alt="Create Flash Website" /></p>
<p>Next I changed the menu colors. The double click on one of the &quot;navigation bubbles&quot; opens the Main Menu window which allows me to add or delete menu labels, edit titles, colors and click actions. In addition, I changed one of menu titles from Solutions to Testimonials. It didn&#8217;t take me too long and my customer was glad. </p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-6.jpg" width="540" height="337" alt="Create Flash Website" /></p>
<p>But it&#8217;s not enough to make my small changes work correctly. This Flash CMS template contains 2 types of menu: the main one located on the Splash Page and the page menu which is displayed on every page through the website. Both of these components had to be edited. And of course, it was necessary to rename the page itself. It can be easily done through the Content settings section. On the same screenshot you can see some results of my work.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-7.jpg" width="540" height="269" alt="Create Flash Website" /></p>
<p>After all, I was ready to start managing the content. For that, I had to choose the page I wanted to work with. (if you don&#8217;t know how to do it, the previous screenshot will help you). Let&#8217;s test the new Testimonials page.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-8.jpg" width="540" height="334" alt="Create Flash Website" /></p>
<p>Ok, it&#8217;s a big moment! Fanciful designs with any images, videos and colors are entirely at your disposal! Just note: while adding new content to the web pages, don&#8217;t forget to select the placement of your element. Otherwise you&#8217;ll observe them on every page. You must admit that it&#8217;s not the best way to decorate your website.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-9.jpg" width="540" height="281" alt="Create Flash Website" /></p>
<p>After all, I was really glad to know that every page of the Flash template is separately indexed by search engines. To customize these settings I opened Preferences – Website – SEO &amp; Analytics. </p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-10.jpg" width="540" height="334" alt="Create Flash Website" /></p>
<p>There are Site Map, Google Analytics and Web Master tools. Frankly speaking, it was the first time I saw that each Flash page has its own unique URL.</p>
<p>There is one thing that should be pointed out: after saving your precious customized template, please take a minute to compress the website – it will speed up its loading by compressing XML files.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-10-1.jpg" width="450" height="400" alt="Create Flash Website" /></p>
<p>After browsing through the web for a while I&#8217;ve found a company which already uses this particular Flash CMS template. For me as a developer, it was interesting to see other design solutions of the same initial materials.</p>
<p><a rel="nofollow" href="http://www.tech74.com/#/Home/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-11.jpg" width="540" height="333" alt="Create Flash Website" /></a></p>
<p>Google says that this website is really well indexed. For me, Google is an incontestable authority, so I&#8217;m inclined to believe it. Here is the confirmation of this statement:</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-12.jpg" width="540" height="390" alt="Create Flash Website" /></p>
<p>Well, the website is ready. Surely, it needs to be filled with the company info, but due to the MotoCMS control panel, the client doesn&#8217;t need me for this.And now I can proudly offer you to look at my Flash website created in two hours only! Don&#8217;t judge me strictly, and thank you for the attention and  patience!</p>
<p><a rel="nofollow" href="http://demo.cms-guide.com/websites/4da6e05730747/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/04/create-flash-website-13.jpg" width="540"alt="Create Flash Website" /></a></p>
<p>At the very end, I&#8217;d like to thank the MotoCMS team for their feature-rich Flash CMS. For quite a reasonable price, you get almost unlimited opportunities. As for me, it is a good chance to try your best in quick and quality Flash website creation. </p>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/know-how/how-to-create-flash-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Actionscript and PHP Development Tutorials</title>
		<link>http://pelfusion.com/tutorials/actionscript-and-php-development-tutorials/</link>
		<comments>http://pelfusion.com/tutorials/actionscript-and-php-development-tutorials/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 12:20:25 +0000</pubDate>
		<dc:creator>Ferman</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Flash Tutorials]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=9764</guid>
		<description><![CDATA[Building flash web applications with PHP is easier now with Actionscript 3. But to find related tutorials on internet could be a tough job, therefore today i have listed all useful tutorials which can help you to build dynamic flash websites using Actionscript and PHP. These tutorials will tell you how to create login system, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://pelfusion.com/tutorials/35-flash-game-development-tutorials-fla-files/">Building flash</a> web applications with <a href="http://pelfusion.com/tools/26-worth-knowing-php-tools-resources-for-web-developers/">PHP</a> is easier now with Actionscript 3. But to find related tutorials on internet could be a tough job, therefore today i have listed all useful tutorials which can help you to build <a href="http://pelfusion.com/inspiration/flash-websites-dynamic/">dynamic flash websites</a> using Actionscript and PHP. These <a href="http://pelfusion.com/tutorials/9-premium-flash-game-development-tutorials-with-source-code/">tutorials</a> will tell you how to create login system, load external varialbes, connect PHP with Actionscript 3, contact form, flash php photo gallery, comment form and lots of things that you can do using PHP and AS3.</p>
<h3>1. <a rel="nofollow" href="http://active.tutsplus.com/tutorials/actionscript/create-a-flash-login-system-using-php-and-mysql-part-1/">Create a Flash Login System Using PHP and MySQL</a></h3>
<p>This tutorial will demonstrate how to create simple but professional Flash login system using three different programming languages; AS3, PHP and MYSQL.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/actionscript-php-tutorial-1.jpg" alt="Flash, AS3 and PHP Tuts" title="Flash and PHP Tutorials" width="540" class="whiteBrdr alignleft size-full wp-image-9765" /></p>
<h3>2. <a rel="nofollow" href="http://active.tutsplus.com/tutorials/actionscript/get-user-ip-address-using-php-and-actionscript-3/">Get User IP Address Using PHP and ActionScript 3</a></h3>
<p>An Internet Protocol Address (IP Address), is a unique number assigned to every device connected to the Internet. For different reasons, it can be useful to get the user IP address, like blocking a spammer user in a chat application for example. In this tutorial, I will show you how to get and display the user&#8217;s IP address using PHP and ActionScript.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/03/actionscript-php-tutorial-2.jpg" alt="Flash, AS3 and PHP Tuts" title="Flash and PHP Tutorials" width="540" class="whiteBrdr alignleft size-full wp-image-9765" /></p>
<h3>3. <a rel="nofollow" href="http://www.heaveninteractive.com/2008/03/17/using-actionscript-30-with-php-part-1/">Using Actionscript 3.0 With PHP : Loading External Variables</a></h3>
<p>Creating dynamic websites which combine the power of Flash or Flex with PHP is easier than ever with ActionScript 3.0.</p>
<h3>4. <a rel="nofollow" href="http://rickydoesit.com/actionscript-3/how-to-connect-to-php-with-actionscript-3-and-post-variables-to-php/">Connect to PHP with Actionscript 3 and Post variables to PHP</a></h3>
<p>This is the simplest way to communicate with PHP and Actionscript 3 and it&#8217;s extremely fast and efficient as well.</p>
<h3>5. <a rel="nofollow" href="http://active.tutsplus.com/tutorials/actionscript/get-user-ip-address-using-php-and-actionscript-3/">Flash Contact Form in ActionScript 3 and PHP</a></h3>
<p>This flash contact form is simply made in Adobe Flash CS3 ActionScript 3. Email validation is better than previous version in ActionScript 2. It sends the form field variables to PHP and loads the response variables back to Flash using URLVariables, URLLoader, and URLRequest classes. It will be very useful for you to use or adapt it for your Flash projects.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/03/php-contact-form-as3.jpg" alt="Flash, AS3 and PHP Tuts" title="Flash and PHP Tutorials" width="540" class="whiteBrdr alignleft size-full wp-image-9765" /></p>
<h3>6. <a rel="nofollow" href="http://www.actionscript.org/resources/articles/141/1/Introduction-to-Flash-and-PHP/Page1.html">Introduction to Flash and PHP</a></h3>
<p>This is the first part of a series of tutorials looking at using PHP and Flash. In this first tutorial we&#8217;re going to take things relatively easy.</p>
<h3>7. <a rel="nofollow" href="http://blog.phpmoz.org/actionscript-3-0-tutorial-php-mysql-bar-graph-dynamic-basics-in-flash-cs3-cs4-cs5/">Actionscript 3.0 Tutorial PHP MySQL Bar Graph Dynamic Basics [video]</a></h3>
<p>Learn the very basics of creating dynamic bar graphs using Flash Actionscript 3.0 for CS3 CS4 and CS5. We use PHP and MySQL for dynamics.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/03/flash-graph.jpg" alt="Flash, AS3 and PHP Tuts" title="Flash and PHP Tutorials" width="540" class="whiteBrdr alignleft size-full wp-image-9765" /></p>
<h3>8. <a rel="nofollow" href="http://www.flepstudio.org/forum/tutorials/3319-creating-email-form-actionscript-3-0-php.html">Creating an Email Form with Actionscript 3.0 and PHP</a></h3>
<p>Developer will explain then describes step by step how to create a basic form of sending email using Actionscript 3.0 and PHP.</p>
<h3>9. <a rel="nofollow" href="http://www.mptutor.com/video/679/ActionScript-30-Tutorial--Hit-Counter-Flash--PHP-for-full-Flash-website-pages">Hit Counter Flash + PHP for full Flash website pages</a></h3>
<p>With this tutorial you will learn how to create Flash hit counter using Actionscript and PHP.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/03/flash-hit-counter.jpg" alt="Flash, AS3 and PHP Tuts" title="Flash and PHP Tutorials" width="540" class="whiteBrdr alignleft size-full wp-image-9765" /></p>
<h3>10. <a rel="nofollow" href="http://www.angelontheweb.com/tur/flash-website-voting-poll-tutorial-actionscript-3-0-php-mysql/">Flash Website Voting Poll Tutorial: Actionscript 3.0 PHP MySQL [video]</a></h3>
<p>Learn how to build more creative polling and voting applications for all of your website projects. We are using Flash Actionscript 3.0, PHP, and MySQL.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/03/flash-php-voting-poll.jpg" alt="Flash, AS3 and PHP Tuts" title="Flash and PHP Tutorials" width="540" class="whiteBrdr alignleft size-full wp-image-9765" /></p>
<h3>11. <a rel="nofollow" href="http://www.flash-db.com/Board/index.php?topic=18591.0">PHP Session Variables + ActionScript 3</a></h3>
<p>This is a forum post which will help you in using Session Variables with PHP/AS3/MySQL.</p>
<h3>12. <a rel="nofollow" href="http://www.flashperfection.com/tutorials/Object-Oriented-ActionScript-3-using-PHP-SQL-32280.html">Object Oriented ActionScript 3, using PHP &#038; SQL</a></h3>
<p>This tutorial explores one of many methods, which could be used to allow an ActionScript 3 swf file to communicate back and forth to an SQL database, storing and retrieving values in a table.</p>
<h3>13. <a rel="nofollow" href="http://active.tutsplus.com/tutorials/xml/build-a-dynamic-gallery-with-actionscript-30-and-php">Build a Dynamic Gallery with ActionScipt 3.0 and PHP</a></h3>
<p>In this tutorial, we&#8217;ll create a gallery which displays all image files in a given directory. A slider is used to browse easily through the images.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/03/flash-php-gallery.jpg" alt="Flash, AS3 and PHP Tuts" title="Flash and PHP Tutorials" width="540" class="whiteBrdr alignleft size-full wp-image-9765" /></p>
<h3>14. <a rel="nofollow" href="http://active.tutsplus.com/tutorials/actionscript/create-a-comment-form-with-flash-php-xml-and-mysql">Create a Comment Form with Flash, PHP, XML and MySQL</a></h3>
<p>In this tutorial, developer will show you how to use Flash, PHP and MySQL together. We&#8217;ll build a simple comment form that takes entries and stores them in a database. We&#8217;ll use PHP to retrieve the entries and format the comments into XML form.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/03/comment-form-flash-php.jpg" alt="Flash, AS3 and PHP Tuts" title="Flash and PHP Tutorials" width="540" class="whiteBrdr alignleft size-full wp-image-9765" /></p>
<h3>15. <a rel="nofollow" href="http://www.projectfinale.com/viewtutorial.php?id=3">PHP/Flash Score List [video]</a></h3>
<p>This tutorial explains how to make a asy and simple PHP/Flash/MySQL high score list for your website and flash game.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/03/php-flash-score-list.jpg" alt="Flash, AS3 and PHP Tuts" title="Flash and PHP Tutorials" width="540" class="whiteBrdr alignleft size-full wp-image-9765" /></p>
<h3>16. <a rel="nofollow" href="http://active.tutsplus.com/tutorials/actionscript/creating-a-reusable-flash-uploader-with-actionscript-3-0-and-php/">Creating a Reusable Flash Uploader with ActionScript 3.0 and PHP</a></h3>
<p>In this tutorial developer will show you how to build a Flash uploader for uploading files from the user&#8217;s computer.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/03/php-flash-uploader.jpg" alt="Flash, AS3 and PHP Tuts" title="Flash and PHP Tutorials" width="540" class="whiteBrdr alignleft size-full wp-image-9765" /></p>
<h3>17. <a rel="nofollow" href="http://blog.macronimous.com/download-our-new-free-flash-guestbook-easy-intergratable-with-your-website/">Flash guestbook with PHP</a></h3>
<p>Learn how to create flash guestbook using PHP and Actionscript.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/03/guest-book-flash.jpg" alt="Flash, AS3 and PHP Tuts" title="Flash and PHP Tutorials" width="540" class="whiteBrdr alignleft size-full wp-image-9765" /></p>
<h3>18. <a rel="nofollow" href="http://www.macronimous.com/resources/Flash_programming_with_PHP.asp">Developing Flash based applications with PHP</a></h3>
<p>Here is a simple tutorial with step-by-step learning on how to connect make Flash based applications to interact with PHP programming- helping you to start and explore backend database driven Flash.</p>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/tutorials/actionscript-and-php-development-tutorials/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Building in Flash on the YouTube API with ActionScript 3.0</title>
		<link>http://pelfusion.com/tutorials/building-in-flash-on-the-youtube-api-with-actionscript-3-0/</link>
		<comments>http://pelfusion.com/tutorials/building-in-flash-on-the-youtube-api-with-actionscript-3-0/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 13:14:14 +0000</pubDate>
		<dc:creator>Jake Rocheleau</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Flash Tutorials]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=11470</guid>
		<description><![CDATA[ActionScript is a very powerful programming language used in numerous Adobe Flash and Flex applications. It provides an object-oriented class level environment with many advantages to the average developer. In this example we&#8217;ll be constructing a video wall pulling the top videos from YouTube&#8217;s Tech feed. We will mostly be covering basic ActionScript techniques, thus [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://pelfusion.com/tutorials/actionscript-and-php-development-tutorials/">ActionScript</a> is a very powerful programming language used in numerous Adobe <a href="http://pelfusion.com/tutorials/9-premium-flash-game-development-tutorials-with-source-code/">Flash and Flex applications</a>. It provides an object-oriented class level environment with many advantages to the average developer. In this example we&#8217;ll be constructing a video wall pulling the top videos from YouTube&#8217;s Tech feed.</p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/adamjackson/2929780241/in/photostream/"><img  alt="Actionscript Programming" src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/01/adobe-flashcs4.jpg" /></a></p>
<p>We will mostly be covering basic ActionScript techniques, thus it is not required to be an exceptional whiz at programming. For this tutorial I&#8217;ll be using Adobe Flash CS3 with ActionScript 3.0 as the default language.</p>
<h2 class=underLineTitle>Building our .FLA File</h2>
<p>Each flash project you create should be saved to disk as .fla inside a root directory. I&#8217;ve created a new document 630&#215;575 and saved as <strong>YouTube.fla</strong>.</p>
<p>Getting familiar with the Flash interface may take a little bit of time. Most of the work we&#8217;ll be doing is integrated in the lowermost panels. More specifically we&#8217;ll be dealing with properties and actions.</p>
<p><strong>Properties</strong> will allow you to update the current document width/height and other advanced settings. <strong>Actions</strong> is where all the real fun happens and where our code is stored. Each layer as a series of keyframes which store ActionScript to manipulate transitions and effects.</p>
<p><img  alt="Actionscript Programming"  src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/01/document-properties.jpg" /></p>
<p>You&#8217;ll notice a layers panel towards the top above the project stage. The first layer should be named &#8220;Layer1&#8243;. Change that to Actions and tick the small lock symbol off to the right side. This sets a single layer in our file dedicated to ActionScript code, which means we don&#8217;t need to go searching around for anything. Locking just ensures we don&#8217;t accidently place elements in that layer.</p>
<h2 class=underLineTitle>Designing Page Views</h2>
<p>The next step is to create our physical layout. I&#8217;ve created a new layer titled &#8220;views&#8221; which is going to house <strong>6 MovieClips</strong>. These will actually become placeholders for the dynamic thumbnail shot YouTube generates with each video.</p>
<p>To create these check <em>insert->new symbol</em> or simply tap F8. Here a new menu comes up asking what type of symbol you are creating. Movie Clip is perfect set along 120px width and 90px height. Once the symbol is made alter the clip&#8217;s instance name to &#8220;ytThumb&#8221; + 0-5 for each clip. So for example the first would be labeled <strong>ytThum0</strong>, the next <strong>ytThumb1</strong> and so forth.</p>
<p><img  alt="Actionscript Programming"  src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/01/youtube-api-project-home.jpg" /></p>
<p>Now we can move back into our actions panel to start really developing. If you are having trouble with creating each movie clip don&#8217;t fret. They are not truly necessary at this point, but it does save time to create each instance beforehand.</p>
<h2 class=underLineTitle>Beginning the ActionScript Code</h2>
<p>Click back on the first keyframe in the Actions layer. From here check the bottom panel and move from properties into actions. The panel will expand much higher and include a text box – this is where our code will go.</p>
<p>To start off we will define a few variables to hold namespace references. These ensure that when pulling data from Google and YouTube&#8217;s servers we can interpret the return properly.  Also we include a <code>Security.allowDomain</code> call to let Flash know we can trust data downloaded through YouTube.</p>
<pre class="brush: as3; title: ; notranslate">
Security.allowDomain(&quot;youtube.com&quot;,&quot;http://youtube.com&quot;,&quot;www.youtube.com&quot;);
var atom:Namespace = new Namespace(&quot;http://www.w3.org/2005/Atom&quot;);
var gd:Namespace = new Namespace(&quot;http://schemas.google.com/g/2005&quot;);
var yt:Namespace = new Namespace(&quot;http://gdata.youtube.com/schemas/2007&quot;);

default xml namespace = atom; // very important!!

var vidCount:int = 6;
var dataArray:Array = new Array();
</pre>
<p>As an example above we have 3 new namespaces defined as <strong>atom</strong>, <strong>gt</strong>, and <strong>yt</strong>. These correspond with atom RSS feeds and two primary namespaces relating to the YouTube API. By the last line we are setting the default namespace for all XML code to atom.</p>
<p>Without these lines ActionScript will try parsing the return XML from YouTube&#8217;s API as plain XML instead of an atom feed. This results in bugs and errors flying around, so it&#8217;s much easier to clear this up first.</p>
<p>We are also creating two simple variables towards the very end. <strong>vidCount</strong> is used to define how many videos we will pull from each feed. <strong>dataArray</strong> is currently set to an empty array. A future function will pull this data and feed instances of videos into an array list.</p>
<pre class="brush: as3; title: ; notranslate">var xmlUrlReq:String = &quot;http://gdata.youtube.com/feeds/api/videos/-/Tech/&quot;;
var xmlLoader:URLLoader = new URLLoader();
var xmlData:XML = new XML();

// loader event listener
xmlLoader.addEventListener(Event.COMPLETE, LoadXml);
xmlLoader.load(new URLRequest(xmlUrlReq));
</pre>
<p>We now have the defining principles for connecting to an XML page. The XML url we are using is defined outright which contains the standard API call. It is malleable in that you can change <em>Tech</em> to any variable returning video results.</p>
<p>For example <strong><em>http://gdata.youtube.com/feeds/api/videos/-/Gaming/</em></strong> is a possibility for all gaming-related videos. Our <code>xmlLoader</code> will store the functions needed to load this API URL and <code>xmlData</code> is used to store the returning XML code.</p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/saltmarch/4941484794/"><img  alt="Actionscript Programming"  src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/01/adobe-flash-platform.jpg" /></a></p>
<p>After variables are set we need to call our event listener which checks to see when the API has finished loading. At this point we call a new function <code>LoadXml()</code> which is defined next.</p>
<h2 class=underLineTitle>Event Handler Calls</h2>
<p>Once the loader <code>eventListener</code> has cleared our LoadXml function is called. This will parse all of the data we need out of the YouTube API response and store simple variables for access later. Below is the entire function code.</p>
<pre class="brush: as3; title: ; notranslate">function LoadXml(e:Event):void {
	xmlData = XML(e.target.data);
	var media:Namespace = xmlData.namespace(&quot;media&quot;);
	var gd1:Namespace = xmlData.namespace(&quot;gd&quot;);
	var elms:XMLList = xmlData.entry;

	for(var i:int = 0; i &lt; vidCount; i++) {
		dataArray.push({});
		dataArray[i][&quot;title&quot;] = elms[i].title;
		dataArray[i][&quot;coreThumb&quot;] = elms[i].media::group.media::thumbnail[0].@url;
		dataArray[i][&quot;vidURL&quot;] = elms[i].media::group.media::player.@url;
		dataArray[i][&quot;duration&quot;] = elms[i].media::group.yt::duration.@seconds;
		dataArray[i][&quot;viewCount&quot;] = elms[i].yt::statistics.@viewCount;
		dataArray[i][&quot;commentCount&quot;] = elms[i].gd::comments.gd::feedLink.@countHint;
		dataArray[i][&quot;favoriteCount&quot;] = elms[i].yt::statistics.@favoriteCount;

		loadThumbs(dataArray[i][&quot;coreThumb&quot;], i);
		loadText(i, dataArray);
	}
}
</pre>
<p>You can see an initial for loop which pulls out elements from each XML file and stores them into an array. This is referenced with each variable call underneath <code>dataArray.push({})</code>.</p>
<p>Setting <code>dataArray[i]</code> would create 6 individual arrays valued dataArray[0-5]. Within each of these we have sub-arrays containing video information.</p>
<p>This includes the core thumbnail, video URL, duration, number of comments, etc. This function is used to pump through all 6 videos inside a loop and extract bits of data from the response. With this data we then create a new array to house all the values we need and pass these into two more functions to display our finished product.</p>
<p><strong>loadThumbs</strong> is the first call which requires two parameters. The first param URL is looking for the external jpg thumbnail file while the second holds the index for which video ID we&#8217;re on (valued 0-5).</p>
<pre class="brush: as3; title: ; notranslate">function loadThumbs(url:String, index:int):void {
	var imgURLRequest:URLRequest = new URLRequest(url);
	var myImgLoader:Loader = new Loader();
	myImgLoader.load(imgURLRequest);

	myImgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);

	function thumbLoaded(e:Event):void {
		var myBitmapData:BitmapData = new BitmapData(myImgLoader.width, myImgLoader.height);
		myBitmapData.draw(myImgLoader);

		var myBitmap:Bitmap = new Bitmap();
		myBitmap.bitmapData = myBitmapData;
		switch(index) {
			case 0:
				ytThumb0.addChild(myBitmap);
				break;
			case 1:
				ytThumb1.addChild(myBitmap);
				break;
			case 2:
				ytThumb2.addChild(myBitmap);
				break;
			case 3:
				ytThumb3.addChild(myBitmap);
				break;
			case 4:
				ytThumb4.addChild(myBitmap);
				break;
			case 5:
				ytThumb5.addChild(myBitmap);
				break;
		}
	}
}
</pre>
<p>We are pulling in another URL Loader to download each video thumbnail. From here we are actually creating a brand new bitmap file inside of Flash to re-create each image.</p>
<p>The benefit here is we can cache each image and store the contents for another query. This would be useful if you were offering access to multiple YouTube feeds and didn&#8217;t want to call a new request every time a new visitor came to the page.</p>
<p>We have another event listener which calls <strong>thumbLoaded</strong> once the image is finished. Then we create a new bitmap image variable named myBitmap and store the thumbnail data inside. Afterwards there&#8217;s a small switch clause breaking down 0-5 for each video ID. The code inside simply targets each Movie Clip and appends <code>addChild()</code> holding each thumbnail image.</p>
<h2 class=underLineTitle>Loading Video Text Data</h2>
<p>The last step required is pulling video data from our array and adding this onto our stage. For this we&#8217;ve written a function <strong>loadText</strong> which takes the current video ID and also the matching data array.</p>
<pre class="brush: as3; title: ; notranslate">function loadText(id:int, vidDataArray:Array):void {
	var myFormat:TextFormat = new TextFormat();
	myFormat.size = 13;
	myFormat.font = &quot;Arial&quot;;
	myFormat.color = 0x0066FF;
	myFormat.underline = true;	

	var myDescFormat:TextFormat = new TextFormat();
	myDescFormat.size = 11;
	myDescFormat.bold = true;

	var mytext = this['ytTitle'+id];
	var mydesc = this['ytDesc'+id];

	var vidTitle:String = vidDataArray[id][&quot;title&quot;];
	var vidUrl:String = vidDataArray[id][&quot;vidURL&quot;];
	var vidDur:int = vidDataArray[id][&quot;duration&quot;]; // duration in seconds
	var vidDurMin:String = Math.floor(vidDur/60) + &quot;:&quot; + vidDur%60; //duration in minutes
	var vidViews:String = splitNumber(vidDataArray[id][&quot;viewCount&quot;]);
	var vidComms:int = vidDataArray[id][&quot;commentCount&quot;];
	var vidFav:int = vidDataArray[id][&quot;favoriteCount&quot;];

	mytext.wordWrap = true;
	mytext.defaultTextFormat = myFormat;

	mydesc.defaultTextFormat = myDescFormat;
	mydesc.textColor = 0x333333;
	mydesc.text = &quot;Time: &quot; + vidDurMin + &quot;\r&quot;;
	mydesc.text += &quot;Views: &quot; + vidViews + &quot;\r&quot;;
	mydesc.text += &quot;Comments: &quot; + vidComms + &quot;\r&quot;;
	mydesc.text += &quot;Favorites: &quot; + vidFav + &quot;\r&quot;;

	var htmlstring:String = '&amp;lt;a href=&quot;' + vidUrl + '&quot; target=&quot;_blank&quot;&gt;' + vidTitle + '&amp;lt;/a&gt;';
	mytext.htmlText = htmlstring;

}
</pre>
<p>The beginning lines use a variable myFormat to create a new text formatting. This is a dynamic way to create text input data and import the settings into a project without physically adding any onto the stage. There is no real benefit of this way other than saving file space. However it is good practice to introduce yourself to both methods and choose whichever works best!</p>
<p><img  alt="Actionscript Programming"  src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/01/project-export-test.jpg" /></p>
<p>We are creating new variables to hold the video data. More specifically we will be accessing the video&#8217;s title, URL, duration (and convert this from seconds to minutes), total views, total comments, and total favorites.</p>
<p>Using <strong>myText</strong> as a new text area we can append these elements with <code>htmlText</code>. From this each video ID will loop through the XML event handler and add all the images and text onto stage.</p>
<p>With this should complete our code! You can test your movie from <em>control->test movie</em> or ctrl+enter on Windows. If you&#8217;d like to reference my project code you can <a rel="nofollow" href="project_files.zip">download the archive here</a>. Included are both the .fla file and the .swf finished movie product.</p>
<p>This has been an introduction into developing over YouTube&#8217;s API. The project was created for the purpose of writing in many different structures and testing different programming styles. ActionScript is very robust and provides an excellent platform for API data manipulation.</p>
<a class="learnmore" href="http://media.pelfusion.com/code/actionscript-youtube-api.zip"><span> Download Source </span></a>
<div style="clear:both;"></div>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/tutorials/building-in-flash-on-the-youtube-api-with-actionscript-3-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Winners of Premium Combo Package from Wix</title>
		<link>http://pelfusion.com/giveaways/winners-of-premium-combo-package-from-wix/</link>
		<comments>http://pelfusion.com/giveaways/winners-of-premium-combo-package-from-wix/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 10:11:54 +0000</pubDate>
		<dc:creator>Ferman</dc:creator>
				<category><![CDATA[Giveaways]]></category>
		<category><![CDATA[contests]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[giveaway]]></category>
		<category><![CDATA[wix]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=11068</guid>
		<description><![CDATA[Recently we started a contest to Win Wix’s Premium Combo Package ($99 Value!). The contest is ended now and we would like to thank Wix.com and all the participants of the contest. We have a total of 3 winners and each one will get the Wix’s Premium Combo Package ($99 Value!) All the winners are [...]]]></description>
			<content:encoded><![CDATA[<p>Recently we started a contest to <a href="http://pelfusion.com/giveaways/win-wix-premium-combo-package-99-value/">Win Wix’s Premium Combo Package</a> ($99 Value!). The contest is ended now and we would like to thank Wix.com and all the participants of the contest.</p>
<p>We have a total of 3 winners and each one will get the Wix’s Premium Combo Package ($99 Value!)</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/12/wix-winners.jpg" alt="" title="wix-winners" width="540" height="210" class="alignleft size-full wp-image-11069" /></p>
<p>All the winners are randomly selected, you can see the name of lucky ones below:</p>
<p><strong>TAHITITI</strong><br />
<strong>psysci</strong><br />
<strong>KAYLA</strong></p>
<p>All winners will be emailed with details as to how to claim their prizes. Thanks again to everyone for participating.</p>
<p><strong>Here are some little things you have to do to activate your coupon!</strong></p>
<p>- On Wix homepage click Premium<br />
- Click GO<br />
- log in and choose website you want to upgrade<br />
- put mouse on website draft and when the Menu &#8221; View edit upgrade&#8221; appears click on upgrade<br />
- choose Combo and click on Buy Now<br />
- make choice regarding domain and Continue<br />
- put promotional code and Submit Purchase.</p>
<p>Here is the code: <em>-code will be emailed to winners-</em></p>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/giveaways/winners-of-premium-combo-package-from-wix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Giveaway – Win Wix’s Premium Combo Package ($99 Value!)</title>
		<link>http://pelfusion.com/giveaways/win-wix-premium-combo-package-99-value/</link>
		<comments>http://pelfusion.com/giveaways/win-wix-premium-combo-package-99-value/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 15:40:40 +0000</pubDate>
		<dc:creator>Ferman</dc:creator>
				<category><![CDATA[Giveaways]]></category>
		<category><![CDATA[contests]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[giveaway]]></category>
		<category><![CDATA[wix]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=10752</guid>
		<description><![CDATA[We always want to bring something special to our readers and we are happy to announce that we have a wonderful contest today sponsored by Wix. We will select 3 winners and each will receive a Wix’s Premium Combo Package, worth 99$, for one year. What&#8217;s Included in this Premium Combo Package? The premium Combo [...]]]></description>
			<content:encoded><![CDATA[<p>We always want to bring something special to our readers and we are happy to announce that we have a wonderful contest today sponsored by <a href="http://pelfusion.com/tools/create-a-beautiful-free-flash-website-using-wix-website-builder/">Wix</a>. We will select 3 winners and each will receive a Wix’s Premium Combo Package, worth 99$, for one year. </p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/wix-combo-plan-free.jpg" alt="wix-combo-plan-free" title="wix-combo-plan-free" width="540" height="210" class="alignleft size-full wp-image-10762" /><br/></p>
<h2>What&#8217;s Included in this Premium Combo Package?</h2>
<p>The premium Combo package gives you the following features:</p>
<ul>
<li>a possibility to use your own domain (instead of a domain that starts with <a rel="nofollow" href="http://wix.com/your" target="_blank">wix.com/your</a> website&#8217;s name.</li>
<li> Wix ads free &#8211; removes the Wix ads from your site’s footer and sidebar. </li>
<li> Remove Wix logo &#8211; removes the wix logo from your site including favicon and loader. </li>
<li>Google Analytics &#8211; Google Analytics is a powerful tool for analyzing traffic to your Wix website. You can track site visitors, where they come from, how long they stay, what keywords they <br />
use to find your site and more.</li>
<li> 1GB storage &#8211; Increasing your storage space will enable you to upload large files and high-resolution content with ease. </li>
<li> 1GB Bandwidth &#8211; Increasing your bandwidth will allow more data to be transmitted at a faster and smoother speed. </li>
<li> Premium support. </li>
<li> 125$ voucher &#8211; $75 Google AdWords voucher + $50 Facebook voucher + free domain coupon + tips on how to use your vouchers &amp; info on connecting your Wix site. </li>
</ul>
<h2>How to Win?</h2>
<p>This will be a twitter exclusive contest. Very simple to participate. Just tweet:</p>
<blockquote><p>Win <a rel="nofollow" href="http://twitter.com/wix">@wix</a> Premium Combo Package from <a rel="nofollow" href="http://twitter.com/pelfusion">@pelfusion</a> &#8211; http://bit.ly/aGzoZj (RT to Enter)</p></blockquote>
<p>After tweeting, simply come back to this post and comment with a link to your tweet and your username.</p>
<p>or </p>
<p>Simply leave a comment below with valid email address for us to contact you. </p>
<p><strong>It&#8217;s very important that you are following <a rel="nofollow" href="http://twitter.com/pelfusion">@pelfusion</a> on twitter, so we can send a Direct Message to notify the winners.</strong></p>
<h2>When will the Contest End?</h2>
<p>Winners will be chosen randomly, and the contest shall end on 26th November 2010. </p>
<h2>About Wix</h2>
<p>Wix is a free website builder tool, for quick and easy creation of quality <a rel="nofollow" href="http://www.wix.com/?utm_campaign=se_pelfusion.com&#038;experiment_id=FW">Flash websites</a>. Wix’s advantage is that it’s search engines friendly, allowing you to create a website that looks great without knowledge in coding or programing. the welcoming editor is a simple drag n’ drop tool that makes life easy and fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/giveaways/win-wix-premium-combo-package-99-value/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>HTML5 vs. Flash : The Community Has Spoken</title>
		<link>http://pelfusion.com/design/html5-vs-flash-the-community-has-spoken/</link>
		<comments>http://pelfusion.com/design/html5-vs-flash-the-community-has-spoken/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 14:35:08 +0000</pubDate>
		<dc:creator>Robert Bowen</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[adobe flash]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=10553</guid>
		<description><![CDATA[One of the hottest debates raging through the online design and development communities right now is the HTML5 versus Flash discussion, and it seems that most of the people that I have talked to have already chosen sides. There are so many in the community avidly touting the death of their least favorite technology in [...]]]></description>
			<content:encoded><![CDATA[<p>One of the hottest debates raging through the online design and development communities right now is the HTML5 versus Flash discussion, and it seems that most of the people that I have talked to have already chosen sides. There are so many in the community avidly touting the death of their least favorite technology in this battle for the future domination of the web as we know it. This is not a new debate by any stretch, in fact, you can find echoes of this battle reaching back for a couple of years now. However, with the recent explosion of the mobile web and Apple&#8217;s latest product introductions, this debate has reignited with new fervor and testing of brand loyalties.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/html5vsflash.jpg" alt="" width="540" height="250" class="alignnone size-full wp-image-10585" /></p>
<p>The online community certainly has their favorites and this debate has played heavily on those personal preferences to pit developer vs. developer, designer vs. designer, and developer vs. designer as this argument continues to unnecessarily divide the masses. The web is a dynamic and evolving playing field whose scope and capacity change near annually, so naturally these kinds of tech battles are going to be present, but what we have to remember is that these battles do not settle the issue. They do not declare the winner, they simply split the community into arguable factions who rant and rave, push and pull, to get the brand that holds their loyalty to rise the victor.</p>
<h2 class=underLineTitle>The Crux of the Situation</h2>
<p>The situation seems to be a volatile one, all stemming from the fact that these two technologies have some overlap. This has many on both sides of the fence decrying that the other is useless and no longer has a role to play in the future of the web. Both sides have their reasons, however, most of those reasons are minor contextual instances of the app not fully functioning properly or as effortlessly as they would like, rather than an evaluation of the entire scope and functionality of either participant in this fight for dominance. When this full evaluation is made, we see a different narrative begin to surface.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/ragingdebate.jpg" alt="" width="540" height="250" class="alignnone size-full wp-image-10581" /></p>
<p>But still the battle rages between those standing on either side of this fence, and we have to wonder if much of this comes down to posturing. Because while the debate between individuals carries on, those looking at the testing and performance evaluations have a different take on which one will prevail as the web continues its evolution. So it does not seem the like the proverbial jury is still out on this subject as much as they are just wondering why they are even here in the first place. Below are a several links gathered from around the web to show how this battle is really playing out.</p>
<h2 class=underLineTitle>HTML5</h2>
<p>From across the vast sea of cyberspace, I went in search of those who have evaluated HTML5 and from these experiments have concluded that the winner of this fight will be HTML5. After reading <a rel="nofollow" href="http://mashable.com/2010/02/23/web-faceoff-adobe-flash-vs-html5/">Mashable&#8217;s Web Faceoff between Flash and HTML5</a>, I honestly believed that HTML5 would come out on top. Or at least that is what the poll was indicating with over 60% of the participants came down on the HTML5 side. With its capabilities of easily embedding video and audio into your web applications, HTML5 has been hailed as the &#8216;Flash Killer&#8217;, but the results show things differently. In fact, there were not many articles that held to this assassination assumption once the testing began, below are a couple of the ones I came across.</p>
<h3><a rel="nofollow" href="http://www.apple.com/hotnews/thoughts-on-flash/">Thoughts on Flash</a></h3>
<p>Steve Jobs list of &#8216;reasons&#8217; why Flash no longer has a place in the future of the web.</p>
<p><a rel="nofollow" href="http://www.apple.com/hotnews/thoughts-on-flash/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image1.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10556" /></a></p>
<h3><a rel="nofollow" href="http://inatux.com/?r=html5-vs-flash-open-letter-to-adobe">HTML5 vs Flash: An Open Letter to Adobe</a></h3>
<p><a rel="nofollow" href="http://inatux.com/?r=html5-vs-flash-open-letter-to-adobe"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image2.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10557" /></a></p>
<h2 class=underLineTitle>Flash</h2>
<p>Now that we have looked at a couple of the articles hailing HTML5 as the eventual victor of this battle for market dominance, we have a few that landed on the other side when the testing began. And while Flash seems to have had more supporters writing about their expected success once the dust has settled, it is important to point out that Flash has been filling this role for longer than HTML5 and so naturally one would expect more people to come out in favor of Flash. With so many already dedicated to this app and so many who have devoted their time and energy to learning how to master it, it is easy to understand the push for its victory. But that does not always translate to what is best, as much as it does translate to what is easiest. And this should be a debate about functionality not familiarity.</p>
<h3><a rel="nofollow" href="http://www.readwriteweb.com/archives/does_html5_really_beat_flash_surprising_results_of_new_tests.php">Does HTML5 Really Beat Flash? Surprising Results of New Tests</a></h3>
<p><a rel="nofollow" href="http://www.readwriteweb.com/archives/does_html5_really_beat_flash_surprising_results_of_new_tests.php"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image3.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10558" /></a></p>
<h3><a rel="nofollow" href="http://thenextweb.com/apple/2010/05/14/html5-vs-flash-what-you-havent-heard/">HTML5 vs Flash: What You Haven&#8217;t Heard</a></h3>
<p><a rel="nofollow" href="http://thenextweb.com/apple/2010/05/14/html5-vs-flash-what-you-havent-heard/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image5.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10559" /></a></p>
<h3><a rel="nofollow" href="http://phandroid.com/2010/04/01/speed-test-flash-vs-html5-on-the-nexus-one/">Speed Test: Flash vs HTML5 on the Nexus One</a></h3>
<p><a rel="nofollow" href="http://phandroid.com/2010/04/01/speed-test-flash-vs-html5-on-the-nexus-one/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image4.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10560" /></a></p>
<h3><a rel="nofollow" href="http://www.flashlab.com/html5/">Flashlab&#8217;s Look at HTML5</a></h3>
<p><a rel="nofollow" href="http://www.flashlab.com/html5/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image6.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10561" /></a></p>
<h2 class=underLineTitle>Both Have their Place</h2>
<p>Somewhat surprisingly &#040;especially if you follow the fervor of the debate&#041;, what most of the articles that have been published on this fight for the future have deduced, is that when the dust settles, both HTML5 and Flash will be left standing. Perhaps they will be holding smaller shares of the online video and audio markets than were initially projected, but the consensus seems to be that they will both have roles in the future of the design and development communities. From the testing that has been done so far, and with the thoughtful evaluations of both competing technologies the resounding winner seems that a shared landscape is the future, rather than a more exclusive one with either Flash or HTML5 shutting out the other.</p>
<h3><a rel="nofollow" href="http://remysharp.com/2010/02/08/html5-vs-flash/">HTML5 vs Flash</a></h3>
<p><a rel="nofollow" href="http://remysharp.com/2010/02/08/html5-vs-flash/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image7.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10563" /></a></p>
<h3><a rel="nofollow" href="http://gizmodo.com/5490205/html5-vs-flash-the-video-benchmark-deathmatch">HTML5 vs Flash: The Video Benchmark Deathmatch</a></h3>
<p><a rel="nofollow" href="http://gizmodo.com/5490205/html5-vs-flash-the-video-benchmark-deathmatch"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image8.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10564" /></a></p>
<h3><a rel="nofollow" href="http://techcrunch.com/2010/02/05/the-future-of-web-content-html5-flash-mobile-apps/">The Future of Web Content: HTML5, Flash, and Mobile Apps</a></h3>
<p><a rel="nofollow" href="http://techcrunch.com/2010/02/05/the-future-of-web-content-html5-flash-mobile-apps/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image9.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10565" /></a></p>
<h3><a rel="nofollow" href="http://chris.pirillo.com/html5-vs-flash/">HTML5 vs Flash</a></h3>
<p><a rel="nofollow" href="http://chris.pirillo.com/html5-vs-flash/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image10.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10566" /></a></p>
<h3><a rel="nofollow" href="http://news.cnet.com/8301-30685_3-20000037-264.html">HTML vs. Flash: Can a turf war be avoided?</a></h3>
<p><a rel="nofollow" href="http://news.cnet.com/8301-30685_3-20000037-264.html"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image11.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10567" /></a></p>
<h3><a rel="nofollow" href="http://www.infoworld.com/d/developer-world/html5-vs-flash-the-case-flash-721?page=0,2">HTML5 vs. Flash: The case for Flash</a></h3>
<p><a rel="nofollow" href="http://www.infoworld.com/d/developer-world/html5-vs-flash-the-case-flash-721?page=0,2"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image12.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10568" /></a></p>
<h3><a rel="nofollow" href="http://www.smashingmagazine.com/2010/05/18/html5-and-flash-why-its-not-a-war-and-why-flash-wont-die/">HTML5 And Flash: Why It&#8217;s Not A War, And Why Flash Won&#8217;t Die</a></h3>
<p><a rel="nofollow" href="http://www.smashingmagazine.com/2010/05/18/html5-and-flash-why-its-not-a-war-and-why-flash-wont-die/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image13.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10569" /></a></p>
<h3><a rel="nofollow" href="http://threeminds.organic.com/2010/09/html5-vs-flash.html">HTML5 vs Flash</a></h3>
<p><a rel="nofollow" href="http://threeminds.organic.com/2010/09/html5-vs-flash.html"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image14.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10570" /></a></p>
<h3><a rel="nofollow" href="http://www.bizreport.com/2010/08/flash-vs-html5-what-you-need-to-know.html#">Flash vs HTML5: What You Need to Know</a></h3>
<p><a rel="nofollow" href="http://www.bizreport.com/2010/08/flash-vs-html5-what-you-need-to-know.html#"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image15.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10571" /></a></p>
<h3><a rel="nofollow" href="http://www.alistapart.com/articles/flashstandards/">Flash and Standards: The Cold War of the Web</a></h3>
<p><a rel="nofollow" href="http://www.alistapart.com/articles/flashstandards/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image16.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10572" /></a></p>
<h2 class=underLineTitle>See for Yourself</h2>
<p>Below are a few more links that you can investigate for yourself so that you can see some of the creative comparison models that have been presented throughout the web. If you thought you already had your mind made up, take a look at the following links and you just might find your preference slightly shifting.</p>
<h3><a rel="nofollow" href="http://www.craftymind.com/guimark2/">GUIMark 2: The rise of HTML5</a></h3>
<p>Shows some in-depth testing of the two technologies.<br />
<a rel="nofollow" href="http://www.craftymind.com/guimark2/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image17.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10574" /></a></p>
<h3><a rel="nofollow" href="http://html5vsflash.tumblr.com/">HTML5 vs Flash</a></h3>
<p>A tumblog dedicated to side by side comparisons of both in action.<br />
<a rel="nofollow" href="http://html5vsflash.tumblr.com/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image18.jpg" alt="" width="540" height="218" class="alignnone size-full wp-image-10575" /></a></p>
<h3><a rel="nofollow" href="http://articles.cnn.com/2010-11-02/tech/html5.flash.pong_1_adobe-s-flash-pong-html5?_s=PM:TECH">HTML5 vs Flash? Pick a side with &#8216;Pong&#8217;</a></h3>
<p>It is a fun way to decide for yourself which you prefer through a playable Pong game created with each.<br />
<a rel="nofollow" href="http://articles.cnn.com/2010-11-02/tech/html5.flash.pong_1_adobe-s-flash-pong-html5?_s=PM:TECH"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image19.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10576" /></a></p>
<h3><a rel="nofollow" href="http://www.williammalone.com/articles/flash-vs-html5-canvas-drawing/">Flash vs HTML5 Canvas Drawing</a></h3>
<p>It is an interesting comparison of drawing in both.<br />
<a rel="nofollow" href="http://www.williammalone.com/articles/flash-vs-html5-canvas-drawing/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image20.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10577" /></a></p>
<h3><a rel="nofollow" href="http://designwoop.com/2010/04/show-me-whatcha-got-html-5-vs-flash-showcase/">Show Me Whatcha Got! HTML5 vs Flash Showcase</a></h3>
<p><a rel="nofollow" href="http://designwoop.com/2010/04/show-me-whatcha-got-html-5-vs-flash-showcase/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/image21.jpg" alt="" width="540" height="220" class="alignnone size-full wp-image-10578" /></a></p>
<h2 class=underLineTitle>In The End</h2>
<p>Both HTML5 and Flash have their draws as well as their drawbacks at this point, but the bottom line is that they are both versatile technologies that are not limited to the overlapping functionalities they possess. Therefore, the design and development communities will have to adapt to the changes that are sure to occur, but will those changes end in the extinction of one of these two competitors for the future? More than likely, no. They will eventually settle into their niches and continue to feed the overall beast that is the internet. If there is to be an extinction level event that shapes the future of our playing field with regards to either of these two technologies, then we are still far from that reality&#8217;s head rearing itself into our paths. And I suspect that it would occur for reasons we have yet to discover.</p>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/design/html5-vs-flash-the-community-has-spoken/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>45 Most Amazing 3D Flash Websites</title>
		<link>http://pelfusion.com/inspiration/45-most-amazing-3d-flash-websites/</link>
		<comments>http://pelfusion.com/inspiration/45-most-amazing-3d-flash-websites/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 14:27:54 +0000</pubDate>
		<dc:creator>Ferman</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Showcases]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash websites]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=10198</guid>
		<description><![CDATA[Flash web sites are amazing but if you give 3D touch to them, they become outstanding. There are few who don&#8217;t like flash because they think it&#8217;s not best medium for usability and accessibility, we leave it to them, but still flash web sites are fun to watch. Here is a collection of the best [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://pelfusion.com/freebies/40-free-high-quality-flash-web-templates/">Flash web</a> sites are amazing but if you give 3D touch to them, they become outstanding. There are few who don&#8217;t like flash because they think it&#8217;s not best medium for usability and accessibility, we leave it to them, but still flash web sites are fun to watch.</p>
<p>Here is a collection of the best 3D <a href="http://pelfusion.com/inspiration/flash-websites-dynamic/">Flash Websites</a> for those who love flash and those who don&#8217;t i recommend do check them out.</p>
<h3>1. <a rel="nofollow" href="http://www.markez-models.com/#">Markez Models</a></h3>
<p><a rel="nofollow" href="http://www.markez-models.com/#"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/markez-models-flash.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" title="Flash Web Sites" width="540" height="407" class="whiteBrdr alignleft size-full wp-image-10308" /></a></p>
<h3>2. <a rel="nofollow" href="http://simcityds.ea.com/">SimCity</a></h3>
<p><a rel="nofollow" href="http://simcityds.ea.com/"><img class="whiteBrdr aligncenter size-full wp-image-10201" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Sim-City1.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="400" /></a></p>
<h3>3. <a rel="nofollow" href="http://realcasual.com.ua/">Real Casual</a></h3>
<p><a rel="nofollow" href="http://realcasual.com.ua/"><img class="whiteBrdr aligncenter size-full wp-image-10202" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Real-Casual.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="400" /></a></p>
<h3>4. <a rel="nofollow" href="http://www.mauriciostudio.com/">Mauricio Studio</a></h3>
<p><a rel="nofollow" href="http://www.mauriciostudio.com/"><img class="whiteBrdr aligncenter size-full wp-image-10203" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Mauricio-Studio.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>5. <a rel="nofollow" href="http://www.newworkcity.com.au/">New Work City</a></h3>
<p><a rel="nofollow" href="http://www.newworkcity.com.au/"><img class="whiteBrdr aligncenter size-full wp-image-10206" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/New-Work-City.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>6. <a rel="nofollow" href="http://www.erguvanplatin.com/">Erguvan Platin</a></h3>
<p><a rel="nofollow" href="http://www.erguvanplatin.com/"><img class="whiteBrdr aligncenter size-full wp-image-10207" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Erguvan-Platin.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>7. <a rel="nofollow" href="http://www.digitalscience.za.org/flash.htm">Digital Science</a></h3>
<p><a rel="nofollow" href="http://www.digitalscience.za.org/flash.htm"><img class="whiteBrdr aligncenter size-full wp-image-10208" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Digital-Science.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>8. <a rel="nofollow" href="http://ripestudio.com/_index.php">Ripe Studio</a></h3>
<p><a rel="nofollow" href="http://ripestudio.com/_index.php"><img class="whiteBrdr aligncenter size-full wp-image-10210" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Ripe-Studio.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>9. <a rel="nofollow" href="http://www.rezmultimedia.com/indexl_re.html">Rez Multimedia</a></h3>
<p><a rel="nofollow" href="http://www.rezmultimedia.com/indexl_re.html"><img class="whiteBrdr aligncenter size-full wp-image-10211" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Rez-Multimedia.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>10. <a rel="nofollow" href="http://www.playmedia.co.nz/">PlayMedia</a></h3>
<p><a rel="nofollow" href="http://www.playmedia.co.nz/"><img class="whiteBrdr aligncenter size-full wp-image-10212" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/PlayMedia.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>11. <a rel="nofollow" href="http://www.gettheglass.com/">Get the Glass</a></h3>
<p><a rel="nofollow" href="http://www.gettheglass.com"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/get-the-glass.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="394" class="whiteBrdr alignleft size-full wp-image-10314" /></a></p>
<h3>12. <a rel="nofollow" href="http://orangedan.net/v7/">Orang Edan</a></h3>
<p><a rel="nofollow" href="http://orangedan.net/v7/"><img class="whiteBrdr aligncenter size-full wp-image-10215" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Orang-Edan.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>13. <a rel="nofollow" href="http://prismgirl.org/">PrismGirl</a></h3>
<p><a rel="nofollow" href="http://prismgirl.org/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/11/prismgirl.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="394" class="whiteBrdr alignleft size-full wp-image-10315" /></a></p>
<h3>14. <a rel="nofollow" href="http://www.laserlines.com/">Laser Lines</a></h3>
<p><a rel="nofollow" href="http://www.laserlines.com/"><img class="whiteBrdr aligncenter size-full wp-image-10218" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Laser-Lines.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>15. <a rel="nofollow" href="http://www.doctorstones.com/#/portfolio">Doctor Stones</a></h3>
<p><a rel="nofollow" href="http://www.doctorstones.com/#/portfolio"><img class="whiteBrdr aligncenter size-full wp-image-10219" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Doctor-Stones.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>16. <a rel="nofollow" href="http://www.2advanced.com/">2 Advanced</a></h3>
<p><a rel="nofollow" href="http://www.2advanced.com/"><img class="whiteBrdr aligncenter size-full wp-image-10220" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/2-Advanced.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>17. <a rel="nofollow" href="http://www.agencynet.com/">Agency Net</a></h3>
<p><a rel="nofollow" href="http://www.agencynet.com/"><img class="whiteBrdr aligncenter size-full wp-image-10222" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Agency-Net.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>18. <a rel="nofollow" href="http://www.ecodazoo.com/">Ecodazoo</a></h3>
<p><a rel="nofollow" href="http://www.ecodazoo.com/"><img class="whiteBrdr aligncenter size-full wp-image-10223" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Ecodazoo.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>19. <a rel="nofollow" href="http://www.mindsmack.com/">Mind Smack</a></h3>
<p><a rel="nofollow" href="http://www.mindsmack.com/"><img class="whiteBrdr aligncenter size-full wp-image-10224" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Mind-Smack.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>20. <a rel="nofollow" href="http://www.campari.com/">Campari</a></h3>
<p><a rel="nofollow" href="http://www.campari.com/"><img class="whiteBrdr aligncenter size-full wp-image-10226" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Campari.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>21. <a rel="nofollow" href="http://www.vb2.com.ec/#">Vb2</a></h3>
<p><a rel="nofollow" href="http://www.vb2.com.ec/#"><img class="whiteBrdr aligncenter size-full wp-image-10227" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Vb2.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="350" /></a></p>
<h3>22. <a rel="nofollow" href="http://www.michaelewing.co.uk/f_index.html?showIntro=true">Mew Tube</a></h3>
<p><a rel="nofollow" href="http://www.michaelewing.co.uk/f_index.html?showIntro=true"><img class="whiteBrdr aligncenter size-full wp-image-10230" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Mew-Tube.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>23. <a rel="nofollow" href="http://www.meintru3d.com/">Meintru 3D</a></h3>
<p><a rel="nofollow" href="http://www.meintru3d.com/"><img class="whiteBrdr aligncenter size-full wp-image-10231" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Meintru-3D.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>24. <a rel="nofollow" href="http://www.nike.com/jumpman23/aj2010/">Nike</a></h3>
<p><a rel="nofollow" href="http://www.nike.com/jumpman23/aj2010/"><img class="whiteBrdr aligncenter size-full wp-image-10232" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Nike.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>25. <a rel="nofollow" href="http://www.transformersgame.com/">Transformers Game</a></h3>
<p><a rel="nofollow" href="http://www.transformersgame.com/"><img class="whiteBrdr aligncenter size-full wp-image-10233" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Transformers-Game.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>26. <a rel="nofollow" href="http://www.scionxpressionism.com/">Scion Xpressionism</a></h3>
<p><a rel="nofollow" href="http://www.scionxpressionism.com/"><img class="whiteBrdr aligncenter size-full wp-image-10234" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Scion-Xpressionism.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>27. <a rel="nofollow" href="http://www.mariokart.com/wii/launch/">Marik Art</a></h3>
<p><a rel="nofollow" href="http://www.mariokart.com/wii/launch/"><img class="whiteBrdr aligncenter size-full wp-image-10235" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Mario-Kart.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>28. <a rel="nofollow" href="http://www.strasserauf.de/">Strasserauf</a></h3>
<p><a rel="nofollow" href="http://www.strasserauf.de/"><img class="whiteBrdr aligncenter size-full wp-image-10240" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Strasserauf.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="290" /></a></p>
<h3>29. <a rel="nofollow" href="http://www.whitevoid.com/o2cando/">White Void</a></h3>
<p><a rel="nofollow" href="http://www.whitevoid.com/o2cando/"><img class="whiteBrdr aligncenter size-full wp-image-10241" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/White-Void.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="250" /></a></p>
<h3>30. <a rel="nofollow" href="http://www.fifastreet3.com/flash/wk/player.asp">Fifa Street3</a></h3>
<p><a rel="nofollow" href="http://www.fifastreet3.com/flash/wk/player.asp"><img class="whiteBrdr aligncenter size-full wp-image-10242" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Fifa-Street3.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="250" /></a></p>
<h3>31. <a rel="nofollow" href="http://www.hatica.com/hatica3d.html">Hatica</a></h3>
<p><a rel="nofollow" href="http://www.hatica.com/hatica3d.html"><img class="whiteBrdr aligncenter size-full wp-image-10243" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Hatica.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="250" /></a></p>
<h3>32. <a rel="nofollow" href="http://www.plantate.net/">Plantate</a></h3>
<p><a rel="nofollow" href="http://www.plantate.net/"><img class="whiteBrdr aligncenter size-full wp-image-10244" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Plantate.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>33. <a rel="nofollow" href="http://www.theeggrepublic.com/">The Egg Republic</a></h3>
<p><a rel="nofollow" href="http://www.theeggrepublic.com/"><img class="whiteBrdr aligncenter size-full wp-image-10245" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/The-Egg-Republic.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="290" /></a></p>
<h3>34. <a rel="nofollow" href="http://www.premiyum.se/#/moments">Premiyum</a></h3>
<p><a rel="nofollow" href="http://www.premiyum.se/#/moments"><img class="whiteBrdr aligncenter size-full wp-image-10248" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Premiyum.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="290" /></a></p>
<h3>35. <a rel="nofollow" href="http://www.twistanddrink.com/en/island/">Twist and Drink</a></h3>
<p><a rel="nofollow" href="http://www.twistanddrink.com/en/island/"><img class="whiteBrdr aligncenter size-full wp-image-10249" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Twist-and-Drink.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="290" /></a></p>
<h3>36. <a rel="nofollow" href="http://www.dasai.es/">Dasai</a></h3>
<p><a rel="nofollow" href="http://www.dasai.es/"><img class="whiteBrdr aligncenter size-full wp-image-10250" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Dasai.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="290" /></a></p>
<h3>37. <a rel="nofollow" href="http://www.modularweb.net/piecemaker/#/English/Home">Modular Web</a></h3>
<p><a rel="nofollow" href="http://www.modularweb.net/piecemaker/#/English/Home"><img class="whiteBrdr aligncenter size-full wp-image-10251" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Modular-Web.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="290" /></a></p>
<h3>38. <a rel="nofollow" href="http://www.philterdesign.com/#">Philter Design</a></h3>
<p><a rel="nofollow" href="http://www.philterdesign.com/#"><img class="whiteBrdr aligncenter size-full wp-image-10252" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Philter-Design.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>39. <a rel="nofollow" href="http://www.13flo.com/">13 Flo</a></h3>
<p><a rel="nofollow" href="http://www.13flo.com/"><img class="whiteBrdr aligncenter size-full wp-image-10253" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/13-Flo.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="300" /></a></p>
<h3>40. <a rel="nofollow" href="http://cortexdesign.de/">Cortex Design</a></h3>
<p><a rel="nofollow" href="http://cortexdesign.de/"><img class="whiteBrdr aligncenter size-full wp-image-10254" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Cortex-Design.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="280" /></a></p>
<h3>41. <a rel="nofollow" href="http://www.chuyue.net/v5/">Chuyue</a></h3>
<p><a rel="nofollow" href="http://www.chuyue.net/v5/"><img class="whiteBrdr aligncenter size-full wp-image-10255" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Chuyue.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="280" /></a></p>
<h3>42. <a rel="nofollow" href="http://www.ferrariworldabudhabi.com/">Ferrari</a></h3>
<p><a rel="nofollow" href="http://www.ferrariworldabudhabi.com/"><img class="whiteBrdr aligncenter size-full wp-image-10256" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Ferrari.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="280" /></a></p>
<h3>43. <a rel="nofollow" href="http://www.bandit3.com/">Bandit3</a></h3>
<p><a rel="nofollow" href="http://www.bandit3.com/"><img class="whiteBrdr aligncenter size-full wp-image-10257" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Bandit3.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="280" /></a></p>
<h3>44. <a rel="nofollow" href="http://www.syfy.com/tinman/oz/">Syfy</a></h3>
<p><a rel="nofollow" href="http://www.syfy.com/tinman/oz/"><img class="whiteBrdr aligncenter size-full wp-image-10261" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Syfy.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="280" /></a></p>
<h3>45. <a rel="nofollow" href="http://www.optuswhalesong.com.au/">Optus Whale Song</a></h3>
<p><a rel="nofollow" href="http://www.optuswhalesong.com.au/"><img class="whiteBrdr aligncenter size-full wp-image-10262" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Optus-Whale-Song.jpg" alt="3D Flash Web Sites" title="Flash Web Sites" width="540" height="280" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/inspiration/45-most-amazing-3d-flash-websites/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>40 Free High-Quality Flash Web Templates</title>
		<link>http://pelfusion.com/freebies/40-free-high-quality-flash-web-templates/</link>
		<comments>http://pelfusion.com/freebies/40-free-high-quality-flash-web-templates/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 19:10:40 +0000</pubDate>
		<dc:creator>Teguh Yulianto</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash site]]></category>
		<category><![CDATA[flash templates]]></category>
		<category><![CDATA[flash websites]]></category>
		<category><![CDATA[web templates]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=9948</guid>
		<description><![CDATA[Do you like a style template with flash? Of course you love it, this is because some things, such as your website looks more animate, interesting, and also seem more professional. There are so many flash templates that you can get on the Internet, both free and paid. Which one wills you choice? And if you&#8217;re interested in [...]]]></description>
			<content:encoded><![CDATA[<p>Do you like a style template with <a href="http://pelfusion.com/inspiration/45-most-amazing-3d-flash-websites/">flash</a>? Of course you love it, this is because some things, such as your website looks more animate, interesting, and also seem more professional. There are so many <strong>flash templates</strong> that you can get on the Internet, both free and paid. Which one wills you choice? And if you&#8217;re interested in trying some kind of template, there are a few <a href="http://pelfusion.com/showcases/24-experimental-flash-sites-for-your-inspiration/">examples of flash templates</a> for you, and it&#8217;s free.</p>
<h3>1. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/art/ultimate-museum-site">The Ultimate Museum Site</a><br />
<a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/art/ultimate-museum-site"><img class="whiteBrdr aligncenter size-full wp-image-9949" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/The-Ultimate-Museum-Site.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>2. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/community/boy-scout-green-template">The Boy Scout Green Template</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/community/boy-scout-green-template"><img class="whiteBrdr aligncenter size-full wp-image-9950" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/The-Boy-Scout-Green-Template.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>3. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/hotels/gray-hotel-template">The Gray Hotel Template</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/hotels/gray-hotel-template"><img class="whiteBrdr aligncenter size-full wp-image-9951" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/The-Gray-Hotel-Template.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>4. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/smartco-business-company">Smartco Business Company</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/smartco-business-company"><img class="whiteBrdr aligncenter size-full wp-image-9952" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/SMARTCO-Business-Company.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>5. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/photography/photographers-portfolio">Photographer&#8217;s Portfolio</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/photography/photographers-portfolio"><img class="whiteBrdr aligncenter size-full wp-image-9953" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Photographers-Portfolio.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>6. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/yellow-business-site">The Yellow Business Site</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/yellow-business-site"><img class="whiteBrdr aligncenter size-full wp-image-9954" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/The-Yellow-Business-Site.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>7. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/restaurants/european-restaurant">European Restaurant</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/restaurants/european-restaurant"><img class="whiteBrdr aligncenter size-full wp-image-9955" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/European-Restaurant.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>8. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/cars/auto-company">Auto Company</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/cars/auto-company"><img class="whiteBrdr aligncenter size-full wp-image-9956" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Auto-Company.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>9. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/music/your-own-band-template">Your Own Band Template</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/music/your-own-band-template"><img class="whiteBrdr aligncenter size-full wp-image-9958" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Your-Own-Band-Template.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>10. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/wedding/our-wedding-template">Our Wedding Template</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/wedding/our-wedding-template"><img class="whiteBrdr aligncenter size-full wp-image-9959" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Our-Wedding-Template.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>11. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/cars/car-dealer-template">The Car Dealer Template</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/cars/car-dealer-template"><img class="whiteBrdr aligncenter size-full wp-image-9960" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/The-Car-Dealer-Template.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>12. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/business-constructions-2">Business Constructions 2</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/business-constructions-2"><img class="whiteBrdr aligncenter size-full wp-image-9961" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Business-Constructions-2.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>13. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/cars/caronline">Car Online</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/cars/caronline"><img class="whiteBrdr aligncenter size-full wp-image-9962" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/CarOnline.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>14. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/books/books-company">Books Company 2</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/books/books-company"><img class="whiteBrdr aligncenter size-full wp-image-9963" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Books-Company-2.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>15. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/personal/blue-family-page">The Blue Family Page</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/personal/blue-family-page"><img class="whiteBrdr aligncenter size-full wp-image-9964" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/The-Blue-Family-Page.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>16. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/personal/my-brown-personal-site">My Brown Personal Site</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/personal/my-brown-personal-site"><img class="whiteBrdr aligncenter size-full wp-image-9965" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/My-Brown-Personal-Site.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>17. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/personal/glamodels">GlaModels</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/personal/glamodels"><img class="whiteBrdr aligncenter size-full wp-image-9966" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/GlaModels.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>18. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/animals/animal-official-site">Animal Official Site</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/animals/animal-official-site"><img class="whiteBrdr aligncenter size-full wp-image-9967" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Animal-Official-Site.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>19. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/consulting-group">Consulting Group</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/consulting-group"><img class="whiteBrdr aligncenter size-full wp-image-9968" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Consulting-Group.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>20. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/ecommerce/new-collection"> New Collection</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/ecommerce/new-collection"><img class="whiteBrdr aligncenter size-full wp-image-9969" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/New-Collection.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>21. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/corporate-center">Corporate Center</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/corporate-center"><img class="whiteBrdr aligncenter size-full wp-image-9970" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Corporate-Center.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>22. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/global-online-digital-solutions">Global Digital Solutions Online</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/global-online-digital-solutions"><img class="whiteBrdr aligncenter size-full wp-image-9971" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Global-Digital-Solutions-Online.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>23. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/communication-company">Communication Company</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/communication-company"><img class="whiteBrdr aligncenter size-full wp-image-9972" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Communication-Company.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>24. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/global-business-ideas">Global Business Ideas</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/global-business-ideas"><img class="whiteBrdr aligncenter size-full wp-image-9973" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Global-Business-Ideas.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>25. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/photography/online-creative-solutions">Online Creative Solutions</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/photography/online-creative-solutions"><img class="whiteBrdr aligncenter size-full wp-image-9974" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Online-Creative-Solutions.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>26. <a rel="nofollow" href="http://www.smashflash.com/free-flash-templates/cars/super-bike-club">Super Bike Club</a></h3>
<p><a rel="nofollow" href="http://www.smashflash.com/free-flash-templates/cars/super-bike-club"><img class="whiteBrdr aligncenter size-full wp-image-9975" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/super-bike-club.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>27. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/business-corporate">Business Corporate</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/business/business-corporate"><img class="whiteBrdr aligncenter size-full wp-image-9976" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Business-Corporate.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>28. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/fashion/create-your-style"> Create Your Style</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/fashion/create-your-style"><img class="whiteBrdr aligncenter size-full wp-image-9977" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Create-Your-Style.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>29. <a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/music/disco-club">Disco Club</a></h3>
<p><a rel="nofollow" href="http://www.massivetemplates.com/free-flash-templates/music/disco-club"><img class="whiteBrdr aligncenter size-full wp-image-9978" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Disco-Club.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>30. <a rel="nofollow" href="http://www.smashflash.com/free-flash-templates/fashion/fashion-portfolio">Fashion Portfolio</a></h3>
<p><a rel="nofollow" href="http://www.smashflash.com/free-flash-templates/fashion/fashion-portfolio"><img class="whiteBrdr aligncenter size-full wp-image-9979" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/fashion-portfolio.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>31. <a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_218_s_shape">S-Shape</a></h3>
<p><a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_218_s_shape"><img class="whiteBrdr aligncenter size-full wp-image-9980" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/S-Shape.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>32. <a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_165_pure_hd">Pure HD Touch</a></h3>
<p><a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_165_pure_hd"><img class="whiteBrdr aligncenter size-full wp-image-9981" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Pure-HD-Touch.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>33. <a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_163_chocolate">Chocolate Website</a></h3>
<p><a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_163_chocolate"><img class="whiteBrdr aligncenter size-full wp-image-9982" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Chocolate-Website.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>34. <a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_134_design">Design Studio</a></h3>
<p><a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_134_design"><img class="whiteBrdr aligncenter size-full wp-image-9983" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Design-Studio.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>35. <a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_103_microphone">Microphone company</a></h3>
<p><a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_103_microphone"><img class="whiteBrdr aligncenter size-full wp-image-9986" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Microphone-company.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>36. <a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_080_movie">Movie</a></h3>
<p><a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_080_movie"><img class="whiteBrdr aligncenter size-full wp-image-9987" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Movie.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>37. <a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_045_elastic">Elastic</a></h3>
<p><a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_045_elastic"><img class="whiteBrdr aligncenter size-full wp-image-9988" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Elastic.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>38. <a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_033_design">Design</a></h3>
<p><a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_033_design"><img class="whiteBrdr aligncenter size-full wp-image-9989" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Design-.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>39. <a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_089_design">Studio Design</a></h3>
<p><a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_089_design"><img class="whiteBrdr aligncenter size-full wp-image-9990" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Studio-Design.jpg" alt="flash web templates" width="540" height="400" /></a></p>
<h3>40. <a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_074_film">Film</a></h3>
<p><a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_074_film"><img class="whiteBrdr aligncenter size-full wp-image-9991" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/10/Film.jpg" alt="flash web templates" width="540" height="400" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/freebies/40-free-high-quality-flash-web-templates/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>The Power of Flash &#8211; TemplateMonster’s Survey</title>
		<link>http://pelfusion.com/design-news/the-power-of-flash-templatemonster-survey/</link>
		<comments>http://pelfusion.com/design-news/the-power-of-flash-templatemonster-survey/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 14:28:03 +0000</pubDate>
		<dc:creator>Ferman</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[survey]]></category>
		<category><![CDATA[template monster]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=9609</guid>
		<description><![CDATA[Nothing communicates your project message and statement better than the spectacular Flash animation, this toll really makes a website as impressive as possible. Flash-animated sites impress us with the exciting videos, effective slideshows, original text effects and much more. It seems that this technology is everywhere and it is really impossible to imagine today’s web [...]]]></description>
			<content:encoded><![CDATA[<p>Nothing communicates your project message and statement better than the spectacular Flash animation, this toll really makes a website as impressive as possible. Flash-animated sites impress us with the exciting videos, effective slideshows, original text effects and much more. It seems that this technology is everywhere and it is really impossible to imagine today’s web without it. When Flash appeared, we were impressed by all of its interactive features, but after some time we began complaining about its minor drawbacks and not all of those complaints were reasonable. </p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/09/templatemonster-survey2.jpg" alt="TemplateMonster Flash Technology Suvey" /></p>
<p>To finally find out the truth, TemplateMonster has started the <a rel="nofollow" href="http://www.templatemonster.com/flash-2010-survey.php" target="_blank">survey about Flash technology</a>. The goal of this survey is to find out what role Flash technologies plays in our life today and to know our opinion about its importance. Your age, sex, occupation and social position don’t matter. Whether you are a professional web developer or just a person spending time on the Internet, your opinion is of great importance. Plus, by taking this survey you’ll be able to get access to its results afterwards &#8211; priceless results by the way letting you know the types of website that Flash is best for, whether anyone cares about SEO for Flash and Mobile Flash, etc. You just won’t find data like this anywhere.</p>
<p>TemplateMonster starts this campaign along with their media partners that also care about Flash. Each of us and Internet community in general can influence the development of some processes, and even such global thing as Flash is not an exception, that’s why every single opinion matters. </p>
<p>Don’t stand aside, share your opinion on the TemplateMonster’s survey page!</p>
<p><a rel="nofollow" href="http://www.templatemonster.com/flash-2010-survey.php"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/09/flash-2010-survey-button.jpg" alt="flash survey"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/design-news/the-power-of-flash-templatemonster-survey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Technology in Photo Gallery Websites</title>
		<link>http://pelfusion.com/design-news/flash-technology-in-photo-gallery-websites/</link>
		<comments>http://pelfusion.com/design-news/flash-technology-in-photo-gallery-websites/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 12:15:45 +0000</pubDate>
		<dc:creator>Ferman</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Flash Component]]></category>
		<category><![CDATA[Photo galleries]]></category>
		<category><![CDATA[Promo]]></category>
		<category><![CDATA[Slideshow]]></category>
		<category><![CDATA[template monster]]></category>
		<category><![CDATA[xml galleries]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=9546</guid>
		<description><![CDATA[It is indisputable that Flash helps to keep an engaging website content with its interesting and stylish approaches for multimedia presentation. For professional photographs, art designs, an architectural model or design studio portfolio, graphic arts, paintings or some other special exhibits, Flash technology is a perfect way to go online. One of its evident advantages [...]]]></description>
			<content:encoded><![CDATA[<p>It is indisputable that <a href="http://pelfusion.com/freebies/40-free-high-quality-flash-web-templates/">Flash</a> helps to keep an engaging website content with its interesting and stylish approaches for multimedia presentation. For professional photographs, art designs, an architectural model or design studio portfolio, graphic arts, paintings or some other special exhibits, <strong>Flash technology</strong> is a perfect way to go online. One of its evident advantages is the ability to create splendid <a href="http://pelfusion.com/freebies/15-free-dynamic-flash-xml-photo-galleries/">slideshows and interactive Flash interfaces for photo galleries</a>. Flash is often the excellent solution to make the most attractive presentation and enhance site’s functionality. Using this powerful technology, you are capable to create smart navigations, a wide range of transition effects for a lasting impression, various unique gallery styles, menus, and much more. Flash utilizes advanced animations and special effects to turn your photo gallery website into an experience that your visitors won&#8217;t soon forget. So if you are looking for a design that will really intrigue and engage the audience, Flash is the solution you need. </p>
<p>Let’s take, for instance, the Flash Photo Gallery that is basically an easy and powerful tool for setting up and running a Flash site with an integrated photo gallery section. It is by far the most prominent solution to develop impressive layout and extensive usability through a convenient admin panel that controls an image posting process. So we can see that Flash Gallery-powered websites are currently extremely popular for image-oriented web projects. And if you desire to be the proud owner of a spectacular Flash Photo Gallery, TemplateMonster can assist to quickly develop an awesome online presentation, photo gallery or slideshow for presenting your ideas in a best way. Its photo gallery designs have a stylish Flash-powered photo gallery front end and handy tools combined with ease of installation and customization on the back end.  </p>
<p>With flexible image management, the gallery in these templates can be edited via the convenient admin panel (which is included into Flash Photo Galleries as an ordinary .SWF file), plus the content of a website can also be edited using the XML file. With any of TemplateMonster’s Flash photo galleries, site owners have a bunch of neat tools to add comments to the images, set preview details (width, height, spacing etc.), or manage the images online (crop tool, flip, rotate and resize). Basically, the straightforward functionality makes their gallery way more user-friendly.</p>
<p><a rel="nofollow" href="http://www.templatemonster.com/dynamic-flash-photo-galleries.php"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/09/flash-photo-gallery-templates.jpg" width="550" alt="flash photo gallery"></a></p>
<p>But the most interesting part goes here &#8211; starting September 20th 2010 until September 30th 2010 the company offers a new promo for this category of templates. During only 10 days the <a rel="nofollow" href="http://www.templatemonster.com/dynamic-flash-photo-galleries.php" target="_blank">Flash Photo Galleries</a> are exclusively available at a huge 40% discount. So make it quick to browse those Flash photo gallery templates to pick the one for your project. Get yourself a fancy online image gallery and you&#8217;ll be the envy of everyone!</p>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/design-news/flash-technology-in-photo-gallery-websites/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>15 Free Dynamic Flash XML Photo Galleries</title>
		<link>http://pelfusion.com/freebies/15-free-dynamic-flash-xml-photo-galleries/</link>
		<comments>http://pelfusion.com/freebies/15-free-dynamic-flash-xml-photo-galleries/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 19:32:30 +0000</pubDate>
		<dc:creator>Ferman</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Flash Component]]></category>
		<category><![CDATA[Photo galleries]]></category>
		<category><![CDATA[Slideshow]]></category>
		<category><![CDATA[xml galleries]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=9263</guid>
		<description><![CDATA[Thanks to internet and resources available that you don&#8217;t have to develop anything from scratch. Just search, pick up the best and start working on it. Same is the case with photo galleries there are lots of dynamic Flash XML photo galleries for free. In this web roundup i tried to pick some of the [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to internet and resources available that you don&#8217;t have to develop anything from scratch. Just search, pick up the best and start working on it. Same is the case with photo galleries there are lots of dynamic Flash XML photo galleries for free. In this web roundup i tried to pick some of the best free <a href="http://pelfusion.com/inspiration/45-most-amazing-3d-flash-websites/">Flash</a> photo galleries on the Internet.</p>
<p>Almost all types of animation effects are in these 15 <a href="http://pelfusion.com/freebies/40-free-high-quality-flash-web-templates/">free dynamic Flash</a> XML photo galleries.</p>
<h3>1. <a rel="nofollow" href="http://www.entheosweb.com/Flash/Photo_Gallery4/index.asp">Free Flash and XML Slideshow Photo Gallery</a></h3>
<p>This is totally free Dynamic Flash Slideshow Photo Gallery. You can easily add, edit or delete images and thumbnails by editing an xml file in Notepad. Creating your own Flash slideshow photo gallery has never been easier!</p>
<p><a rel="nofollow" href="http://www.entheosweb.com/Flash/Photo_Gallery4/index.asp"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-1.jpg" alt="Free Flash and XML Slideshow Photo Gallery" title="Free Flash and XML Slideshow Photo Gallery" width="540" height="428" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>2. <a rel="nofollow" href="http://www.sephiroth.it/file_detail.php?id=153#">FlashFlickr PhotoGallery</a></h3>
<p>A photogallery made in Flex2/AS3 using Flickr API. This application let users to browse your flickr pictures, see your sets, tags and notes.</p>
<p><a rel="nofollow" href="http://www.sephiroth.it/file_detail.php?id=153#"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-2.jpg" alt="FlashFlickr PhotoGallery" title="FlashFlickr PhotoGallery" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>3. <a rel="nofollow" href="http://www.alessandroronchi.com/photodiary10/#photodiary10-english">PhotoDiary 1.0</a></h3>
<p>PhotoDiary 1.0 is a web application developed by Webgriffe which lets you to easily publish a brand new photo blog on the web.</p>
<p><a rel="nofollow" href="http://www.alessandroronchi.com/photodiary10/#photodiary10-english"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-3.jpg" alt="PhotoDiary 1.0" title="PhotoDiary 1.0" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>4. <a rel="nofollow" href="http://www.paulvanroekel.nl/picasa/flashpageflip/">Flash Page Flip Photo Gallery template for Picasa</a></h3>
<p>This template is based on the free version of the FlashPageFlip flash engine on www.flashpageflip.com. </p>
<p><a rel="nofollow" href="http://www.paulvanroekel.nl/picasa/flashpageflip/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-4.jpg" alt="Flash Page Flip Photo Gallery template" title="Flash Page Flip Photo Gallery template" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>5. <a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_205_stack_gallery">FlashMo Stack Photo Gallery</a></h3>
<p>Stack Gallery is a flash xml photo gallery that supports HTML CSS in photo description textfield. It can be integrated with any flash template in actionscript 3. </p>
<p><a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_205_stack_gallery"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-5.jpg" alt="FlashMo Stack Photo Gallery" title="FlashMo Stack Photo Gallery" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>6. <a rel="nofollow" href="http://www.ws-slideshow.com/">WS-Slideshow</a></h3>
<p>A free flash slideshow gallery with vertial thumbnails slider.</p>
<p><a rel="nofollow" href="http://www.ws-slideshow.com/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-6.jpg" alt="WS-Slideshow" title="WS-Slideshow" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>7. <a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_129_circle">FlashMo Circle Gallery</a></h3>
<p>Circular thumbnail XML gallery with a mouse wheel scroller using Flash CS3 ActionScript 3.</p>
<p><a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_129_circle"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-7.jpg" alt="FlashMo Circle Gallery" title="FlashMo Circle Gallery" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>8. <a rel="nofollow" href="http://www.dezinerfolio.com/2007/06/07/dfgallery/">dfGallery 1.0</a></h3>
<p>dfGallery is one of the coolest Galleries currently on the Web. </p>
<p><a rel="nofollow" href="http://www.dezinerfolio.com/2007/06/07/dfgallery/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-8.jpg" alt="dfGallery 1.0" title="dfGallery 1.0" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>9. <a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_121_3d_grid_gallery">3D Grip Photo Gallery</a></h3>
<p>3D Grid &#8211; Flash Photo Gallery using Papervision3D and XML.</p>
<p><a rel="nofollow" href="http://www.flashmo.com/preview/flashmo_121_3d_grid_gallery"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-9.jpg" alt="3D Grip Photo Gallery" title="3D Grip Photo Gallery" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>10. <a rel="nofollow" href="http://www.simpleviewer.net/simpleviewer/">SimpleViewer</a></h3>
<p>SimpleViewer is a free, customizable Flash image gallery. It allows you to display your images on any web page in a professional, intuitive and simple way.</p>
<p><a rel="nofollow" href="http://www.simpleviewer.net/simpleviewer/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-10.jpg" alt="SimpleViewer" title="SimpleViewer" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>11. <a rel="nofollow" href="http://www.tonyyoo.com/gallery/gallery.html">Tony Photo Album</a></h3>
<p>Tony photo album is elegant and free flash photo gallery.</p>
<p><a rel="nofollow" href="http://www.tonyyoo.com/gallery/gallery.html"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-11.jpg" alt="Tony Photo Album" title="Tony Photo Album" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>12. <a rel="nofollow" href="http://www.veppa.com/services/flash-photo-gallery.php">Free Flash Photo Album</a></h3>
<p>Dynamic Picture loading, easy to install and easy to change content. Ability to show up to 1200 images.</p>
<p><a rel="nofollow" href="http://www.veppa.com/services/flash-photo-gallery.php"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-12.jpg" alt="Free Flash Photo Album" title="Free Flash Photo Album" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>13. <a rel="nofollow" href="http://www.veppa.com/services/flash-photo-gallery.php">AutoViewer</a></h3>
<p>AutoViewer is a free, customizable Flash image gallery. AutoViewer is designed to display a linear sequence of images and captions.</p>
<p><a rel="nofollow" href="http://www.simpleviewer.net/autoviewer/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-13.jpg" alt="AutoViewer" title="AutoViewer" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>14. <a rel="nofollow" href="http://www.airtightinteractive.com/projects/tiltviewer/">TiltViewer</a></h3>
<p>TiltViewer is a free, customizable Flash image gallery. TiltViewer is designed to display a sequence of images in tilt view.</p>
<p><a rel="nofollow" href="http://www.airtightinteractive.com/projects/tiltviewer/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-14.jpg" alt="TiltViewer" title="TiltViewer" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
<h3>15. <a rel="nofollow" href="http://www.no3dfx.com/polaroid/">Polaroid Gallery v.1.01</a></h3>
<p>The script loads images and image titles dynamically from an external xml file or a flickr RSS feed. </p>
<p><a rel="nofollow" href="http://www.no3dfx.com/polaroid/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/flash-photo-gallery-15.jpg" alt="Polaroid Gallery v.1.01" title="Polaroid Gallery v.1.01" width="540" class="alignleft size-full wp-image-9264 whiteBrdr" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/freebies/15-free-dynamic-flash-xml-photo-galleries/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Dynamic Flash Websites : Dare to enjoy?</title>
		<link>http://pelfusion.com/inspiration/flash-websites-dynamic/</link>
		<comments>http://pelfusion.com/inspiration/flash-websites-dynamic/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 14:51:56 +0000</pubDate>
		<dc:creator>Nida Ezdi</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Showcases]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash websites]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=9031</guid>
		<description><![CDATA[The innovative technological age we live in has fashioned Web-building software and services catering to aspiring designers who dare to create websites surrounding their unique and bold inspirations. These tools are the dimensions allowing for superior interactivity and phenomenal visual layout, among which Flash, Javascript and Papervision 3D are just a few of the popular [...]]]></description>
			<content:encoded><![CDATA[<p>The innovative technological age we live in has fashioned Web-building software and services catering to aspiring designers who dare to create websites surrounding their unique and bold inspirations. These tools are the dimensions allowing for superior interactivity and phenomenal visual layout, among which Flash, Javascript and Papervision <a href="http://pelfusion.com/inspiration/45-most-amazing-3d-flash-websites/">3D</a> are just a few of the popular instruments adhered. In fact, these features are the primary elements of web design that attract and entertain visitors and viewers into the very artistic concepts and promotions of various <a href="http://pelfusion.com/freebies/40-free-high-quality-flash-web-templates/">different websites</a>.</p>
<p>Below is a compilation of several <a href="http://pelfusion.com/showcases/24-experimental-flash-sites-for-your-inspiration/">flash websites</a> that have employed the enticing amusement of these elements, producing a mixture of inimitable ideas exclusively complemented by the distinctive effects of <a href="http://pelfusion.com/tutorials/the-most-useful-flash-tutorial-resources/">Flash</a> and Javascript. These will surely have you glued to your monitor screen for hours on end. Enjoy!</p>
<h3><a rel="nofollow" href="http://zoomquilt2.madmindworx.com/zoomquilt2.swf">Zoomquilt II</a></h3>
<p>Zoomquilt II is a fantastic Flash zoom animation which consists of images created by twenty collaborative artists in the ultimate creation of a never-ending alternate universe which carries you from one scene to another in perfect harmony, creating a fantastic landscape of psychedelic themes.</p>
<p><a rel="nofollow" href="http://zoomquilt2.madmindworx.com/zoomquilt2.swf"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/zoomquilt-2-flash-website.jpg" alt="" title="zoomquilt-2-flash-website" width="540" height="300" class="alignleft size-full wp-image-9032 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://www.embraceyourelement.com">Element</a></h3>
<p>This flash based site is an original grunge themed website promoting the &#8216;Element&#8217; energy drink. It cinsists of a very stylish introduction and suberb 3D graphics which result in its fanatic look. The site is further complemented by dedicated sounds and themes directing to Element&#8217;s four flavours : Water, Earth, Fire and Air; each one revealing a unique little secret, allowing you to experiment and play with them.</p>
<p><a rel="nofollow" href="http://www.embraceyourelement.com/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/element-flash-website.jpg" alt="" title="element-flash-website" width="540" height="300" class="alignleft size-full wp-image-9035 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://www.optuswhalesong.com.au/">Optus Whale Song</a></h3>
<p>&#8220;When it comes to communication, anything is possible.&#8221; And truly said. This is a beautiful website committed to the protection of endangered animals. It is based on the magical idea of writing a song for a whale, whereby an orchestra floats on the surface of the ocean and you are to use your keyboard to compose a song for a whale. Exceptional graphics portrayed in underwater scenes and mesmerizing musical notes make this experience truly magical.</p>
<p><a rel="nofollow" href="http://www.optuswhalesong.com.au"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/optus-whale-flash-website.jpg" alt="" title="optus-whale-flash-website" width="540" height="300" class="alignleft size-full wp-image-9036 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://www.sciencemuseum.org.uk/whoami/thingdom">Thingdom</a></h3>
<p>Thingdom is an interactive flash field for the creation of a &#8220;thing&#8221;, for which you will select traits, genetics, cells and chromosomes, making it a creature of its own for you to breed and evolve. This is an entertaining life simulation activity site that has proven to be appealing for adults and children alike, through its inviting graphics and flash effects as well as customization.</p>
<p><a rel="nofollow" href="http://www.sciencemuseum.org.uk/whoami/thingdom"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/thingdom-flash-website.jpg" alt="" title="thingdom-flash-website" width="540" height="300" class="alignleft size-full wp-image-9037 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://www.silenzio.fr/#/en/movies/name/1051">Silenzio</a></h3>
<p>Silenzio is essentially a 3D movie library with maginificent 3D transitions. The layout is a structure of smooth animation and allows the viewer to hover over a variety of different movies laid down in a perfect table catering to exquisite graphic effects resulting in interesting options for selection.</p>
<p><a rel="nofollow" href="http://www.silenzio.fr/#/en/movies/name/1051"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/silenzio-flash-website.jpg" alt="" title="silenzio-flash-website" width="540" height="300" class="alignleft size-full wp-image-9039 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://www.sensisoft.com">Sensi Soft</a></h3>
<p>Although Sensi Soft is a global service specializing in classified advertising solutions, its execution is its Flash based web design is a matter of marvel. It allows the viewer to experience the journey through time and space of revolution. It comprisies of beautiful 3D scene animation and equally fitting sound effects encouraging you to travel through different time periods by just one click of your mouse.</p>
<p><a rel="nofollow" href="http://www.sensisoft.com/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/sensi-soft-flash-website.jpg" alt="" title="sensi-soft-flash-website" width="540" height="300" class="alignleft size-full wp-image-9040 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://www.habitat7.de">Habitat Seven</a></h3>
<p>Habitat Seven comprisies of all the dimensions and characteristics of different designers and illustrators experimenting with their creativity. The sky is truly the limit! This has proven to be the personal playground of unconventional artists looking for inspiration.</p>
<p><a rel="nofollow" href="http://www.habitat7.de"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/habitat-seven-flash-website.jpg" alt="" title="habitat-seven-flash-website" width="540" height="300" class="alignleft size-full wp-image-9041 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://www.syfy.com/tinman/oz/">Infinite Oz</a></h3>
<p>The Infinite Oz is a compilation of the works of nine acclaimed international artists depicting a captivating journey through different sci-fi worlds, each replacing the last in it&#8217;s infinite aura of a world beyond reality.</p>
<p><a rel="nofollow" href="http://www.syfy.com/tinman/oz/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/infinite-oz-flash-website.jpg" alt="" title="infinite-oz-flash-website" width="540" height="300" class="alignleft size-full wp-image-9042 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://ilovethistrash.com/">I Love This Trash</a></h3>
<p>I Love This Trash is truly an unconventional and entertaining way of picking your…drug of choice? Jokes aside, this flash based website is practially a library of the different stimulators raged popularly all over the world. The fresh and youthful Flash animations and transitions exhibit the quotas of people like yourself from different parts of the world, voting for their favorite vice, (anonymously so, I might add) with charts, geo-statistics and other features.</p>
<p><a rel="nofollow" href="http://ilovethistrash.com/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/ilovetrash-flash-website.jpg" alt="" title="ilovetrash-flash-website" width="540" height="300" class="alignleft size-full wp-image-9043 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://ecsw.pl/">Ecsw</a></h3>
<p>Ecsw is a great flash website with a cool flash introduction. The most interesting characteristic of this site is it allows you view and walk around the building of a contemporary art gallery by yourself in a virtual manner, from one level to another, to another. Whether you&#8217;re one who loves virtual tours and simulations or just looking for gallery ideas for your next exhibition, this is definitely a worthy stop-over.</p>
<p><a rel="nofollow" href="http://ecsw.pl"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/ecsw-flash-website.jpg" alt="" title="ecsw-flash-website" width="540" height="300" class="alignleft size-full wp-image-9044 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://www.comcasttown.com/">Comcast Town</a></h3>
<p>Comcast Town is a very bright and cheerful flash animation design following the theme of an ambitious virtual little town. You can explore the town by scrolling through the arrows and even virtually move into it and designing your new pad.</p>
<p><a rel="nofollow" href="http://www.comcasttown.com"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/comcast-flash-website.jpg" alt="" title="comcast-flash-website" width="540" height="300" class="alignleft size-full wp-image-9046 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://thedribbler.co.uk">The Dribbler Magazine</a></h3>
<p>The Dribbler is the first ever online magazine wholly dedicated to satirical football humour. It&#8217;s a tricky and stylish form of online sports literature and often comical, even ludicrous in its antics of the premiership game. In just a few words – British humour at its best!</p>
<p><a rel="nofollow" href="http://thedribbler.co.uk"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/dribber-mag-flash-websites.jpg" alt="" title="dribber-mag-flash-websites" width="540" height="300" class="alignleft size-full wp-image-9047 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://www.papervision3d.org">Papervision 3D</a></h3>
<p>This evocative website gives the viewer an enticing chance to explore the underwater world and the horizons of the ocean as well as the creatures that gracefully live in it. The open-source flash framework formally known as Papervision 3D is thus introduced by this interactive below-seas 3D environment.</p>
<p><a rel="nofollow" href="http://www.papervision3d.org"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/papervision-3d-flash-website.jpg" alt="" title="papervision-3d-flash-website" width="540" height="300" class="alignleft size-full wp-image-9049 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://www.ecodazoo.com/">The Eco Zoo</a></h3>
<p>The Eco Zoo is a 3D flash animation website which encourages and environmentally friendly lifestyle.It exhibits a tall nature friendly tower in a forest-like zoo where several deifferent animals live in harmony and encourage a peaceful way of life. You can visit each of these animals whilst exploring their rich 3D world.</p>
<p><a rel="nofollow" href="http://www.ecodazoo.com"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/eco-zoo-flash-website.jpg" alt="" title="eco-zoo-flash-website" width="540" height="300" class="alignleft size-full wp-image-9048 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://www.emergence-day.com/">Gears of War – Emergency Day</a></h3>
<p>Gears of war is a massive 3D animation scenario with exquisite 3D fade-in and fade-out transitions for each level. It is based on the video game &#8220;Gears of War&#8221; by Epic Games, surrounding the war theme around a chaotic and destructive time period wherein all technological and military barriers have been breached. This demo introductory website is a superb demonstration of its genre, likely to appeal to both adventure gamers and enthusiasts alike.</p>
<p><a rel="nofollow" href="http://www.emergence-day.com"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/gear-of-wars-flash-website.jpg" alt="" title="gear-of-wars-flash-website" width="540" height="300" class="alignleft size-full wp-image-9050 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://tunemylife.org">TUNE</a></h3>
<p>TUNE is an interactive flash multimedia library featuring the original music of selected composers, songwriters and artists in order to develop a feel-good sensation for young girls and women to enhance their life and health. It&#8217;s hover pause-and-play high quality audio and transitions are sure to leave a lasting pleasant impression.</p>
<p><a rel="nofollow" href="http://tunemylife.org"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/tune-flash-website.jpg" alt="" title="tune-flash-website" width="540" height="300" class="alignleft size-full wp-image-9051 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://ge.ecomagination.com/smartgrid/#/landing_page">Ge</a></h3>
<p>Ge is a three dimensional website comprising of animations of rich 3D objects and their utilization in three different 3D environments. It promotes the smart use of energy in an environmentally friendly way and fulfills it&#8217;s objectives by showing the contrast between virtual words with and without smart meters.</p>
<p><a rel="nofollow" href="http://ge.ecomagination.com/smartgrid/#/landing_page"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/eco-magination-flash-website.jpg" alt="" title="eco-magination-flash-website" width="540" height="300" class="alignleft size-full wp-image-9052 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://experience.kodakpulse.com">Kodak Pulse</a></h3>
<p>The Kodak Pulse website was originally designed to generate buzz around the Kodak Pulse digital frame. Its neat flash animation and transition layout allows visitors to create their own personalized Kodak photo stream and further interlacing it with various popular networking centers such as Facebook and Twitter.</p>
<p><a rel="nofollow" href="http://experience.kodakpulse.com"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/kodak-pulse-flash-website.jpg" alt="" title="kodak-pulse-flash-website" width="540" height="300" class="alignleft size-full wp-image-9053 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://battleofthecheetos.com">Battle of the Cheetos</a></h3>
<p>Battle of the Cheetos is a fun and entertaining website promotion the brand Cheetos in the most enjoyable way. The 3D Flash interface allows for viewers to participate in an online game wherein the player can fight an interactive Cheetos battle with their own Cheetos chip of choice, and customizable army and flag out on the World Wide &#8220;Battlefield&#8221;.</p>
<p><a rel="nofollow" href="http://battleofthecheetos.com"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/battle-with-cheetos-flash.jpg" alt="" title="battle-with-cheetos-flash" width="540" height="300" class="alignleft size-full wp-image-9054 whiteBrdr" /></a></p>
<h3><a rel="nofollow" href="http://cmart.design.ru/">Conclave Onscurum</a></h3>
<p>This website is actually a display of the artworks of an unconventionally unique artist. Its Flash based interface displays a spooky and grotesque themed introduction and style of art. Everything from the animations and transitions to the spine-chilling music and sounds will render the visitor into a world unknown</p>
<p><a rel="nofollow" href="http://cmart.design.ru/"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/07/conclave-flash-website.jpg" alt="" title="conclave-flash-website" width="540" height="300" class="alignleft size-full wp-image-9055 whiteBrdr" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/inspiration/flash-websites-dynamic/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Object Caching 1568/1669 objects using disk: basic
Content Delivery Network via cdn.pelfusion.com

Served from: pelfusion.com @ 2012-02-09 03:09:51 -->
