<?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; resizable</title>
	<atom:link href="http://www.myflashlab.com/tag/resizable/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.myflashlab.com</link>
	<description>web components</description>
	<lastBuildDate>Thu, 09 Sep 2010 07:03:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Deeplinking brick gallery class</title>
		<link>http://www.myflashlab.com/2010/07/03/deeplinking-brick-gallery-class/</link>
		<comments>http://www.myflashlab.com/2010/07/03/deeplinking-brick-gallery-class/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 13:00:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[gallery]]></category>
		<category><![CDATA[Aero effect]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[blur effect]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[deep link]]></category>
		<category><![CDATA[deep linking]]></category>
		<category><![CDATA[Deeplinking]]></category>
		<category><![CDATA[dynamically loaded]]></category>
		<category><![CDATA[resizable]]></category>
		<category><![CDATA[xml-driven]]></category>

		<guid isPermaLink="false">http://www.myflashlab.com/?p=374</guid>
		<description><![CDATA[Dynamic Gallery Class. To be used in flash projects. To be embedded directly in HTML pages. Supports deep linking. Auto resizing XML driven For developers (professional users), you can initialize the gallery class and set its properties through coding. For other users, you can just take a look at our sample files and install the [...]]]></description>
		<wfw:commentRss>http://www.myflashlab.com/2010/07/03/deeplinking-brick-gallery-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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#email").val();
		if (email == "") {
      $("label#email_error").show();
      $("input#email").focus();
      return false;
    }
		var prod_id = $("input#free_download_product_id").val();
		
		var dataString = 'name='+ name + '&email=' + email + '&prod_id=' + prod_id;
		//alert (dataString);return false;
        var process_script_url = 'http://www.myflashlab.com/wp-content/plugins/wp-cart-for-digital-products' + '/ajax_process_download.php';

		$.ajax({
      type: "POST",
      url: process_script_url,
      data: dataString,
      success: function() {
        $('.free_download_form').html("<div class='message'></div>");
        $('.message').html("<h4>Email sent!</h4>")
        .append("<p>Please check your inbox for the download link.</p>")
        .hide()
        .fadeIn(1500, 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>12</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>42</slash:comments>
		</item>
		<item>
		<title>Popup Class</title>
		<link>http://www.myflashlab.com/2010/01/22/popup-class/</link>
		<comments>http://www.myflashlab.com/2010/01/22/popup-class/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 07:59:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Utils]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[binary]]></category>
		<category><![CDATA[byteArray]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[dragable]]></category>
		<category><![CDATA[dynamic content]]></category>
		<category><![CDATA[oop]]></category>
		<category><![CDATA[popup]]></category>
		<category><![CDATA[popup window]]></category>
		<category><![CDATA[resizable]]></category>

		<guid isPermaLink="false">http://www.myflashlab.com/?p=62</guid>
		<description><![CDATA[Pure coding AS3 popup class. Everything will be created on runtime. you will have very detailed documentations and help notes and even sample files to see how you should work with this class. CHECK OUT THE DEMO HERE The main features I can talk about are that this popup class is dragable, resizeable, totally dynamic [...]]]></description>
		<wfw:commentRss>http://www.myflashlab.com/2010/01/22/popup-class/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
