<?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>Rich Coder</title>
	<atom:link href="http://www.richcoder.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.richcoder.com</link>
	<description>LEARN. DO. SHARE.</description>
	<lastBuildDate>Sat, 19 Sep 2009 03:47:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adobe brings you e-Seminar sessions on Design, Web and Technical Writers</title>
		<link>http://www.richcoder.com/2009/09/19/adobe-brings-you-e-seminar-sessions-on-design-web-and-technical-writers/</link>
		<comments>http://www.richcoder.com/2009/09/19/adobe-brings-you-e-seminar-sessions-on-design-web-and-technical-writers/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 03:42:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Action Script]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[e-Seminers]]></category>

		<guid isPermaLink="false">http://www.richcoder.com/?p=379</guid>
		<description><![CDATA[




Adobe brings your e-Seminar sessions packed with the hottest and most-requested features.
Learn the very latest tips, tricks and advanced techniques that will give you the required skills to stand out in a competitive market and take your ideas and creativity to a whole new level.
All sessions are for one hour – 11:00 AM to 12:00 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.richcoder.com/wp-content/uploads/2009/09/Adobe-brings-your-e-Seminar-session-full.jpg" target="_balnk"><img src="http://www.richcoder.com/wp-content/uploads/2009/09/Adobe-brings-your-e-Seminar-session.jpg" alt="Adobe brings your e Seminar session Adobe brings you e Seminar sessions on Design, Web and Technical Writers" title="Adobe-brings-your-e-Seminar-session" width="500" height="286" class="aligncenter size-full wp-image-381" /></a></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5111680225854034";
/* 468x60, created 8/20/09 */
google_ad_slot = "8316648255";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>Adobe brings your e-Seminar sessions packed with the hottest and most-requested features.<br />
Learn the very latest tips, tricks and advanced techniques that will give you the required skills to stand out in a competitive market and take your ideas and creativity to a whole new level.</p>
<p>All sessions are for one hour – 11:00 AM to 12:00 PM</p>
<h3>Design sessions</h3>
<p><strong>Photoshop killer tips – WED, 7th October <br />
In -design Killer Tips &#8211;  Wed, 11th November <br />
Illustrator Killer tips &#8211; Web, 18th November</strong></p>
<h3>Web Sessions</h3>
<p><strong>Flash Killer Tips – Web, 23rd September <br />
Dreamweaver Killer Tips – Wed, 14th October <br />
Flash Action Scripting – Web, 4th November</strong></p>
<h3>Technical Writers’ Sessions</h3>
<p><strong>Easily Author and publish using Framermaker9 &#8211; Web, 28th October <br />
Beyond Screen Capture Adobe Captivate &#8211; Friday, 30th October</strong></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5111680225854034";
/* 468x60, created 8/20/09 */
google_ad_slot = "8316648255";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h3>What do you need to Participate?</h3>
<p>Online live seminars are scheduled events simulcast over the web via Adobe Acrobat connect Pro.<br />
You’ll need a computer with a browser, Abode Flash Player and internet connection. Audio is available via telephone (Local telephone numbers would be provided or dial in to the conference). Access details will be provided once you register.</p>
<p><a href="http://ms.npglobal.in/adobe/sep09/adobe.html" target="_blank" class="button">Register</a><br />
<br />
This session is conducting by &#8211; Channel Technologies (P) Ltd.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.richcoder.com/2009/09/19/adobe-brings-you-e-seminar-sessions-on-design-web-and-technical-writers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Ajax in your PHP code with XAJAX</title>
		<link>http://www.richcoder.com/2009/08/21/add-ajax-in-your-php-code-with-xajax/</link>
		<comments>http://www.richcoder.com/2009/08/21/add-ajax-in-your-php-code-with-xajax/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 17:31:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.richcoder.com/?p=368</guid>
		<description><![CDATA[




Using xajax  You can directly call php functions from your javascript code.
Xajax will do the rest.
For example, if you are going to write a javascript function Capitalize which captilaze your textbox content when you press a button.
Here is the pure html/javascript code for that:
=============================================

&#60;script&#62;

 function Capitalize()

 {

var t = document.getElementById(’cap’).value;

document.getElementById(’update’).innerHTML = t.toUpperCase() ;

 }

&#60;/script&#62;

&#60;input type=”text” [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.richcoder.com/wp-content/uploads/2009/08/Add-Ajax-in-your-PHP-code-with-XAJAX.jpg" alt="Add Ajax in your PHp code with XAJAX" title="Add Ajax in your PHp code with XAJAX" width="500" height="300" class="aligncenter size-full wp-image-372" /></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5111680225854034";
/* 468x60, created 8/20/09 */
google_ad_slot = "8316648255";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>Using xajax  You can directly call php functions from your javascript code.</p>
<p>Xajax will do the rest.</p>
<p>For example, if you are going to write a javascript function Capitalize which captilaze your textbox content when you press a button.</p>
<p>Here is the pure html/javascript code for that:</p>
<p>=============================================</p>
<pre>
<span><strong>&lt;script&gt;</strong></span>

<span> </span><strong>function</strong> Capitalize()

<span> </span>{

var t = document.getElementById(’cap’).value;

document.getElementById(’update’).innerHTML = t.toUpperCase() ;

<span> </span>}

<span><strong>&lt;/script&gt;</strong></span>

<span>&lt;input type=”text” id=”cap” name=”cap” /&gt;</span>

<span>&lt;input type=”button” id=”capbutton” value=”Capitalize” onclick=”Capitalize()” /&gt;</span>
</pre>
<p>
==============================================</p>
<p>Now see the difference when we use xajax, we can write this Capitalize function in php code and can call from javascript.</p>
<pre>
<strong>function</strong> Capitalize($value)

{

$objResponse = new xajaxResponse();

$objResponse-&gt;assign(”update”,”innerHTML”,strtoupper($value));

return $objResponse;

}
</pre>
<p>and you can call from your button’s onclick function:<br />
</p>
<pre>
<span> onclick=”xajax_Capitalize(document.getElementById(’cap’).value)” </span>
</pre>
<p>Here the same functionality we moved from client to server. Thus the point is you can simply call all the functions you written in php (Server Side) from javascript code via onClick, onMouseOver or window.onLoad etc.</p>
<p>You can get the full source code of Capitalize example here:</p>
<p><a href="http://www.sajithmr.com/downloads/capitalize.zip" class="button">Download</a></p>
<p>To download and for documentation go:</p>
<p><a href="http://xajaxproject.org/">http://xajaxproject.org/</a></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5111680225854034";
/* 468x60, created 8/20/09 */
google_ad_slot = "8316648255";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.richcoder.com/2009/08/21/add-ajax-in-your-php-code-with-xajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Your Site SEO Friendly</title>
		<link>http://www.richcoder.com/2009/08/21/make-your-site-seo-friendly/</link>
		<comments>http://www.richcoder.com/2009/08/21/make-your-site-seo-friendly/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 16:45:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.richcoder.com/?p=362</guid>
		<description><![CDATA[



By Vibha Babbar

What comes to our mind when we talk about an SEO friendly site? Keyword rich content, link building, optimized meta tags, and few other search engine techniques. These criterion can be easily achieved. The other SEO features that work from back-end are generally not looked into. These features when structurally followed, can produce [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-5111680225854034";
/* 468x60, created 8/20/09 */
google_ad_slot = "8316648255";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>By <a href="http://ezinearticles.com/?expert=Vibha_Babbar" target="_blank">Vibha Babbar</a></p>
<p><a href="http://ezinearticles.com/?expert=Vibha_Babbar" target="_blank"></a><br />
What comes to our mind when we talk about an SEO friendly site? Keyword rich content, link building, optimized meta tags, and few other search engine techniques. These criterion can be easily achieved. The other SEO features that work from back-end are generally not looked into. These features when structurally followed, can produce an effective online presence for your business.</p>
<p>Following are the few techniques that can be used to improve your website.</p>
<h3>Keywords</h3>
<p>Lately, it has become a myth that more the number of keywords, the better would be the ranking. Search engines have become much more smarter and unique. They consider the content on the basis of reasonably placed keywords. So no point rushing madly after keywords. An optimum and sensible use would do magic.</p>
<h3>Meta tags</h3>
<p>Meta tags include meta title, description, and keywords. It would not be wrong to say that meta tags control the content. They are the gateway to your site. Both the search engines, as well as the visitors judge the site by reading meta tags. Using the maximum number of keywords, along with a brief intro would do in your favor. Try incorporating all the main keywords here.</p>
<h3>Coding language</h3>
<p>It&#8217;s better to code the content of your website in HTML, so that the search engines can read it. Consider that search engines are lazy enough to go through the complicated site made in Flash, or one that includes many PDF documents in it. The search engines are not able to see the text in these languages, and that earns a bad point from SEO perspective.</p>
<h3>Valuable content</h3>
<p>As mentioned earlier, search engines have become way much smarter. All the major search engines like Google and Yahoo! judge the site on the basis of information provided. More the information, more would the spiders index towards your site. Also, these search engines have a deep dislike for identical content. Make sure the content you post is original and unique.</p>
<h3>Avoid excessive use of images</h3>
<p>Upload images wherever necessary. Overuse of images doesn&#8217;t help in SEO. On the contrary, it makes the site heavy, and difficult to run. For SEO purposes, use Alt tags for images. Alt tag is the background text to help SEO in images.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-5111680225854034";
/* 468x60, created 8/20/09 */
google_ad_slot = "8316648255";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.richcoder.com/2009/08/21/make-your-site-seo-friendly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Flash Photo Galleries and Tutorials which makes life easy</title>
		<link>http://www.richcoder.com/2009/08/13/free-flash-photo-galleries-and-tutorials-which-makes-life-easy/</link>
		<comments>http://www.richcoder.com/2009/08/13/free-flash-photo-galleries-and-tutorials-which-makes-life-easy/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 14:25:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://www.richcoder.com/?p=333</guid>
		<description><![CDATA[




(by Carlos)
In this web roundup, we have handpicked some of the best free Flash photo galleries on the Internet. From web based scripts, to Flash components ready to be integrated on your website. And on top of that, we’ve also included some cool tutorials that will help you to learn how to create your own [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-5111680225854034";
/* 468x60, created 8/20/09 */
google_ad_slot = "8316648255";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Free-Flash-Photo-Galleries-and-Tutorials.jpg" alt="Free Flash Photo Galleries and Tutorials which makes life easy"  class="aligncenter size-full" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></p>
<p><em>(by Carlos)</em></p>
<p>In this web roundup, we have handpicked some of the best <strong>free Flash photo galleries</strong> on the Internet. From web based scripts, to Flash components ready to be integrated on your website. And on top of that, we’ve also included some cool tutorials that will help you to learn how to create your own 2D and 3D Flash Galleries and how to turn it in a Flash Component.</p>
<h4 id="entry-header"><a href="http://www.sephiroth.it/file_detail.php?id=153#" target="_blank">FlashFlickr PhotoGallery</a><br />
</h4>
<p></p>
<p>A gallery from Sephiroth.it, based on Flex and Actionscript 3.0 that uses the famous Flickr API.</p>
<p><a href="http://www.sephiroth.it/file_detail.php?id=153"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/FlashFlickr-PhotoGallery.jpg" alt="FlashFlickr PhotoGallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.flashmo.com/preview/flashmo_121_3d_grid_gallery" target="_blank">Flashmo 3d Grid</a></h4>
<p></p>
<p>Flashmo is a well known free flash templates site, where you can find several cool interfaces like this 3D Grid gallery.</p>
<p><a href="http://www.flashmo.com/preview/flashmo_121_3d_grid_gallery"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/flashmo-3d-Grid.jpg" alt="Flashmo 3d Grid" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<p><span id="more-4321"></span></p>
<h4><a href="http://www.alessandroronchi.com/photodiary10/#photodiary10-english" target="_blank">PhotoDiary 1.0</a></h4>
<p></p>
<p>PhotoDiary is a Flash based gallery, cool for people that don&#8217;t have flash skills or would  like to have an application where easily could manage the photos on a normal  php back end.</p>
<p><a href="http://www.alessandroronchi.com/photodiary10/#photodiary10-english"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/photoDiary.jpg" alt="photoDiary 1.0" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.tonyyoo.com/gallery/gallery.html" target="_blank">Tony Photo Album</a></h4>
<p></p>
<p><a href="http://www.tonyyoo.com/gallery/gallery.html"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Tony-Photo-Album.jpg" alt="Tony Photo Album" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.flashmo.com/preview/flashmo_130_stack_gallery" target="_blank">FlashMo Stack Photo Gallery</a></h4>
<p></p>
<p>Another cool gallery from FlashMo.</p>
<p><a href="http://www.flashmo.com/preview/flashmo_130_stack_gallery"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/FlashMo-Stack-Photo-Gallery.jpg" alt="FlashMo Stack Photo Gallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.marcusschiesser.de/?p=67" target="_blank">3D Album</a></h4>
<p></p>
<p>This 3D album component is based on the bellow &quot;Building a 3D album with FIVe3D and TweenLite&quot; tutorial .</p>
<p><a href="http://www.marcusschiesser.de/?p=67"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/3D-Album.jpg" alt="3D Album" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://my.slideroll.com/" target="_blank">Slideroll Gallery AV</a></h4>
<p></p>
<p>Another very easy to manage flash gallery, that allows you to insert caption on each image.</p>
<p><a href="http://my.slideroll.com/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Slideroll-Gallery-AV.jpg" alt="Slideroll Gallery AV" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.ws-slideshow.com/" target="_blank">WS-Slideshow</a></h4>
<p></p>
<p><a href="http://www.ws-slideshow.com/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/ws-slideshow.jpg" alt="WS-Slideshow" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://imagin.ro/" target="_blank">Imagin Flash Photo Gallery</a></h4>
<p></p>
<p><a href="http://imagin.ro/" target="_blank"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Imagin-Flash-Photo-Gallery.jpg" alt="Imagin Flash Photo Gallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.flashmo.com/preview/flashmo_129_circle">FlashMo Circle Gallery</a></h4>
<p></p>
<p><a href="http://www.flashmo.com/preview/flashmo_129_circle"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/FlashMo-Circle-Gallery.jpg" alt="FlashMo Circle Gallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://flash-gallery.com/art-flash-gallery/demo/" target="_blank">Art Flash Gallery</a></h4>
<p></p>
<p><a href="http://flash-gallery.com/art-flash-gallery/demo/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Art-Flash-Gallery.jpg" alt="Art Flash Gallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://flash-gallery.com/zen-flash-gallery/" target="_blank">Zen Flash Gallery</a></h4>
<p></p>
<p><a href="http://flash-gallery.com/zen-flash-gallery/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Zen-Flash-Gallery.jpg" alt="Zen Flash Gallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.flashmo.com/preview/flashmo_129_grid" target="_blank">Flash Mo Grid Gallery</a></h4>
<p></p>
<p><a href="http://www.flashmo.com/preview/flashmo_129_grid"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Flash-Mo-Grid-Gallery.jpg" alt="Flash Mo Grid Gallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.airtightinteractive.com/projects/autoviewer/" target="_blank">AutoViewer</a></h4>
<p></p>
<p>Cool gallery, with a very easy navigation and clean layout.</p>
<p><a href="http://www.airtightinteractive.com/projects/autoviewer/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/AutoViewer.jpg" alt="Auto Viewer" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.flash-gallery.org/" target="_blank">Flash Gallery</a></h4>
<p></p>
<p><a href="http://www.flash-gallery.org/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Flash-Gallery.jpg" alt="Flash Gallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.airtightinteractive.com/projects/postcardviewer/" target="_blank">PostcardViewer</a></h4>
<p></p>
<p>This gallery it causes a somewhat interactivity wit a cool zoom effect.</p>
<p><a href="http://www.airtightinteractive.com/projects/postcardviewer/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/PostcardViewer.jpg" alt="PostcardViewer Free Flash Photo Galleries and Tutorials which makes life easy" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.flashmo.com/preview/flashmo_060_photo_gallery" target="_blank">FlashMo Photo Gallery</a></h4>
<p></p>
<p><a href="http://www.flashmo.com/preview/flashmo_060_photo_gallery"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/flashmo.jpg" alt="FlashMo Photo Gallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.inventmedia.com.au/flashgallery.html" target="_blank">InventMedia FlashGallery</a></h4>
<p></p>
<p><a href="http://www.inventmedia.com.au/flashgallery.html"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/InventMediaPhotoGallery.jpg" alt="InventMedia FlashGallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.dezinerfolio.com/dfgallery-2/free-flash-gallery" target="_blank">dfGallery 2.0</a></h4>
<p></p>
<p>A Dezinerfolio application, with lots of features ready to use. They have even included a cool video explaining how to install and customize this cool gallery.</p>
<p><a href="http://www.dezinerfolio.com/dfgallery-2/free-flash-gallery"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/dfGallery2.jpg" alt="dfGallery 2.0" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.no3dfx.com/polaroid/" target="_blank">Polaroid Gallery</a></h4>
<p></p>
<p>This is an impressive image gallery that can load data either from a xml file or flickr rss. You can use it on a portfolio or something like that. This is an open-source application, so if you have some actionscript skills, you can add additional features to it.</p>
<p><a href="http://www.no3dfx.com/polaroid/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Polaroid-Gallery.jpg" alt="Polaroid Gallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.flashimagegallery.com/demo/" target="_blank">Flash Image Gallery</a></h4>
<p></p>
<p><a href="http://www.flashimagegallery.com/demo/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Flash-Image-Gallery.jpg" alt="Flash Image Gallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.flashgallery.org/" target="_blank">Free Flash Gallery</a></h4>
<p></p>
<p><a href="http://www.flashgallery.org/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Free-Flash-Gallery.jpg" alt="Free Flash Gallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.andrewberg.com/photobrowser/afpb_flash.html" target="_blank">Andrew Bergs Flash Photo Browser</a></h4>
<p></p>
<p>A very cool interactive stack gallery.</p>
<p><a href="http://www.andrewberg.com/photobrowser/afpb_flash.html"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Andrew-Bergs-Flash-Photo-Browser.jpg" alt="Andrew Berg's Flash Photo Browser" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.flshow.net/carousel/fullpage.html" target="_blank">flShow Carousel</a></h4>
<p></p>
<p>A nice caroussel kind gallery.</p>
<p><a href="http://www.flshow.net/carousel/fullpage.html"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/flShow-Carousel.jpg" alt="flShow Carousel" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.airtightinteractive.com/simpleviewer/" target="_blank">Simple Viewer</a></h4>
<p></p>
<p>Another cool gallery, ready to use.</p>
<p><a href="http://www.airtightinteractive.com/simpleviewer/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/SimpleViewer.jpg" alt="SimpleViewer Free Flash Photo Galleries and Tutorials which makes life easy" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.veppa.com/services/flash-photo-gallery.php" target="_blank">Veppa Photo Album</a></h4>
<p></p>
<p><a href="http://www.veppa.com/services/flash-photo-gallery.php"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Veppa-Photo-Album.jpg" alt="Veppa Photo Album" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://www.xmlphotoalbum.com/" target="_blank">XML Photo Album</a></h4>
<p></p>
<p><a href="http://www.xmlphotoalbum.com/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/xmlphotoalbum.jpg" alt="xmlphotoalbum Free Flash Photo Galleries and Tutorials which makes life easy" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h3>Tutorials</h3>
<h4 class="singleh2"><a title="Permanent Link to Building a 3D album with FIVe3D and TweenLite" href="http://www.thetechlabs.com/3d/building-a-3d-album-with-five3d-and-tweenlite/" rel="bookmark">Building a 3D album with FIVe3D and TweenLite</a></h4>
<p></p>
<p>This tutorial explain how to create an awesome Flash 3D Album using the FIVe3D framework and TweenLite.</p>
<p><a href="http://www.thetechlabs.com/3d/building-a-3d-album-with-five3d-and-tweenlite/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Building-a-3D-album-with-FIVe3D-and-TweenLite.jpg" alt="Building a 3D album with FIVe3D and TweenLite" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4><a href="http://flash.tutsplus.com/tutorials/xml/build-a-dynamic-gallery-with-actionscript-30-and-php/" target="_blank">Build a Dynamic Flash Gallery with Slider Control</a></h4>
<p></p>
<p>Another cool tutorial showing how to create a flash gallery controlled by a slider and using xml data.</p>
<p><a href="http://flash.tutsplus.com/tutorials/xml/build-a-dynamic-gallery-with-actionscript-30-and-php/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Build-a-Dynamic-Flash-Gallery-with-Slider-Control.jpg" alt="Build a Dynamic Flash Gallery with Slider Control" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4 class="singleh2"><a title="Permanent Link to Simulating PicLens with Flex and Away3D – Part 1" href="http://www.thetechlabs.com/3d/simulating-piclens-with-flex-and-away3d-–-part-1/" rel="bookmark">Simulating PicLens with Flex and Away3D</a></h4>
<p></p>
<p>A 3 part tutorial, creating from scratch a 3D application similar to the famous PicLens.</p>
<p><a href="http://www.thetechlabs.com/3d/simulating-piclens-with-flex-and-away3d-–-part-1/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/SimulatingPicLenswithFlexandAway3D.jpg" alt="Simulating PicLens with Flex and Away3D" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4 class="post-title"><a href="http://www.layersmagazine.com/flash-slideshow-image-gallery.html" target="_top">Flash Slideshow Image Gallery</a></h4>
<p></p>
<p><a href="http://www.layersmagazine.com/flash-slideshow-image-gallery.html"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Flash-Slideshow-Image-Gallery.jpg" alt="Flash Slideshow Image Gallery" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<h4 class="singleh2"><a title="Permanent Link to Learn How-to Create Flash Components using Actionscript 3.0, XML and Flickr API" href="http://www.thetechlabs.com/xml/learn-how-to-create-flash-components-using-actionscript-30-xml-and-flickr-api/" rel="bookmark">Learn How-to Create Flash Components using Actionscript 3.0, XML and Flickr API</a></h4>
<p></p>
<p><span class="singleh2">If you want to create your own gallery, or if you want to add some features to some of the above mentioned examples, why don&#8217;t you compile it as a flash component, ready to deploy in your following projects? And better than that, you can sale it in several sites such as the Adobe Exchange. </span></p>
<p class="singleh2"><a href="http://www.thetechlabs.com/xml/learn-how-to-create-flash-components-using-actionscript-30-xml-and-flickr-api/"><img src="http://richcoder.com/wp-content/uploads/2009/08/flash-photo-galleries/Learn-How-toCreate-Flash-Components-using-Actionscript-3-XML-and-Flickr-API.jpg" alt="Learn How-to Create Flash Components using Actionscript 3.0, XML and Flickr API" width="500" height="225" title="Free Flash Photo Galleries and Tutorials which makes life easy" /></a></p>
<p>Hope you enjoyed all the Galleries.</p>
<p>Don&#8217;t forget to share this with others.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.richcoder.com/2009/08/13/free-flash-photo-galleries-and-tutorials-which-makes-life-easy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creative Flash Preloaders Of All Times</title>
		<link>http://www.richcoder.com/2009/08/13/creative-flash-preloaders-of-all-times/</link>
		<comments>http://www.richcoder.com/2009/08/13/creative-flash-preloaders-of-all-times/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 13:40:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.richcoder.com/?p=322</guid>
		<description><![CDATA[





Flash websites more and more get popular among Internet users. And though many of them still complain that Flash web pages are slow as a snail, it doesn&#8217;t prevent them from enjoying the beauty and creativity of Flash sites. These websites continue to impress us with dynamism, interactivity, fresh unique ideas and spontaneity but still [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-5111680225854034";
/* 468x60, created 8/20/09 */
google_ad_slot = "8316648255";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><a href="http://www.richcoder.com/2009/08/13/creative-flash-preloaders-of-all-times/"><img src="/wp-content/uploads/2009/08/flash-preloaders/creative-flash-preloaders-of-all-times.jpg" class="aligncenter size-full" title="Creative Flash Preloaders Of All Times" alt="creative flash preloaders of all times Creative Flash Preloaders Of All Times" /></a><br />
<base href="http://richcoder.com" /></p>
<p>Flash websites more and more get popular among Internet users. And though many of them still complain that Flash web pages are slow as a snail, it doesn&#8217;t prevent them from enjoying the beauty and creativity of Flash sites. These websites continue to impress us with dynamism, interactivity, fresh unique ideas and spontaneity but still require lots of patience. And when we enter such a website it often takes some time to load. But Flash developers and designers tried to brighten up this waiting time and created the  attractive preloaders &#8211; custom-built <a href="http://www.flashscope.com/">flash components</a> that inform the viewer that content is being loaded into the Flash player.</p>
<p><b>Flash preloaders</b> can range from a simple, static waiting message to a dynamically updated animation that reflects the status of the content loaded. And this blogpost presents the most creative and stunning Flash preloaders of all times. And I admit, we should give credit to Flash designers for their vivid imagination. Enjoy the collection!</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Sergey Tyukanov Artworks</h4>
<p>Visit the <a href="http://www.tyukanov.com/">website</a></p>
<p><a href="http://educationiseverywhere.pushstage.ca/"><img src="/wp-content/uploads/2009/08/flash-preloaders/tyukanov.jpg" title="Creative Flash Preloaders Of All Times" alt="tyukanov Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>EducationIsEverywhere</h4>
<p> Visit the <a href="http://educationiseverywhere.pushstage.ca/">website</a></p>
<p><a href="http://educationiseverywhere.pushstage.ca/"><img src="/wp-content/uploads/2009/08/flash-preloaders/educationiseverywhere.pushs.jpg" title="Creative Flash Preloaders Of All Times" alt="educationiseverywhere.pushs Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>ProblemPlayground</h4>
<p>Visit the <a href="http://www.problemplayground.com/">website</a></p>
<p><a href="http://www.problemplayground.com/"><img src="/wp-content/uploads/2009/08/flash-preloaders/problemplayground.jpg" title="Creative Flash Preloaders Of All Times" alt="problemplayground Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Oddodesign.com</h4>
<p>Visit the <a href="http://www.oddodesign.com/">website</a></p>
<p><a href="http://www.oddodesign.com/"><img src="/wp-content/uploads/2009/08/flash-preloaders/oddodesign.jpg" title="Creative Flash Preloaders Of All Times" alt="oddodesign Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Kaiserinteractive.com</h4>
<p>Visit the <a href="http://www.kaiserinteractive.com/">website</a></p>
<p><a href="http://www.kaiserinteractive.com/"><img src="/wp-content/uploads/2009/08/flash-preloaders/kaiserinteractive.jpg" title="Creative Flash Preloaders Of All Times" alt="kaiserinteractive Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Scruffs-game.com</h4>
<p>Visit the <a href="http://scruffs-game.com/">website</a></p>
<p><a href="http://scruffs-game.com/"><img src="/wp-content/uploads/2009/08/flash-preloaders/scruffs-game.jpg" title="Creative Flash Preloaders Of All Times" alt="scruffs game Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- </p>
<h4>Ishothim.com</h4>
<p>Visit the <a href="http://ishothim.com/">website</a></p>
<p><a href="http://ishothim.com/"><img src="/wp-content/uploads/2009/08/flash-preloaders/ishothim.jpg" title="Creative Flash Preloaders Of All Times" alt="ishothim Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Dead-line.com</h4>
<p>Visit the <a href="http://www.dead-line.com/">website</a></p>
<p><a href="http://www.dead-line.com/"><img src="/wp-content/uploads/2009/08/flash-preloaders/_dead-line.jpg" title="Creative Flash Preloaders Of All Times" alt=" dead line Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Communicatorworld.com</h4>
<p>Visit the <a href="http://www.communicatorworld.com/home.aspx">website</a></p>
<p><a href="http://www.communicatorworld.com/home.aspx"><img src="/wp-content/uploads/2009/08/flash-preloaders/communicatorworld.jpg" title="Creative Flash Preloaders Of All Times" alt="communicatorworld Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Arihirvonen.com</h4>
<p>Visit the <a href="http://www.arihirvonen.com/">website</a></p>
<p><a href="http://www.arihirvonen.com/"><img src="/wp-content/uploads/2009/08/flash-preloaders/arihirvonen.jpg" title="Creative Flash Preloaders Of All Times" alt="arihirvonen Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Ladio.ru</h4>
<p>Visit the <a href="http://ladio.ru/flash/en/index.html#">website</a></p>
<p><a href="http://ladio.ru/flash/en/index.html#"><img src="/wp-content/uploads/2009/08/flash-preloaders/ladio.jpg" title="Creative Flash Preloaders Of All Times" alt="ladio Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Okaydave.com</h4>
<p>Visit the <a href="http://okaydave.com/">website</a></p>
<p><a href="http://okaydave.com/"><img src="/wp-content/uploads/2009/08/flash-preloaders/okaydave.jpg" title="Creative Flash Preloaders Of All Times" alt="okaydave Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Elipseagency.com</h4>
<p>Visit the <a href="http://www.elipseagency.com/agency.html">website</a></p>
<p><a href="http://www.elipseagency.com/agency.html"><img src="/wp-content/uploads/2009/08/flash-preloaders/elipseagency.jpg" title="Creative Flash Preloaders Of All Times" alt="elipseagency Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Conceptm.nl</h4>
<p>Visit the <a href="http://www.conceptm.nl/">website</a></p>
<p><a href="http://www.conceptm.nl/"><img src="/wp-content/uploads/2009/08/flash-preloaders/conceptm.jpg" title="Creative Flash Preloaders Of All Times" alt="conceptm Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Escriba.es</h4>
<p>Visit the <a href="http://www.escriba.es/base_en.html">website</a></p>
<p><a href="http://www.escriba.es/base_en.html"><img src="/wp-content/uploads/2009/08/flash-preloaders/escriba.jpg" title="Creative Flash Preloaders Of All Times" alt="escriba Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Farmrio.com</h4>
<p>Visit the <a href="http://www.farmrio.com.br/ecoisanossa/">website</a></p>
<p><a href="http://www.farmrio.com.br/ecoisanossa/"><img src="/wp-content/uploads/2009/08/flash-preloaders/farmrio.jpg" title="Creative Flash Preloaders Of All Times" alt="farmrio Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Instinct.ru</h4>
<p>Visit the <a href="http://instinct.ru/flash.html">website</a></p>
<p><a href="http://instinct.ru/flash.html"><img src="/wp-content/uploads/2009/08/flash-preloaders/instinct.ru.jpg" title="Creative Flash Preloaders Of All Times" alt="instinct.ru Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Yosry.com</h4>
<p>Visit the <a href="http://yosry.com/flash/">website</a></p>
<p><a href="http://yosry.com/flash/"><img src="/wp-content/uploads/2009/08/flash-preloaders/yosry.jpg" title="Creative Flash Preloaders Of All Times" alt="yosry Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Prismgirl.org</h4>
<p>Visit the <a href="http://prismgirl.org/">website</a></p>
<p><a href="http://prismgirl.org/"><img src="/wp-content/uploads/2009/08/flash-preloaders/prismgirl.jpg" title="Creative Flash Preloaders Of All Times" alt="prismgirl Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Limbus.fr</h4>
<p>Visit the <a href="http://www.limbus.fr/">website</a></p>
<p><a href="http://www.limbus.fr/"><img src="/wp-content/uploads/2009/08/flash-preloaders/limbus.jpg" title="Creative Flash Preloaders Of All Times" alt="limbus Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Marilynmanson.com</h4>
<p>Visit the <a href="http://www.marilynmanson.com/">website</a></p>
<p><a href="http://www.marilynmanson.com/"><img src="/wp-content/uploads/2009/08/flash-preloaders/marilynmanson.jpg" title="Creative Flash Preloaders Of All Times" alt="marilynmanson Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Bio-bak.nl</h4>
<p>Visit the <a href="http://bio-bak.nl/">website</a></p>
<p><a href="http://bio-bak.nl/"><img src="/wp-content/uploads/2009/08/flash-preloaders/bio-bak.jpg" title="Creative Flash Preloaders Of All Times" alt="bio bak Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Laplanete.sldimension.com</h4>
<p>Visit the <a href="http://www.laplanete.sldimension.com/">website</a></p>
<p><a href="http://www.laplanete.sldimension.com/"><img src="/wp-content/uploads/2009/08/flash-preloaders/laplanete.sldimension.jpg" title="Creative Flash Preloaders Of All Times" alt="laplanete.sldimension Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Mon-monde.com</h4>
<p>Visit the <a href="http://www.mon-monde.com/#/accueil/">website</a></p>
<p><a href="http://www.mon-monde.com/#/accueil/"><img src="/wp-content/uploads/2009/08/flash-preloaders/mon-monde.jpg" title="Creative Flash Preloaders Of All Times" alt="mon monde Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Mattwiggins.net</h4>
<p>Visit the <a href="http://www.mattwiggins.net/">website</a></p>
<p><a href="http://www.mattwiggins.net/"><img src="/wp-content/uploads/2009/08/flash-preloaders/mattwiggins.jpg" title="Creative Flash Preloaders Of All Times" alt="mattwiggins Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Typographykicksass.com</h4>
<p>Visit the <a href="http://www.typographykicksass.com/">website</a></p>
<p><a href="http://www.typographykicksass.com/"><img src="/wp-content/uploads/2009/08/flash-preloaders/typographykicksass.jpg" title="Creative Flash Preloaders Of All Times" alt="typographykicksass Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Zunejourney.net </h4>
<p>Visit the <a href="http://www.zunejourney.net/">website</a></p>
<p><a href="http://www.zunejourney.net/"><img src="/wp-content/uploads/2009/08/flash-preloaders/zunejourney.jpg" title="Creative Flash Preloaders Of All Times" alt="zunejourney Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Unlimited.orange.co.uk</h4>
<p>Visit the <a href="http://unlimited.orange.co.uk/flash/go/">website</a></p>
<p><a href="http://unlimited.orange.co.uk/flash/go/"><img src="/wp-content/uploads/2009/08/flash-preloaders/unlimited.orange.jpg" title="Creative Flash Preloaders Of All Times" alt="unlimited.orange Creative Flash Preloaders Of All Times" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<h4>Sir-patroclo.com</h4>
<p>Visit the <a href="http://www.sir-patroclo.com/">website</a></p>
<p><a href="http://www.sir-patroclo.com/"><img src="/wp-content/uploads/2009/08/flash-preloaders/sir-patroclo.jpg" title="Creative Flash Preloaders Of All Times" alt="sir patroclo Creative Flash Preloaders Of All Times" /></a></p>
<p>So don&#8217;t waste your time and let&#8217;s start some creative thoughts.</p>
<p>If you know any creative Flash preloaders, let&#8217;s share with me..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.richcoder.com/2009/08/13/creative-flash-preloaders-of-all-times/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Awesome Color Picker by EYECON</title>
		<link>http://www.richcoder.com/2009/08/11/awesome-color-picker/</link>
		<comments>http://www.richcoder.com/2009/08/11/awesome-color-picker/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 15:26:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://richcoder.com/?p=305</guid>
		<description><![CDATA[




Awesome Color Picker by “eyecon” which similar like  Photoshop Color picker, We can change the color  using the pointer or we can write the  RGB code or Hex code.
They did have different types of color pickers which we could integrate in our views.
Let’s check it out once.
Features

Flat mode &#8211; as element in [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-5111680225854034";
/* 468x60, created 8/20/09 */
google_ad_slot = "8316648255";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><a href="http://richcoder.com/2009/08/11/awesome-color-picker"><img class="aligncenter size-full wp-image-307" title="Awesome Color Picker  by EYECON" src="http://richcoder.com/wp-content/uploads/2009/08/awesome-color-picker-by-EYECON.jpg" alt="Awesome Color Picker  by EYECON" width="500" height="300" /></a></p>
<p>Awesome Color Picker by “<strong><a title="eyecon" href="http://www.eyecon.ro/" target="_blank">eyecon</a></strong>” which similar like  Photoshop Color picker, We can change the color  using the pointer or we can write the  RGB code or Hex code.</p>
<p>They did have different types of color pickers which we could integrate in our views.</p>
<p>Let’s check it out once.</p>
<h3>Features</h3>
<ul>
<li>Flat mode &#8211; as element in page</li>
<li>Powerful controls for color selection</li>
<li>Easy to customize the look by changing some images</li>
<li>Fits into the viewport</li>
</ul>
<h3>Code</h3>
<p>Attach the Javascript and CSS files to your document. Edit CSS file and fix the paths to  images and change colors to fit your site theme.</p>
<pre>&lt;link rel="stylesheet" media="screen" type="text/css" href="css/colorpicker.css" /&gt;
&lt;script type="text/javascript" src="js/colorpicker.js"&gt;&lt;/script&gt;</pre>
<h4>Invocation code</h4>
<p>All you have to do is to select the elements in a jQuery way and call the plugin.</p>
<pre> $('input').ColorPicker(options);</pre>
<h4>Options</h4>
<p>A hash of parameters. All parameters are optional.</p>
<h4>Set color</h4>
<p>If you want to set a new color.</p>
<pre>$('input').ColorPickerSetColor(color);</pre>
<p>The &#8216;color&#8217; argument is the same format as the option color, string for hex color or hash for RGB and HSB ({r:255, r:0, b:0}).</p>
<p><a class="button" title="colorpicker" href="http://www.eyecon.ro/colorpicker/" target="_blank">View Demo</a>                                                    <a class="button" title="colorpicker" href="http://www.eyecon.ro/colorpicker/colorpicker.zip" target="_blank">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.richcoder.com/2009/08/11/awesome-color-picker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Know More About PaperVision3D – Flash</title>
		<link>http://www.richcoder.com/2009/08/11/know-more-about-papervision3d-flash/</link>
		<comments>http://www.richcoder.com/2009/08/11/know-more-about-papervision3d-flash/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 13:37:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[PaperVision3D]]></category>
		<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://richcoder.com/?p=255</guid>
		<description><![CDATA[




Papervision3D (PV3D) is a popular open source 3D engine for Flash. It enables to create advanced three-dimensional objects displayed real time right in the web browser. With Papervision3D designers bring an impressive visual experience and user interaction to the web visitors. Interactive environment captivates and gives an opportunity to enjoy navigation and content exploring process. [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-5111680225854034";
/* 468x60, created 8/20/09 */
google_ad_slot = "8316648255";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><a href="http://richcoder.com/2009/08/11/learn-more-about-papervision3d-flash"><img src="http://richcoder.com/wp-content/uploads/2009/08/Learn-More-About-PaperVision3D–Flash.jpg" alt="Learn More About PaperVision3D–Flash Know More About PaperVision3D – Flash" title="Learn-More-About-PaperVision3D–Flash" width="500" height="300" class="aligncenter size-full wp-image-259" /></a></p>
<p><a href="http://blog.papervision3d.org/">Papervision3D</a> (PV3D) is a popular <strong>open source 3D engine for Flash</strong>. It enables to create advanced three-dimensional objects displayed real time right in the web browser. With Papervision3D designers bring an impressive visual experience and user interaction to the web visitors. Interactive environment captivates and gives an opportunity to enjoy navigation and content exploring process. PV3D provides great solutions for product showcasing websites, advertising campaigns and portfolio designs.</p>
<p>Below you can find a collection of <strong>impressive Papervision3D websites and tutorials</strong> that hopefully will inspire you and give you an idea about how this technique can be used in your projects. It is important to remember that being based on Flash, Papervision3D often has similar issues in usability and is not recommended to be used in developing websites where simplicity and accessibility are essential.</p>
<h3>Creative Papervision3D Websites</h3>
<h4>Portfolios</h4>
<h4><a href="http://www.x-prime.com/">X-PRIME</a></h4>
<p>  A stylish and unobtrusive portfolio design featured with a nifty Papervision3D image gallery which can be displayed in a few ways.
</p>
<p><a href="http://www.x-prime.com/"><img width="500" height="350" alt="X-PRIME" src="http://richcoder.com/wp-content/uploads/2009/08/x-prime.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.hatica.com/lab/3d/escena/">Hatica 2009</a></h4>
<p>  This website reminds of a little fairy-tale world floating in shining light space. Navigation is quite easy and enjoyable.</p>
<p><a href="http://www.hatica.com/lab/3d/escena/"><img width="500" height="350" alt="Hatica 2009" src="http://richcoder.com/wp-content/uploads/2009/08/hatica.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.hookusa.com/">HOOK</a></h4>
<p>  Hook’s portfolio is a picture of a truly creative and beautiful design. Everything here is about brilliant individuality and attention to details.</p>
<p><a href="http://www.hookusa.com/"><img width="500" height="350" alt="HOOK" src="http://richcoder.com/wp-content/uploads/2009/08/hook.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.lab9.fr/">Lab9</a></h4>
<p>  It’s a great example of clean and neat Papervision3D interface.</p>
<p><a href="http://www.lab9.fr/"><img width="500" height="350" alt="Lab9" src="http://richcoder.com/wp-content/uploads/2009/08/lab9.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.nitrogroup.com/">SapientNitro</a></h4>
<p>  This digital styled website performs awesome transitions, typography visualization and sound effects.</p>
<p><a href="http://www.nitrogroup.com/"><img width="500" height="350" alt="SapientNitro" src="http://richcoder.com/wp-content/uploads/2009/08/nitrogroup.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.zaramedia.com/">Zara Media Design Group</a></h4>
<p>  Nice and minimalist PV3D-powered website. Open a three-dimensional book to meet Zara Media Design Group.</p>
<p><a href="http://www.zaramedia.com/"><img width="500" height="350" alt="Zara Media Design Group" src="http://richcoder.com/wp-content/uploads/2009/08/zara-media.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.ovaldesign.com.hk/">Oval Design</a></h4>
<p>  Portfolio of Oval Design Studio provides an amazing interaction experience. Website represents the whole universe you can explore on a controllable spacecraft.</p>
<p><a href="http://www.ovaldesign.com.hk/"><img width="500" height="350" alt="Oval Design" src="http://richcoder.com/wp-content/uploads/2009/08/oval-design.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://13flo.com/">13flo</a></h4>
<p>  Florian Bernard’s portfolio is done in a sleek cyber-punk style and offers a wonderful 3D performance.  The thumbnail displaying mechanism implies the 360-degree rotation and can be transformed in several ways.</p>
<p><a href="http://13flo.com/"><img width="500" height="350" alt="13flo Know More About PaperVision3D – Flash" src="http://richcoder.com/wp-content/uploads/2009/08/13flo.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.dasai.es/">Dasai</a></h4>
<p>  Nice and amusing website with a good use of space and easy navigation. You can find the information about Spanish web agency Dasai exploring a small green planet of the same name.</p>
<p><a href="http://www.dasai.es/"><img width="500" height="350" alt="Dasai" src="http://richcoder.com/wp-content/uploads/2009/08/dasai.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.tbc.us/">TBC</a></h4>
<p>  Portfolio of Baltimore-based advertising and public relations company TBC features original and usable content presentation. All the information can be browsed without leaving the home page.</p>
<p><a href="http://www.tbc.us/"><img width="500" height="350" alt="TBC" src="http://richcoder.com/wp-content/uploads/2009/08/tbc.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.scalena.com/">Scalena Agency</a></h4>
<p>  Chic website. Both in style and technical execution.</p>
<p><a href="http://www.scalena.com/"><img width="500" height="350" alt="Scalena Agency" src="http://richcoder.com/wp-content/uploads/2009/08/scalena-agency.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.barcinski-jeanjean.com/">Barcinski&#038;Jeanjean</a></h4>
<p>  Barcinski&#038;Jeanjean studio offers so much interaction in their portfolio. Website has a special option – wear 3D-glasses and enjoy all the fascination of three-dimensional environment. You can also play ping-pong while the site is loading. Excellent work!</p>
<p><a href="http://www.barcinski-jeanjean.com/"><img width="500" height="350" alt="Barcinski&#038;Jeanjean" src="http://richcoder.com/wp-content/uploads/2009/08/barcinski.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.freedomandpartners.com/">Freedom+Partners</a></h4>
<p>  Totally original website with a top-class PV3D realization and innovative navigation. It keeps up with usability as well – turn off 3D mode for quicker access to content.</p>
<p><a href="http://www.freedomandpartners.com/"><img width="500" height="350" alt="Freedom+Partners" src="http://richcoder.com/wp-content/uploads/2009/08/freedom+partners.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.whitevoid.com/portfolio.html">WHITEvoid</a></h4>
<p>  Elegant minimalist design and handy navigation structure provide a remarkable visual experience. It proves that usable Flash websites do exist.</p>
<p><a href="http://www.whitevoid.com/portfolio.html"><img width="500" height="350" alt="WHITEvoid" src="http://richcoder.com/wp-content/uploads/2009/08/whitevoid.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4>Advertising &#038; Social Campaigns</h4>
<h4><a href="http://www.nike.com/jumpman23/aj2009/">Air Jordan 2009</a></h4>
<p>  Clean and fresh design of this site is not less inspiring than personal stories of famous sportsmen collected in a 3D video gallery.</p>
<p><a href="http://www.nike.com/jumpman23/aj2009/"><img width="500" height="350" alt="Air Jordan 2009" src="http://richcoder.com/wp-content/uploads/2009/08/air-jordan.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.coorslight.com/projectcold/">Coors Light Project Cold</a></h4>
<p>  3D beer can model creates a cool tactile effect.  Cans seem to be good containers not only for beer but for content as well.</p>
<p><a href="http://www.coorslight.com/projectcold/"><img width="500" height="350" alt="Coors Light Project Cold" src="http://richcoder.com/wp-content/uploads/2009/08/coors-light.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.bankersstories.com/">Bankers’ stories</a></h4>
<p>  This promo website of the French bank Societe Generale shows how PV3D may come in handy to create social, communication-oriented mediums.</p>
<p><a href="http://www.bankersstories.com/"><img width="500" height="350" alt="Bankers’ stories" src="http://richcoder.com/wp-content/uploads/2009/08/banker's-stories.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.panasonic.eu/everythingmatters/en-gb/">Panasonic: Everything matters</a></h4>
<p>  The statement “Everything matters” reflects the design guideline of this website ideally. Flash version of the site provides a creative and dynamic product presentation with cool transition effects and colorful animations. HTML version is also available for viewing.</p>
<p><a href="http://www.panasonic.eu/everythingmatters/en-gb/"><img width="500" height="350" alt="Panasonic: Everything matters" src="http://richcoder.com/wp-content/uploads/2009/08/panasonic.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.pepsi.se/2009/">Pepsi Music Challenge</a></h4>
<p>  Fantastic Papervision3D website. Pepsi Music Challenge project delivers an exciting interaction experience by allowing visitors to play a funny music related game. GuitarHero fans will love it!</p>
<p><a href="http://www.pepsi.se/2009/"><img width="500" height="350" alt="Pepsi Music Challenge" src="http://richcoder.com/wp-content/uploads/2009/08/pepsi.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.thebaileyslounge.co.uk/Pages/Home.aspx">The Baileys Lounge</a></h4>
<p>  Another creative idea realized by means of Papervision3D – dive into the Baileys Lounge while turning over the pages of virtual folding book.</p>
<p><a href="http://www.thebaileyslounge.co.uk/Pages/Home.aspx"><img width="500" height="350" alt="The Baileys Lounge" src="http://richcoder.com/wp-content/uploads/2009/08/the-bayleis-lounge.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://thinkingspace.economist.com/">The Economist: Thinking Space</a></h4>
<p>  The main purpose of The Economist’s research project “Thinking Space” is to learn where people get their ideas and inspiration.  You can submit your own thinking space and get a section in the massive 3D construction on the main page.</p>
<p><a href="http://thinkingspace.economist.com/"><img width="500" height="350" alt="The Economist: Thinking Space" src="http://richcoder.com/wp-content/uploads/2009/08/the-economist.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.spacetoinspire.com/">SpringHill Suits</a></h4>
<p>  It is a nice and clean website providing interesting visual effects and interaction. A good idea for an online hotel tour.</p>
<p><a href="http://www.spacetoinspire.com/"><img width="500" height="350" alt="SpringHill Suits" src="http://richcoder.com/wp-content/uploads/2009/08/springhill-suits.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.thecigaretteisdeadtimeline.com/">The Cigarette Is Dead</a></h4>
<p>  Now comes a dark-styled website using PV3D for displaying timeline. The overall horror-movie style can probably leave a bad aftertaste, it is a powerful solution for anti-smoking campaign though.</p>
<p><a href="http://www.thecigaretteisdeadtimeline.com/"><img width="500" height="350" alt="The Cigarette Is Dead" src="http://richcoder.com/wp-content/uploads/2009/08/the-cigaretter-is-dead.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.bbc.co.uk/wrongdoor/">The Wrong Door</a></h4>
<p>  Official website of BBC comedy sketch show is a successful mix of beautiful graphics, funny animations (sometimes containing adult and toilet humor) and lively 3D surroundings.</p>
<p><a href="http://www.bbc.co.uk/wrongdoor/"><img width="500" height="350" alt="The Wrong Door" src="http://richcoder.com/wp-content/uploads/2009/08/the-wrong-door.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://100.ufc.com/">UFC 100</a></h4>
<p>  This is the second PV3D-based website for Ultimate Fighting Championship official web presentations. (<a href="http://84.ufc.com/">UFC84</a> was the first one) Excellent usage of this technique can be observed in both cases.</p>
<p><a href="http://100.ufc.com/"><img width="500" height="350" alt="UFC 100" src="http://richcoder.com/wp-content/uploads/2009/08/ufc100.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.summerfestival.be/">Summerfestival 2009</a></h4>
<p>  Burst of colors, psychedelic balloons and original navigation form a quite imaginative website.</p>
<p><a href="http://www.summerfestival.be/"><img width="500" height="350" alt="Summerfestival 2009" src="http://richcoder.com/wp-content/uploads/2009/08/summerfestival-2009.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.iamunique.com.au/">FOXTEL: I’m Unique</a></h4>
<p>IamuniQue project lets you build an interactive 3D portrait of yourself and share it with other users. New fun for social networking enthusiasts.</p>
<p><a href="http://www.iamunique.com.au/"><img width="500" height="350" alt="FOXTEL: I’m Unique" src="http://richcoder.com/wp-content/uploads/2009/08/foxtel.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://watchmenmotioncomic.com/">Watchmen Motion Comic</a></h4>
<p>  Wonderful presentation of Watchmen Motion Comic features superb interactivity, great dynamics and transparent navigation.</p>
<p><a href="http://watchmenmotioncomic.com/"><img width="500" height="350" alt="Watchmen Motion Comic" src="http://richcoder.com/wp-content/uploads/2009/08/watchmen.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.footlocker.eu/evolve/#/en/">Foot Locker</a></h4>
<p>  Another example of fabulous PV3D effects and unique creativity in product presentation.</p>
<p><a href="http://www.footlocker.eu/evolve/#/en/"><img width="500" height="350" alt="Foot Locker" src="http://richcoder.com/wp-content/uploads/2009/08/foot-locker.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.absolut.com/us">Absolut</a></h4>
<p>  “Doing things differently leads to something exceptional”. The following website contains exceptional videos and beautiful minimalist 3D gallery.</p>
<p><a href="http://www.absolut.com/us"><img width="500" height="350" alt="Absolut" src="http://richcoder.com/wp-content/uploads/2009/08/absolut.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.concavescream.com/main.html">Concave Scream: Soundtrack For A Book</a></h4>
<p>  Dancing particles and dreamy music will take you far away from your desktop. It is probably the most unusual website from our collection.</p>
<p><a href="http://www.concavescream.com/main.html"><img width="500" height="350" alt="Concave Scream: Soundtrack For A Book" src="http://richcoder.com/wp-content/uploads/2009/08/concave-scream.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4>Papervision3D.org</h4>
<h4><a href="http://www.papervision3d.org/">Official site</a></h4>
<p>  The home page of Papervision3D official site is nothing but a three-dimensional underwater world visualization. The work shines for itself.</p>
<p><a href="http://www.papervision3d.org/"><img width="500" height="350" alt="Official site" src="http://richcoder.com/wp-content/uploads/2009/08/pv3d-official-site.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.carlosulloa.com/">carlosulloa.com</a></h4>
<p>  Website of Papervision3D founder Carlos Ulloa is done in minimalist style. Controllable 3D car model and good use of thumbnail lighting give it a subtle flavor.</p>
<p><a href="http://www.carlosulloa.com/"><img width="500" height="350" alt="carlosulloa.com" src="http://richcoder.com/wp-content/uploads/2009/08/carlosulloa.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.helloenjoy.com/">HelloEnjoy</a></h4>
<p>  This is a new home of carlosulloa.com. It features PV3D engine powerful capabilities enabling to play around with 3-dimensional text.</p>
<p><a href="http://www.helloenjoy.com/"><img width="500" height="350" alt="HelloEnjoy" src="http://richcoder.com/wp-content/uploads/2009/08/helloenjoy.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h3>Tutorials</h3>
<h4><a href="http://www.flashmoto.com/blog/flash-galleries/papervision-3d-flash-gallery/">Papervision3D Flash Gallery</a></h4>
<p>  Three-dimensional image gallery is a good way to enrich your website with interactivity and visual attractiveness. This is a very detailed and informative tutorial on how to create a Papervision3D Flash gallery.</p>
<p><a href="http://www.flashmoto.com/blog/flash-galleries/papervision-3d-flash-gallery/"><img width="500" height="254" alt="Papervision3D Flash Gallery" src="http://richcoder.com/wp-content/uploads/2009/08/flashmoto-tutorial.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://gotoandlearn.com/play?id=105">Introduction to Augmented Reality</a></h4>
<p>  Augmented reality is an ActionScript library used in combination with Papervision3D. With Lee Brimelow’s video tutorial you will learn the basics of how to get stated with this new trendy effect.</p>
<h4><a href="http://content.madvertices.com/articles/PV3DTraining/default.htm#">Papervision3D For Beginners</a></h4>
<p>  This is a collection of video tutorials covering some basics of Papervision3D. A good introductory set for beginner users.</p>
<p><a href="http://content.madvertices.com/articles/PV3DTraining/default.htm#"><img width="500" height="150" alt="Papervision3D For Beginners" src="http://richcoder.com/wp-content/uploads/2009/08/beginner-tutorial.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
<h4><a href="http://www.gotoandlearn.com/play?id=106">Papervision3D Collada Basics</a></h4>
<p>  This video guide describes how to create and import 3D textured models for use in PV3D.</p>
<h4><a href="http://flash.tutsplus.com/tutorials/games/build-a-wiimote-controlled-lightsaber-using-wiiflash-and-papervision3d/">Build A Wiimote Controlled Lightsaber Using WiiFlash and Papervision3D</a></h4>
<p>  Learn how to use a Wiimote within Flash and how to blend it with Papervision3D to get an interactive lightsaber.</p>
<h4><a href="http://www.gotoandlearn.com/play?id=68">Interactive 3D Cube</a></h4>
<p>  Another great tutorial from Lee Brimelow shows you how to use Papervision3D 2.0 to create an interactive cube navigator.</p>
<h4><a href="http://www.adobe.com/newsletters/edge/june2008/articles/article2/?trackingid=DEKYF">Geocoding in Papervision3D with Yahoo Maps</a></h4>
<p>  This article shows how to use PV3D and Yahoo mapping API to display any location you enter on a 3D globe of the world. You can also watch a <a href="http://www.youtube.com/watch?v=9e-0ECqsfTU">video presentation</a> of the PV3D Geocoding application</p>
<p><a href="http://www.adobe.com/newsletters/edge/june2008/articles/article2/?trackingid=DEKYF"><img width="500" height="350" alt="Geocoding in Papervision3D with Yahoo Maps" src="http://richcoder.com/wp-content/uploads/2009/08/geokoding-tutorial.jpg" title="Know More About PaperVision3D – Flash" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.richcoder.com/2009/08/11/know-more-about-papervision3d-flash/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create Dynamic Content Slider using JQuery</title>
		<link>http://www.richcoder.com/2009/08/10/create-dynamic-content-slider-using-jquery/</link>
		<comments>http://www.richcoder.com/2009/08/10/create-dynamic-content-slider-using-jquery/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 17:16:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://richcoder.com/?p=244</guid>
		<description><![CDATA[




I love the Coda Slider plugin for jQuery. I’ve used it recently to build a couple of tabbed “widgets”.  Just kind of a fun way to show lots of content in a small area. I also used it on an article for NETTUTS for a similar purpose.
Both of these examples use the Coda Slider [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-5111680225854034";
/* 468x60, created 8/20/09 */
google_ad_slot = "8316648255";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><img class="aligncenter size-full wp-image-247" title="Create_Dynamic_Content_Slider_using_JQuery" src="http://richcoder.com/wp-content/uploads/2009/08/Create_Dynamic_Content_Slider_using_JQuery.jpg" alt="Create Dynamic Content Slider using JQuery Create Dynamic Content Slider using JQuery" width="500" height="300" /><br />
I love the <a href="http://www.ndoherty.com/demos/coda-slider/">Coda Slider</a> plugin for jQuery. I’ve used it recently to build a couple of tabbed “widgets”.  Just kind of a fun way to show lots of content in a small area. I also used it on an <a href="http://nettuts.com/javascript-ajax/building-a-better-blogroll-dynamic-fun-with-simplepie-and-jquery/">article for NETTUTS</a> for a similar purpose.</p>
<p>Both of these examples use the Coda Slider pretty much “out of the box”. Sure the design was heavily altered to fit the job, but the actual functionality wasn’t altered in any way. I recently had the calling to build a “featured content area”. The Coda Slider fit the bill almost perfectly, but it needed a little functionality surgery to do what I wanted it to do. Special thanks to <a href="http://benjaminsterling.com/">Benjamin Sterling</a> for helping me out and figuring out some quirks for me.</p>
<p><a class="button" href="http://css-tricks.com/examples/FeaturedContentSlider/" target="_blank"><span class="demo">View Demo</span></a> <a class="button" href="http://css-tricks.com/examples/FeaturedContentSlider.zip"><span class="download">Download Files</span></a></p>
<p><span id="more-889"> </span></p>
<h3>Functionality Checklist</h3>
<p>Like I said, the Coda Slider was 90% there already. There is a main content area (<em>panels</em>, if you will), which slide from left to right each with different unique content. There is generally a set number of panels, but the code is written in such a way that adding or removing panels isn’t a huge pain. There are links which act as navigation to quickly jump to any particular panel. These links can be anything (text hyperlink, thumbnail, etc) and link to a unique hash value URL (each panel has a unique URL if need be).  Coda Slider provides all of this out of the box.</p>
<p>Here is what we need in addition:</p>
<ul>
<li><strong>Different types of custom content in the panels.</strong> We can already put whatever we want in the panels, but to make it easier on ourselves, there will be a couple of different formats ready to go. The main one being an image the size of the entire panel, but featuring a text-overlay.</li>
<li><strong>Auto-play.</strong> You can still click the thumbnails to jump to any panel, but left onto itself, the slider will slowly cycle through the panels.</li>
<li><strong>Arrow indicator.</strong> To serve as a visual indication of which panel you are currently viewing, a small arrow will display above the thumbnail pointing into the panel.</li>
</ul>
<p>Let’s go through the HTML, CSS, and JavaScript.</p>
<h3>The HTML</h3>
<p>Here is the framework HTML for just the slider itself:</p>
<pre><code style="height: 350px;">&lt;div class="slider-wrap"&gt;
	&lt;div id="main-photo-slider" class="csw"&gt;
		&lt;div class="panelContainer"&gt;

			&lt;div class="panel" title="Panel 1"&gt;
				&lt;div class="wrapper"&gt;
					&lt;!-- REGULAR IMAGE PANEL --&gt;
					&lt;img src="images/tempphoto-1.jpg" alt="temp" /&gt;
					&lt;div class="photo-meta-data"&gt;
						Photo Credit: &lt;a href="http://flickr.com/photos/astrolondon/2396265240/"&gt;Kaustav Bhattacharya&lt;/a&gt;&lt;br /&gt;
						&lt;span&gt;"Free Tibet" Protest at the Olympic Torch Rally&lt;/span&gt;
					&lt;/div&gt;
				&lt;/div&gt;
			&lt;/div&gt;
			&lt;div class="panel" title="Panel 2"&gt;
				&lt;div class="wrapper"&gt;
					&lt;!-- PANEL CONTENT --&gt;
				&lt;/div&gt;
			&lt;/div&gt;
			&lt;div class="panel" title="Panel 3"&gt;
				&lt;div class="wrapper"&gt;
					&lt;!-- EXAMPLE OF OTHER PANEL POSSIBILITIES --&gt;
					&lt;img src="images/scotch-egg.jpg" alt="scotch egg" class="floatLeft"/&gt;

					&lt;h1&gt;How to Cook a Scotch Egg&lt;/h1&gt;

					&lt;ul&gt;
						&lt;li&gt;6 hard-boiled eggs, well chilled (i try to cook them to just past soft boiled stage, then stick them in the coldest part of the fridge to firm up)&lt;/li&gt;
						&lt;li&gt;1 pound good quality sausage meat (i used ground turkey meat, seasoned with sage, white pepper, salt and a tiny bit of maple syrup)&lt;/li&gt;
						&lt;li&gt;1/2 cup AP flour&lt;/li&gt;
						&lt;li&gt;1-2 eggs, beaten&lt;/li&gt;
						&lt;li&gt;3/4 cup panko-style bread crumbs&lt;/li&gt;
						&lt;li&gt;Vegetable oil for frying&lt;/li&gt;
					&lt;/ul&gt;
				&lt;/div&gt;
			&lt;/div&gt;
			&lt;div class="panel" title="Panel 4"&gt;
				&lt;div class="wrapper"&gt;
					&lt;!-- PANEL CONTENT --&gt;
				&lt;/div&gt;
			&lt;/div&gt;
			&lt;div class="panel" title="Panel 5"&gt;
				&lt;div class="wrapper"&gt;
					&lt;!-- PANEL CONTENT --&gt;
				&lt;/div&gt;
			&lt;/div&gt;
			&lt;div class="panel" title="Panel 6"&gt;
				&lt;div class="wrapper"&gt;
					&lt;!-- PANEL CONTENT --&gt;
				&lt;/div&gt;
			&lt;/div&gt;

		&lt;/div&gt;
	&lt;/div&gt;

	&lt;!-- TO MAKE THESE THUMBNAILS ACTUALLY WORK, BOTH THE HASH VALUE (#1, ETC.)
          AND THE CLASS="CROSS-LINK" ARE REQUIRED --&gt;

	&lt;a href="#1" class="cross-link active-thumb"&gt;&lt;img src="images/tempphoto-1thumb.jpg" class="nav-thumb" alt="temp-thumb" /&gt;&lt;/a&gt;
	&lt;div id="movers-row"&gt;
		&lt;div&gt;&lt;a href="#2" class="cross-link"&gt;&lt;img src="images/tempphoto-2thumb.jpg" class="nav-thumb" alt="temp-thumb" /&gt;&lt;/a&gt;&lt;/div&gt;
		&lt;div&gt;&lt;a href="#3" class="cross-link"&gt;&lt;img src="images/tempphoto-3thumb.jpg" class="nav-thumb" alt="temp-thumb" /&gt;&lt;/a&gt;&lt;/div&gt;
		&lt;div&gt;&lt;a href="#4" class="cross-link"&gt;&lt;img src="images/tempphoto-4thumb.jpg" class="nav-thumb" alt="temp-thumb" /&gt;&lt;/a&gt;&lt;/div&gt;
		&lt;div&gt;&lt;a href="#5" class="cross-link"&gt;&lt;img src="images/tempphoto-5thumb.jpg" class="nav-thumb" alt="temp-thumb" /&gt;&lt;/a&gt;&lt;/div&gt;
		&lt;div&gt;&lt;a href="#6" class="cross-link"&gt;&lt;img src="images/tempphoto-6thumb.jpg" class="nav-thumb" alt="temp-thumb" /&gt;&lt;/a&gt;&lt;/div&gt;
	&lt;/div&gt;

&lt;/div&gt;</code></pre>
<h3>The CSS</h3>
<p>The full CSS for this example has a basic reset, some utility styles and basic structure. Below, I’ll just show you the CSS relevant to the slider itself, but you can <a href="http://css-tricks.com/examples/FeaturedContentSlider/style.css">view the full CSS here</a>.</p>
<pre><code>.slider-wrap{ width: 419px; position: absolute; top: 87px; left: 40px; }
.stripViewer .panelContainer
.panel ul{ text-align: left; margin: 0 15px 0 30px; }
.stripViewer{ position: relative; overflow: hidden; width: 419px; height: 285px; }
.stripViewer .panelContainer{ position: relative; left: 0; top: 0; }
.stripViewer .panelContainer .panel{ float: left; height: 100%; position: relative; width: 419px; }
.stripNavL, .stripNavR, .stripNav	{ display: none; }
.nav-thumb { border: 1px solid black; margin-right: 5px; }
#movers-row { margin: -43px 0 0 62px; }
#movers-row div { width: 20%; float: left; }
#movers-row div a.cross-link { float: right; }
.photo-meta-data { background: url(images/transpBlack.png); padding: 10px; height: 30px;
											  margin-top: -50px; position: relative; z-index: 9999; color: white; }
.photo-meta-data span  { font-size: 13px; }
.cross-link { display: block; width: 62px; margin-top: -14px;
											  position: relative; padding-top: 15px; z-index: 9999; }
.active-thumb { background: transparent url(images/icon-uparrowsmallwhite.png) top center no-repeat; }</code></pre>
<p>Anything in there that starts with “.strip” is core to the slider itself, getting those panels set up and the wrapper around them, all the CSS magic needed to make a slider do its thing. From “.nav-thumb” on down is stuff specific to this example. The thumbnails have thin black borders. The meta-data section is pushed off the panel by the image, but then is forced back up with a negative top margin and a transparent black background applied.</p>
<p>The “.active-thumb” class is very important too, if a thumbnail has this class, it gets the special background applied, which is the white arrow we wanted to indicate the current panel. This class will get applied and removed in the JavaScript.</p>
<h3>The JavaScript</h3>
<p>In the header section of your HTML, you’ll need to include jQuery and all the plugin files. The bare minimum basics look like this:</p>
<pre><code>&lt;script type="text/javascript" src="js/jquery-1.2.6.min.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/jquery-easing-1.3.pack.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/jquery-easing-compatibility.1.2.pack.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/coda-slider.1.1.1.pack.js"&gt;&lt;/script&gt;

&lt;script type="text/javascript"&gt;
	$(function(){

		$("#main-photo-slider").codaSlider();

	});
&lt;/script&gt;</code></pre>
<p>That will activate the slider, but remember we have some extra functionality to get cooking here. Instead of altering the plugin itself, we can add the extras by writing our own little function on top of it. In essence, to achieve the “auto-play” effect, we are going to trigger a click event on the next thumbnail in line every 3 seconds. We’ll call the function “theInterval”, and we’ll need a couple of variables, so we’ll set those up first.</p>
<pre><code>var theInt = null;
var $crosslink, $navthumb;
var curclicked = 0;

theInterval = function(cur){
	clearInterval(theInt);

	if( typeof cur != 'undefined' )
		curclicked = cur;

	$crosslink.removeClass("active-thumb");
	$navthumb.eq(curclicked).parent().addClass("active-thumb");
		$(".stripNav ul li a").eq(curclicked).trigger('click');

	theInt = setInterval(function(){
		$crosslink.removeClass("active-thumb");
		$navthumb.eq(curclicked).parent().addClass("active-thumb");
		$(".stripNav ul li a").eq(curclicked).trigger('click');
		curclicked++;
		if( 6 == curclicked )
			curclicked = 0;

	}, 3000);
};</code></pre>
<p>We aren’t done yet though. We need to call our function, for one thing. But we also need to handle a manual click event on one of our thumbnails properly. We want a manual click event to use the same function, so that the “current” thumbnail can be reset properly and we don’t see any weird jumping around. Right after our function, we can now add this final code, to be fired when the DOM is ready:</p>
<pre><code>$(function(){

	$("#main-photo-slider").codaSlider();

	$navthumb = $(".nav-thumb");
	$crosslink = $(".cross-link");

	$navthumb
	.click(function() {
		var $this = $(this);
		theInterval($this.parent().attr('href').slice(1) - 1);
		return false;
	});

	theInterval();
});</code></pre>
<p>Couple more things to note. Notice the number “6″ is hardcoded in our function. If you change the number of thumbs, you’ll have to change it here as well. Also, you may have noticed the seemingly strange element that click event is being triggered on (”.stripNav ul li a”… where is that?!). You’ll notice that isn’t anywhere in our HTML. Actually, the Coda Slider plugin automatically generates this unordered list from the number of panels when it runs. Very handy sometimes we we have hidden it in the CSS in our example. We are using them in our function though, as they will be the most reliable elements for the click event. They will exist no matter what, and this example will continue to work and be auto-play regardless if we use the thumbnail navigation or not.</p>
<p><a class="button" href="http://css-tricks.com/examples/FeaturedContentSlider/"  target="_blank"><span class="demo">View Demo</span></a> <a class="button" href="http://css-tricks.com/examples/FeaturedContentSlider.zip"><span class="download">Download Files</span></a></p>
<p>I’d like to get a “stop” button in there at some point!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.richcoder.com/2009/08/10/create-dynamic-content-slider-using-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>9 most Important and Useful CSS Hacks</title>
		<link>http://www.richcoder.com/2009/08/10/9-most-important-and-useful-css-hacks/</link>
		<comments>http://www.richcoder.com/2009/08/10/9-most-important-and-useful-css-hacks/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 15:51:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://richcoder.com/?p=233</guid>
		<description><![CDATA[



The most common problem of the front end web developers or designers is having their output looks and behave the same to different browsers. One of the solutions is using CSS hacks to apply different rules in a specific browser.
A CSS hack is simply an ugly and inelegant way of getting a browser to behave [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-5111680225854034";
/* 468x60, created 8/20/09 */
google_ad_slot = "8316648255";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>The most common problem of the front end web developers or designers is having their output looks and behave the same to different browsers. One of the solutions is using CSS hacks to apply different rules in a specific browser.</p>
<blockquote><p>A CSS hack is simply an ugly and inelegant way of getting a browser to behave the way you want it to. CSS hacks are typically used to get around specific browser bugs such as IE’s proprietary box model. Unfortunately, the term hack has rather negative connotations and implies that there is a better way of doing something when often there isn’t. Therefore, some people favor the term patch to indicate that it is actually incorrect browser behavior that is being dealt with.</p></blockquote>
<blockquote><p>CSS hacks can use filters to apply one rule to one browser and a different rule to another. Alternatively, hacks can use incorrect CSS implementation to “trick” browsers into behaving the way you want them to. In essence, a CSS filter is a specific type of hack used for filtering different browsers. Unfortunately, most people tend to use the generic term hack to describe filters. As such, when people talk about CSS hacks, they are usually talking specifically about filters.</p></blockquote>
<h4>1. The child selector hack</h4>
<p>The safest filters rely on unimplemented CSS rather than browser bugs. As these filters use valid CSS selectors to apply valid declarations, they are not, strictly speaking, filters at all. They are simply valid CSS rules that certain browsers fail to understand. The first of these filters is known as the child selector hack. IE 6 and below on Windows does not support the child selector, so you can use it to hide rules from those browsers. For this filter to work, you must make sure that there is no whitespace before or after the child selector. In this example, the child selector hack is being used to hide a transparent background PNG image from IE 5-6/Win:</p>
<pre class="css">html&gt;body {
background-image: url(bg.png);
}</pre>
<p>IE 7 is expected to support the child selector. It is also expected to support native PNG transparency. By using the child selector filter in this way, you are building in forward compatibility by allowing newer versions of IE to view the transparent background without needing to revisit the code.</p>
<h4>2. Attribute selector hack</h4>
<p>Another interesting way to filter rules is by using the attribute selector. Many modern browsers such as Safari and Firefox support the attribute selector, but it is not supported by IE 6 and below. As such, you can use the attribute selector as a way of styling classes and IDs for more advanced browsers. In this example, the attribute selector is being used to apply a background PNG to the content div on more compliant browsers:</p>
<pre class="css">div[id="content"] {
background-image: url(bg.png);
}</pre>
<p>Again, both the attribute selector and PNG alpha transparency support are scheduled for IE 7, which means this method should work seamlessly when IE 7 launches.</p>
<h4>3. The star HTML hack</h4>
<p>One of the best-known and possibly most useful CSS filters is known as the star HTML hack. This filter is incredibly easy to remember and targets IE 6 and below. As you are aware, the HTML element is supposed to be the first, or root, element on a web page. However, all current versions of IE have an anonymous root element wrapping around the HTML element. By using the universal selector, you can target an HTML element enclosed inside another element. Because this only happens in IE 6 and below, you can apply specific rules to these browsers: </p>
<pre class="css">* html {
font-size: small;
}</pre>
<p class="css"><span style="font-family: Georgia; line-height: 19px; white-space: normal; font-size: 13px;">Adding a universal selector followed by an html type selector to the start of any regular CSS rule will hide that rule from everything other than IE. The most common way to use</span></p>
<p>this filter is to set a rule that you want all browsers other than IE to apply, and then override that rule in IE using the star HTML hack. For example, IE renders 1-pixel dotted lines as ugly dashed lines by mistake. To avoid these ugly dashed lines, you could set the hover border style on your anchors to dotted but override this in IE, making them solid instead: </p>
<pre class="css">a:hover {
border: 1px dotted black;
}
* html a:hover {
border-style: solid;
}</pre>
<p>It is very unlikely that this bug will appear other browsers, and it is expected to be fixed in IE 7. Therefore, the star HTML hack provides a relatively safe way of targeting IE 6 and below. </p>
<h4>4. IE/Mac commented backslash hack</h4>
<p>Another useful filter is known as the commented backslash hack. IE 5 on the Mac incorrectly allows escaping inside comments, so this filter works by adding a backslash in front</p>
<p>  of the closing comment identifier. All other browsers will ignore this escape and apply the following rules. However, IE 5/Mac will think that the comment is still open, ignoring everything until the next close comment string. </p>
<pre class="css">/* Hiding from IE5/Mac \*/
#nav a {
width: 5em;
}
/* End Hack */</pre>
<p>By combining these two rules, it is possible to apply rules to IE 6 and below on Windows: </p>
<pre class="css">/* Hiding from IE5/Mac \*/
* html {
height: 1px;
}
/* End Hack */</pre>
<p>This can be very useful for attacking and fixing all kinds of Windows-specific IE bugs, and is possibly one of the most used filters around. </p>
<h4>5. The escaped property hack</h4>
<p>IE 5.x on Windows ignores escape characters. This bug forms the basis of the mid-pass filter you learned about earlier. It also forms the basis of the much easier escaped property filter. As the name suggests, this filter works by adding an escape character within a property. All modern browsers should ignore this escape character, but IE 5.x/Win thinks this is part of the property name and, not recognizing the property, ignores the declaration. </p>
<pre class="css">#content {
w\idth: 100px
}</pre>
<p>As such, the escaped property filter provides a simple way of hiding styles from IE 5.x/Win. However, you need to be careful when using this filter as the backslash character cannot come before the numbers 0 to 9 or the letters a to f (or A to F). This is because these values are used in hex notation and may therefore get escaped. </p>
<h4>6. Tantek’s box model hack</h4>
<p>Tantek’s box model hack was one of the first CSS filters ever invented. This filter works by passing one width to IE 5 on Windows and another width to all other browsers. </p>
<pre class="css">div.content {
width:400px;
voice-family: "\"}\"";
voice-family:inherit;
width:300px;
}</pre>
<p>Unfortunately, Opera 5 has the same parsing bug as IE 5.x/Win. As such, a second rule is required to give Opera the correct width: </p>
<pre class="css">html&gt;body .content {
width:300px;
}</pre>
<p>If it weren’t for this filter, pure CSS layout may never have been possible. However, these days it is seen as an ugly and complicated filter, best avoided. I have included it in here purely for its historical significance and because you will still see it being used in older stylesheets. These days, it is much more common to use the modified simplified box model hack. </p>
<h4>7. The modified simplified box model hack</h4>
<p>The escaped property hack can be combined with the star HTML hack to create the modifiedsimplified box model hack, or MSBMH for short. This hack is used for working around</p>
<p>IE’s proprietary box model by providing one length value to IE 5.x/Win and then the correct length value to IE 6/Win and all other browsers:</p>
<pre class="css">* html #content {
width: 80px;
w\idth: 100px;
}

html #content {
width: 100px;
padding: 10px;
}</pre>
<p>The modified simplified box model hack is easier to remember and much cleaner than Tantek’s box model hack, and so is currently the preferred box model hack. This filter can</p>
<p>be used for more than just box model hacks, so don’t let the name limit you.</p>
<h4>8. The !important and underscore hacks</h4>
<p>There may be some instances where you wish to apply one declaration to IE 6 and below on Windows and another to all other browsers, within the same rule. To do this, you could use the commented property hack, or you could use the !important or the underscore hack. For more on the history of this, and several other filters, see Tantek Çelik’s excellent</p>
<p>article, “Pandora’s Box (Model) of CSS Hacks and Other Good Intentions,” at http://tantek.com/log/2005/11.html.</p>
<p>The !important hack works because IE 6 and below on Windows has problems dealing with multiple properties in a single rule:</p>
<pre class="css">#nav {
position: fixed !important;
position: static;
}</pre>
<p>IE 4-6/Win will ignore the first declaration and apply the second. All other browsers will apply the first declaration because it is using the !important keyword, which increases the rule’s priority within the cascade. Similar to the !important hack is the underscore hack. By placing an underscore in front of a property, compliant browsers will no longer recognize that property and the declaration will be ignored. However, IE 6 and below on Windows ignores the underscore and thus applies the rule. So in this example, all modern browsers will apply a position of fixed, skipping the unknown second rule. IE 4-6/Win will ignore the underscore and will override the first rule, setting the position to static. </p>
<pre class="css">#nav {
position: fixed;
_position: static;
}</pre>
<h4>9. The Owen hack</h4>
<p>All of the filters so far have been aimed at various versions of IE. This is partly because IE has more bugs than most current browsers. However, it is also because IE is by far the most prevalent browser, so more bugs get found and documented. But there are other buggy browsers out there, including Opera 6 and below. The Owen hack allows authors to hide styles from Opera 6 and below, as well as from IE 6 and below on Windows. This filter works because these browsers do not implement the first-child selector. Because there can only ever be one head element, it is always a firstchild. The body tag always comes after the head tag, and so can be targeted using an adjacent sibling selector. The resulting selector is understood by more compliant browsers, while being ignored by version 6 and below of Opera and IE on Windows. In the following example, the Owen hack is being used to add a background PNG image on the body tag for more compliant browsers, hiding it from IE/Win and Opera, versions 6 and below: </p>
<pre class="css">head:first-child+body {
background-image: url("bg.png");
}</pre>
<p>If you only want to target Opera 6 and below, you need to combine the Owen hack with the child selector hack. Say you wanted to display an upgrade notice to Opera 6 users. You would first use the child selector hack to show your upgrade message to every browser except IE 6 and below on Windows. You could then use the Owen hack to hide the message from more modern browsers: </p>
<pre class="css">html&gt;body #getFirefox {
display: static;
}
head:first-child+body #getFirefox {
display: none;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.richcoder.com/2009/08/10/9-most-important-and-useful-css-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Green &amp; Sleek Web Layout in Photoshop</title>
		<link>http://www.richcoder.com/2009/08/10/create-a-green-sleek-web-layout-in-photoshop/</link>
		<comments>http://www.richcoder.com/2009/08/10/create-a-green-sleek-web-layout-in-photoshop/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 14:54:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Download]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://richcoder.com/?p=221</guid>
		<description><![CDATA[




In this web design tutorial, you’ll learn how to create a beautiful, green, and sleek layout in Photoshop. You’ll learn popular design techniques such as creating a 3D ribbon and professional-looking color gradient effects.
Final Result

Check out the preview of what we’re about to create together. Don’t forget to click on the image to see the [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-5111680225854034";
/* 468x60, created 8/20/09 */
google_ad_slot = "8316648255";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><img src="http://richcoder.com/wp-content/uploads/2009/08/22-01_green_and_sleek_leading_image.jpg" alt="22 01 green and sleek leading image Create a Green & Sleek Web Layout in Photoshop" title="22-01_green_and_sleek_leading_image" width="500" height="227" class="aligncenter size-full wp-image-222" /></p>
<p>In this web design tutorial, you’ll learn how to create a beautiful, green, and sleek layout in Photoshop. You’ll learn popular design techniques such as creating a 3D ribbon and professional-looking color gradient effects.</p>
<h3>Final Result</h3>
<p><a href="http://images.sixrevisions.com/2009/07/22-03_green_and_sleek_final_result_large.jpg" target="_blank"><img src="http://richcoder.com/wp-content/uploads/2009/08/22-02_green_and_sleek_final_result_small.jpg" alt="22 02 green and sleek final result small Create a Green & Sleek Web Layout in Photoshop" title="22-02_green_and_sleek_final_result_small" width="550" height="444" class="alignnone size-full wp-image-226" /></a></p>
<p>Check out the preview of what we’re about to create together. Don’t forget to click on the image to see the <a href="http://images.sixrevisions.com/2009/07/22-03_green_and_sleek_final_result_large.jpg" target="_blank">full-scale version of the web layout.</a></p>
<h3>Download</h3>
<p>You can download the Photoshop (PSD) source file free of charge so that you may study it to enhance your learning.</p>
<p><a href="http://downloads.sixrevisions.com/green-and-sleek-web-layout.zip" target="_blank"><strong>Download </strong></a>(ZIP, 15.8 MB)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.richcoder.com/2009/08/10/create-a-green-sleek-web-layout-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
