<?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>My Flash Lab &#187; dynamic</title>
	<atom:link href="http://www.myflashlab.com/tag/dynamic/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.myflashlab.com</link>
	<description>web components</description>
	<lastBuildDate>Mon, 03 Oct 2011 13:47:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Free AS3 Scrollbar Class</title>
		<link>http://www.myflashlab.com/2010/04/20/free-as3-scrollbar-class/</link>
		<comments>http://www.myflashlab.com/2010/04/20/free-as3-scrollbar-class/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 07:10:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Free Files]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[Horizontal]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[resizable]]></category>
		<category><![CDATA[scrollbar]]></category>
		<category><![CDATA[scroller]]></category>
		<category><![CDATA[Vertical]]></category>

		<guid isPermaLink="false">http://www.myflashlab.com/?p=326</guid>
		<description><![CDATA[<script type="text/javascript">
jQuery(document).ready(function($) {
$(function() {
  $('.error').hide();
  $(".button").click(function() {
		// validate and process form
		// first hide any error messages
    $('.error').hide();
		
	  var name = $("input#name").val();
		if (name == "") {
      $("label#name_error").show();
      $("input#name").focus();
      return false;
    }
		var email = $("input#eStore_ajax_email").val();
		if (email == "") {
      $("label#email_error").show();
      $("input#eStore_ajax_email").focus();
      return false;
    }
		var prod_id = $("input#free_download_product_id").val();
		var ap_id = $("input#free_download_ap_id").val();
		var clientip = $("input#free_download_clientip").val();
		
		var dataString = 'name='+ name + '&email=' + email + '&prod_id=' + prod_id + '&ap_id=' + ap_id + '&clientip=' + clientip;
		//alert (dataString);return false;
        var process_script_url = 'http://www.myflashlab.com/wp-content/plugins/wp-cart-for-digital-products' + '/ajax_process_download.php';

	// Because the server might be invoking the PDF Stamper, we want the user to have a "warm fuzzy feeling" while they
	// wait for a response.  Otherwise, they might get "click happy" with the submit button.
	// -- The Assurer, 2010-09-14.
	{
		$('.free_download_form').html("<div class='message'></div>");
		$('.message').html("")
		.append("Processing Order...")
		.hide()
		.fadeIn(250, function() {
			$('.message').append("<img id='loader1' src='http://www.myflashlab.com/wp-content/plugins/wp-cart-for-digital-products/images/ajax-loader1.gif' />");
		});
	}

		$.ajax({
      type: "POST",
      url: process_script_url,
      data: dataString,
      success: function() {
        $('.free_download_form').html("<div class='message'></div>");
        $('.message').html("")
        .append("<p style='color: green;'><strong>Email sent! Please check your inbox for the download link.</strong></p>")
        .hide()
        .fadeIn(250, function() {
          $('.message').append("<img id='checkmark' src='http://www.myflashlab.com/wp-content/plugins/wp-cart-for-digital-products/images/check.png' />");
        });
      }
     });
    return false;
	});
});
});
</script>
I did a couple of searches around and I found out that you can’t easily find a free and good looking scrollbar class which supports Horizontal and Vertical scrolling both at the same time! so I decided to build one then it turned out that it actually does even more than just scrolling horizontally and [...]]]></description>
		<wfw:commentRss>http://www.myflashlab.com/2010/04/20/free-as3-scrollbar-class/feed/</wfw:commentRss>
		<slash:comments>50</slash:comments>
		</item>
		<item>
		<title>Flip Class &#8211; CornerFlip</title>
		<link>http://www.myflashlab.com/2010/01/27/flip-class-cornerflip/</link>
		<comments>http://www.myflashlab.com/2010/01/27/flip-class-cornerflip/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 07:58:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Utils]]></category>
		<category><![CDATA[abstract]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[advertisment]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[external content]]></category>
		<category><![CDATA[flip class]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[pure coding flip effect]]></category>

		<guid isPermaLink="false">http://www.myflashlab.com/?p=87</guid>
		<description><![CDATA[This flip effect class works dynamically and is created through pure coding. There is NO library assets or symbols or what soever. you can simply initialize the class and set which corner of your project you want to have the flip effect and it will just work like charm! CHECK OUT THE DEMO HERE You [...]]]></description>
		<wfw:commentRss>http://www.myflashlab.com/2010/01/27/flip-class-cornerflip/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Scrollbar Class</title>
		<link>http://www.myflashlab.com/2010/01/22/scrollbar-class/</link>
		<comments>http://www.myflashlab.com/2010/01/22/scrollbar-class/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 09:34:17 +0000</pubDate>
		<dc:creator>ali</dc:creator>
				<category><![CDATA[Utils]]></category>
		<category><![CDATA[abstract]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[blur scrollbar]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css content window]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[dynamic content]]></category>
		<category><![CDATA[ease]]></category>
		<category><![CDATA[ease scrollbar]]></category>
		<category><![CDATA[easing]]></category>
		<category><![CDATA[elastic]]></category>
		<category><![CDATA[elastic scrollbar]]></category>
		<category><![CDATA[interactive]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[resizable]]></category>
		<category><![CDATA[Scroll]]></category>
		<category><![CDATA[scrollbar]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.myflashlab.com/?p=67</guid>
		<description><![CDATA[Pure coding AS3 regSimpleScroll (regular simple scrollbar) class or in simple words let&#8217;s say scrollbar class. 8/22/2010 UPDATE modifying mask size on runtime is now available. getting mask width on run time, before and after addChild (all of the inputs are actully live and editable before and after addChild) set vertical and horizontal percentage of [...]]]></description>
		<wfw:commentRss>http://www.myflashlab.com/2010/01/22/scrollbar-class/feed/</wfw:commentRss>
		<slash:comments>84</slash:comments>
		</item>
	</channel>
</rss>

