<?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>blog.vamapaull.com</title>
	<atom:link href="http://blog.vamapaull.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.vamapaull.com</link>
	<description>Flash, photography and what ever else I do in my every day life...</description>
	<lastBuildDate>Sat, 16 Jan 2010 14:01:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Password protected content in Flash with ActionScript 3 and PHP</title>
		<link>http://blog.vamapaull.com/?p=426</link>
		<comments>http://blog.vamapaull.com/?p=426#comments</comments>
		<pubDate>Sat, 16 Jan 2010 13:43:21 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[dataRequest]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[pass]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[protected]]></category>
		<category><![CDATA[URLRequest]]></category>
		<category><![CDATA[URLVariables]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[username]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=426</guid>
		<description><![CDATA[This morning I was browsing through the gotoAndLearn forum and I saw a question about how to make a password protected section in a Flash site. So, I made a quick example and I thought I should share it with all my readers too  
You can download the source files from here:
Here you can [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I was browsing through the <a href="http://www.gotoandlearnforum.com/index.php" target="_blank">gotoAndLearn forum</a> and I saw <a href="http://www.gotoandlearnforum.com/viewtopic.php?f=29&amp;t=28162&amp;p=120440#p120440" target="_blank">a question</a> about how to make a password protected section in a Flash site. So, I made a quick example and I thought I should share it with all my readers too <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>You can download the source files from here:<br />
Note: There is a file embedded within this post, please visit this post to download the file.</p>
<p>Here you can see the ActionScript 3 code:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #004993;">stage</span>.<span style="color: #004993;">align</span> = <span style="color: #004993;">StageAlign</span>.<span style="color: #004993;">TOP_LEFT</span>;
<span style="color: #004993;">stage</span>.<span style="color: #004993;">scaleMode</span> = <span style="color: #004993;">StageScaleMode</span>.<span style="color: #004993;">NO_SCALE</span>;
<span style="color: #004993;">stage</span>.<span style="color: #004993;">showDefaultContextMenu</span> = <span style="color: #0033ff; font-weight: bold;">false</span>;
&nbsp;
<span style="color: #009900;">//path to the php file on your server</span>
<span style="color: #6699cc; font-weight: bold;">var</span> phpPath<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">String</span> = <span style="color: #990000;">&quot;login.php&quot;</span>;
&nbsp;
<span style="color: #009900;">//make password text field (when you type the characters will be like &quot;******&quot;)</span>
pass.<span style="color: #004993;">displayAsPassword</span> = <span style="color: #0033ff; font-weight: bold;">true</span>;
&nbsp;
login.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">MouseEvent</span>.<span style="color: #004993;">MOUSE_DOWN</span>, loginDown<span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> loginDown<span style="color: #000000;">&#40;</span>e<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">MouseEvent</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><span style="color: #000000;">&#123;</span>
	<span style="color: #009900;">//check to see if something in both the user and pass text fields</span>
	<span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span>user.<span style="color: #004993;">text</span> <span style="color: #000000; font-weight: bold;">!</span>= <span style="color: #990000;">&quot;&quot;</span> <span style="color: #000000; font-weight: bold;">&amp;</span>amp;<span style="color: #000000; font-weight: bold;">&amp;</span>amp; pass.<span style="color: #004993;">text</span> <span style="color: #000000; font-weight: bold;">!</span>= <span style="color: #990000;">&quot;&quot;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
		sendLoadData<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #000000;">&#125;</span><span style="color: #0033ff; font-weight: bold;">else</span><span style="color: #000000;">&#123;</span>
		<span style="color: #004993;">trace</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;Please fill in both username and password&quot;</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
<span style="color: #004993;">stop</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> sendLoadData<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
	<span style="color: #6699cc; font-weight: bold;">var</span> dataRequest<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">URLRequest</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">URLRequest</span><span style="color: #000000;">&#40;</span>phpPath<span style="color: #000000;">&#41;</span>;
	dataRequest.<span style="color: #004993;">method</span> = <span style="color: #004993;">URLRequestMethod</span>.<span style="color: #004993;">POST</span>;				
&nbsp;
	<span style="color: #009900;">// define the custom parameters that will be sent to the .php file</span>
	<span style="color: #6699cc; font-weight: bold;">var</span> params<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">URLVariables</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">URLVariables</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
	params.user = user.<span style="color: #004993;">text</span>;
	params.pass = pass.<span style="color: #004993;">text</span>;
&nbsp;
	dataRequest.<span style="color: #004993;">data</span> = params;
&nbsp;
	<span style="color: #6699cc; font-weight: bold;">var</span> urlLoader<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">URLLoader</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">URLLoader</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
	urlLoader.<span style="color: #004993;">dataFormat</span> = <span style="color: #004993;">URLLoaderDataFormat</span>.<span style="color: #004993;">VARIABLES</span>;
	urlLoader.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">COMPLETE</span>, urlLoaderComplete<span style="color: #000000;">&#41;</span>;
&nbsp;
	<span style="color: #0033ff; font-weight: bold;">try</span>
	<span style="color: #000000;">&#123;</span>
		urlLoader.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span>dataRequest<span style="color: #000000;">&#41;</span>;
	<span style="color: #000000;">&#125;</span>
	<span style="color: #0033ff; font-weight: bold;">catch</span> <span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Error</span><span style="color: #000000;">&#41;</span>
	<span style="color: #000000;">&#123;</span>
		<span style="color: #004993;">trace</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;Incorrect PHP file path.&quot;</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> urlLoaderComplete<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
	<span style="color: #009900;">// once all the data has been sent and we'll check for a message sent</span>
	<span style="color: #009900;">// from the php file to tell us if the operation has ended with success or not</span>
	errorHandler<span style="color: #000000;">&#40;</span>event.<span style="color: #004993;">target</span>.<span style="color: #004993;">data</span>.secure_response<span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> errorHandler<span style="color: #000000;">&#40;</span><span style="color: #004993;">message</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Number</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
	<span style="color: #009900;">// check the message that was sent back from the php file</span>
	<span style="color: #009900;">//trace(message)</span>
	<span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #004993;">message</span> == <span style="color: #000000; font-weight:bold;">1</span><span style="color: #000000;">&#41;</span>
	<span style="color: #000000;">&#123;</span>
		<span style="color: #004993;">gotoAndStop</span><span style="color: #000000;">&#40;</span><span style="color: #000000; font-weight:bold;">2</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #000000;">&#125;</span>
	<span style="color: #0033ff; font-weight: bold;">else</span>
	<span style="color: #000000;">&#123;</span>
		<span style="color: #004993;">trace</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;Wrong Username or Password&quot;</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

<p>And here you have the PHP code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>
<span style="color: #666666; font-style: italic;">//Your set username and password</span>
<span style="color: #000088;">$username</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;vamapaull&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$password</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;mypassword&quot;</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
<span style="color: #666666; font-style: italic;">//Variables received from ActionScript</span>
<span style="color: #000088;">$user</span><span style="color: #339933;">=</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'user'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$pass</span><span style="color: #339933;">=</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'pass'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
<span style="color: #666666; font-style: italic;">//Chack them against each other</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$user</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$username</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$pass</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$password</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">print</span> <span style="color: #0000ff;">&quot;secure_response=1&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">print</span> <span style="color: #0000ff;">&quot;secure_response=2&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=426&amp;Title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP&amp;desc=This%20morning%20I%20was%20browsing%20through%20the%20gotoAndLearn%20forum%20and%20I%20saw%20a%20question%20about%20how%20to%20make%20a%20password%20protected%20section%20in%20a%20Flash%20site.%20So%2C%20I%20made%20a%20quick%20example%20and%20I%20thought%20I%20should%20share%20it%20with%20all%20my%20readers%20too%20%3B%29%0D%0A%0D%0AYou%20can%20download%20the%20source%20files%20from%20here%3A%0D%0A%0D%0A%0D%0AHere%20you%20can%20see%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=426&amp;submitHeadline=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP&amp;submitSummary=This%20morning%20I%20was%20browsing%20through%20the%20gotoAndLearn%20forum%20and%20I%20saw%20a%20question%20about%20how%20to%20make%20a%20password%20protected%20section%20in%20a%20Flash%20site.%20So%2C%20I%20made%20a%20quick%20example%20and%20I%20thought%20I%20should%20share%20it%20with%20all%20my%20readers%20too%20%3B%29%0D%0A%0D%0AYou%20can%20download%20the%20source%20files%20from%20here%3A%0D%0A%0D%0A%0D%0AHere%20you%20can%20see%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=426" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=426&amp;t=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=426&amp;t=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP+-+http://b2l.me/dvfa3+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=426&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP&amp;summary=This%20morning%20I%20was%20browsing%20through%20the%20gotoAndLearn%20forum%20and%20I%20saw%20a%20question%20about%20how%20to%20make%20a%20password%20protected%20section%20in%20a%20Flash%20site.%20So%2C%20I%20made%20a%20quick%20example%20and%20I%20thought%20I%20should%20share%20it%20with%20all%20my%20readers%20too%20%3B%29%0D%0A%0D%0AYou%20can%20download%20the%20source%20files%20from%20here%3A%0D%0A%0D%0A%0D%0AHere%20you%20can%20see%20&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=426&amp;h=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=This%20morning%20I%20was%20browsing%20through%20the%20gotoAndLearn%20forum%20and%20I%20saw%20a%20question%20about%20how%20to%20make%20a%20password%20protected%20section%20in%20a%20Flash%20site.%20So%2C%20I%20made%20a%20quick%20example%20and%20I%20thought%20I%20should%20share%20it%20with%20all%20my%20readers%20too%20%3B%29%0D%0A%0D%0AYou%20can%20download%20the%20source%20files%20from%20here%3A%0D%0A%0D%0A%0D%0AHere%20you%20can%20see%20&amp;posturl=http://blog.vamapaull.com/?p=426&amp;posttitle=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=426&amp;bm_description=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=426" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=426" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP&amp;link=http://blog.vamapaull.com/?p=426" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D426&amp;desc=This%20morning%20I%20was%20browsing%20through%20the%20gotoAndLearn%20forum%20and%20I%20saw%20a%20question%20about%20how%20to%20make%20a%20password%20protected%20section%20in%20a%20Flash%20site.%20So%2C%20I%20made%20a%20quick%20example%20and%20I%20thought%20I%20should%20share%20it%20with%20all%20my%20readers%20too%20%3B%29%0D%0A%0D%0AYou%20can%20download%20the%20source%20files%20from%20here%3A%0D%0A%0D%0A%0D%0AHere%20you%20can%20see%20&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=426" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP&amp;body=This%20morning%20I%20was%20browsing%20through%20the%20gotoAndLearn%20forum%20and%20I%20saw%20a%20question%20about%20how%20to%20make%20a%20password%20protected%20section%20in%20a%20Flash%20site.%20So%2C%20I%20made%20a%20quick%20example%20and%20I%20thought%20I%20should%20share%20it%20with%20all%20my%20readers%20too%20%3B%29%0D%0A%0D%0AYou%20can%20download%20the%20source%20files%20from%20here%3A%0D%0A%0D%0A%0D%0AHere%20you%20can%20see%20" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=426&amp;lname=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=426&amp;u_data[name]=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=426&amp;bmtitle=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=426&amp;title=Password+protected+content+in+Flash+with+ActionScript+3+and+PHP" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=426</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ActionScript 3 YouTube feed application</title>
		<link>http://blog.vamapaull.com/?p=405</link>
		<comments>http://blog.vamapaull.com/?p=405#comments</comments>
		<pubDate>Tue, 12 Jan 2010 15:13:55 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=405</guid>
		<description><![CDATA[A few days ago I made a little application based on the new ActionScript 3 YouTube API and I thought I should share it with those who want to get started with this type of players. In the future I plan to make some more complex applications based on this API so I can sell [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago I made a little application based on the new ActionScript 3 YouTube API and I thought I should share it with those who want to get started with this type of players. In the future I plan to make some more complex applications based on this API so I can sell them on <a href="http://activeden.net/?ref=vamapaull" target="_blank">ActiveDen.net</a></p>
<p><a title="ActionScript 3 YouTube feed application" rel="shadowbox;width=900;height=400" href="http://blog.vamapaull.com/wp-content/uploads/2010/01/youtube-feed-with-list-component.swf"><img class="alignnone size-full wp-image-406" title="youtube-username-playlist" src="http://blog.vamapaull.com/wp-content/uploads/2010/01/youtube-username-playlist.jpg" alt="" width="590" height="256" /></a></p>
<p>Here you can see the code:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #004993;">stage</span>.<span style="color: #004993;">scaleMode</span> = <span style="color: #004993;">StageScaleMode</span>.<span style="color: #004993;">NO_SCALE</span>;
<span style="color: #004993;">stage</span>.<span style="color: #004993;">align</span> = <span style="color: #004993;">StageAlign</span>.<span style="color: #004993;">TOP_LEFT</span>;
&nbsp;
<span style="color: #004993;">Security</span>.<span style="color: #004993;">allowDomain</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;youtube.com&quot;</span>,<span style="color: #990000;">&quot;http://youtube.com&quot;</span>,<span style="color: #990000;">&quot;www.youtube.com&quot;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
&nbsp;
<span style="color: #6699cc; font-weight: bold;">var</span> feedName<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">String</span> = <span style="color: #990000;">&quot;MyDamnChannel&quot;</span>;
&nbsp;
&nbsp;
<span style="color: #009900;">// This will hold the API player instance once it is initialized.</span>
<span style="color: #6699cc; font-weight: bold;">var</span> player<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Object</span>;
&nbsp;
<span style="color: #6699cc; font-weight: bold;">var</span> playerLoader<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Loader</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Loader</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
playerLoader.<span style="color: #004993;">contentLoaderInfo</span>.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">INIT</span>, onLoaderInit<span style="color: #000000;">&#41;</span>;
playerLoader.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">URLRequest</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;http://www.youtube.com/apiplayer?version=3&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> onLoaderInit<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> <span style="color: #000000;">&#123;</span>
	<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span>playerLoader<span style="color: #000000;">&#41;</span>;
	playerLoader.<span style="color: #004993;">content</span>.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;onReady&quot;</span>, onPlayerReady<span style="color: #000000;">&#41;</span>;
	playerLoader.<span style="color: #004993;">content</span>.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;onError&quot;</span>, onPlayerError<span style="color: #000000;">&#41;</span>;
	playerLoader.<span style="color: #004993;">content</span>.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;onStateChange&quot;</span>, onPlayerStateChange<span style="color: #000000;">&#41;</span>;
	playerLoader.<span style="color: #004993;">content</span>.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;onPlaybackQualityChange&quot;</span>, 
		onVideoPlaybackQualityChange<span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> onPlayerReady<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> <span style="color: #000000;">&#123;</span>
	<span style="color: #009900;">// Event.data contains the event parameter, which is the Player API ID </span>
	<span style="color: #009900;">//trace(&quot;player ready:&quot;, Object(event).data);</span>
&nbsp;
	<span style="color: #009900;">// Once this event has been dispatched by the player, we can use</span>
	<span style="color: #009900;">// cueVideoById, loadVideoById, cueVideoByUrl and loadVideoByUrl</span>
	<span style="color: #009900;">// to load a particular YouTube video.</span>
	player = playerLoader.<span style="color: #004993;">content</span>;
	player.<span style="color: #004993;">x</span> = <span style="color: #000000; font-weight:bold;">300</span>;
	player.<span style="color: #004993;">y</span> = <span style="color: #000000; font-weight:bold;">30</span>;
	player.setSize<span style="color: #000000;">&#40;</span><span style="color: #000000; font-weight:bold;">580</span>,<span style="color: #000000; font-weight:bold;">345</span><span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> onPlayerError<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> <span style="color: #000000;">&#123;</span>
	<span style="color: #009900;">// Event.data contains the event parameter, which is the error code</span>
	<span style="color: #009900;">//trace(&quot;player error:&quot;, Object(event).data);</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> onPlayerStateChange<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> <span style="color: #000000;">&#123;</span>
	<span style="color: #009900;">// Event.data contains the event parameter, which is the new player state</span>
	<span style="color: #009900;">//trace(&quot;player state:&quot;, Object(event).data);</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> onVideoPlaybackQualityChange<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> <span style="color: #000000;">&#123;</span>
	<span style="color: #009900;">// Event.data contains the event parameter, which is the new video quality</span>
	<span style="color: #009900;">//trace(&quot;video quality:&quot;, Object(event).data);</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
&nbsp;
<span style="color: #6699cc; font-weight: bold;">var</span> <span style="color: #004993;">loader</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">URLLoader</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">URLLoader</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #004993;">loader</span>.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">COMPLETE</span>, onLoaded<span style="color: #000000;">&#41;</span>;
&nbsp;
lb.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">CHANGE</span>, itemChange<span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> itemChange<span style="color: #000000;">&#40;</span>e<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
	player.loadVideoById<span style="color: #000000;">&#40;</span>lb.selectedItem.<span style="color: #004993;">data</span>,<span style="color: #000000; font-weight:bold;">0</span><span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #6699cc; font-weight: bold;">var</span> xml<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">XML</span>;
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> onLoaded<span style="color: #000000;">&#40;</span>e<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
&nbsp;
	<span style="color: #6699cc; font-weight: bold;">var</span> defaultNS<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Namespace</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Namespace</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;http://www.w3.org/2005/Atom&quot;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
	xml = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">XML</span><span style="color: #000000;">&#40;</span>e.<span style="color: #004993;">target</span>.<span style="color: #004993;">data</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #6699cc; font-weight: bold;">var</span> il<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">XMLList</span> = xml.defaultNS<span style="color: #000000; font-weight: bold;">::</span>entry;
	<span style="color: #0033ff; font-weight: bold;">for</span><span style="color: #000000;">&#40;</span><span style="color: #6699cc; font-weight: bold;">var</span> i<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">uint</span>=<span style="color: #000000; font-weight:bold;">0</span>; i<span style="color: #000000; font-weight: bold;">&lt;</span>il.<span style="color: #004993;">length</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>; i<span style="color: #000000; font-weight: bold;">++</span><span style="color: #000000;">&#41;</span>
	<span style="color: #000000;">&#123;</span>
&nbsp;
		<span style="color: #6699cc; font-weight: bold;">var</span> ytId<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">String</span> = il<span style="color: #000000;">&#91;</span>i<span style="color: #000000;">&#93;</span>.defaultNS<span style="color: #000000; font-weight: bold;">::</span>id.<span style="color: #004993;">slice</span><span style="color: #000000;">&#40;</span><span style="color: #000000; font-weight:bold;">42</span>,<span style="color: #000000; font-weight:bold;">53</span><span style="color: #000000;">&#41;</span>;
		lb.addItem<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#123;</span><span style="color: #004993;">data</span><span style="color: #000000; font-weight: bold;">:</span>ytId, label<span style="color: #000000; font-weight: bold;">:</span>il<span style="color: #000000;">&#91;</span>i<span style="color: #000000;">&#93;</span>.defaultNS<span style="color: #000000; font-weight: bold;">::</span>title<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #004993;">loader</span>.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">URLRequest</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;http://gdata.youtube.com/feeds/api/users/&quot;</span><span style="color: #000000; font-weight: bold;">+</span>feedName<span style="color: #000000; font-weight: bold;">+</span><span style="color: #990000;">&quot;/uploads&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;</pre></div></div>

<p>Download FLA:<br />
Note: There is a file embedded within this post, please visit this post to download the file.</p>
<p>Enjoy! </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=405&amp;Title=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application&amp;desc=A%20few%20days%20ago%20I%20made%20a%20little%20application%20based%20on%20the%20new%20ActionScript%203%20YouTube%20API%20and%20I%20thought%20I%20should%20share%20it%20with%20those%20who%20want%20to%20get%20started%20with%20this%20type%20of%20players.%20In%20the%20future%20I%20plan%20to%20make%20some%20more%20complex%20applications%20based%20on%20this%20API%20so%20I%20can%20sell%20them%20on%20ActiveDen.net%0D%0A%0D%0A%0D%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=405&amp;submitHeadline=ActionScript+3+YouTube+feed+application&amp;submitSummary=A%20few%20days%20ago%20I%20made%20a%20little%20application%20based%20on%20the%20new%20ActionScript%203%20YouTube%20API%20and%20I%20thought%20I%20should%20share%20it%20with%20those%20who%20want%20to%20get%20started%20with%20this%20type%20of%20players.%20In%20the%20future%20I%20plan%20to%20make%20some%20more%20complex%20applications%20based%20on%20this%20API%20so%20I%20can%20sell%20them%20on%20ActiveDen.net%0D%0A%0D%0A%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=405" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=405&amp;t=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=405&amp;t=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=ActionScript+3+YouTube+feed+application+-+http://b2l.me/djnn9+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=405&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application&amp;summary=A%20few%20days%20ago%20I%20made%20a%20little%20application%20based%20on%20the%20new%20ActionScript%203%20YouTube%20API%20and%20I%20thought%20I%20should%20share%20it%20with%20those%20who%20want%20to%20get%20started%20with%20this%20type%20of%20players.%20In%20the%20future%20I%20plan%20to%20make%20some%20more%20complex%20applications%20based%20on%20this%20API%20so%20I%20can%20sell%20them%20on%20ActiveDen.net%0D%0A%0D%0A%0D%0A&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=405&amp;h=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=A%20few%20days%20ago%20I%20made%20a%20little%20application%20based%20on%20the%20new%20ActionScript%203%20YouTube%20API%20and%20I%20thought%20I%20should%20share%20it%20with%20those%20who%20want%20to%20get%20started%20with%20this%20type%20of%20players.%20In%20the%20future%20I%20plan%20to%20make%20some%20more%20complex%20applications%20based%20on%20this%20API%20so%20I%20can%20sell%20them%20on%20ActiveDen.net%0D%0A%0D%0A%0D%0A&amp;posturl=http://blog.vamapaull.com/?p=405&amp;posttitle=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=405&amp;bm_description=ActionScript+3+YouTube+feed+application&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=405" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=405" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=ActionScript+3+YouTube+feed+application&amp;link=http://blog.vamapaull.com/?p=405" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=ActionScript+3+YouTube+feed+application&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D405&amp;desc=A%20few%20days%20ago%20I%20made%20a%20little%20application%20based%20on%20the%20new%20ActionScript%203%20YouTube%20API%20and%20I%20thought%20I%20should%20share%20it%20with%20those%20who%20want%20to%20get%20started%20with%20this%20type%20of%20players.%20In%20the%20future%20I%20plan%20to%20make%20some%20more%20complex%20applications%20based%20on%20this%20API%20so%20I%20can%20sell%20them%20on%20ActiveDen.net%0D%0A%0D%0A%0D%0A&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=405" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application&amp;body=A%20few%20days%20ago%20I%20made%20a%20little%20application%20based%20on%20the%20new%20ActionScript%203%20YouTube%20API%20and%20I%20thought%20I%20should%20share%20it%20with%20those%20who%20want%20to%20get%20started%20with%20this%20type%20of%20players.%20In%20the%20future%20I%20plan%20to%20make%20some%20more%20complex%20applications%20based%20on%20this%20API%20so%20I%20can%20sell%20them%20on%20ActiveDen.net%0D%0A%0D%0A%0D%0A" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=405&amp;lname=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=405&amp;u_data[name]=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=405&amp;bmtitle=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=405&amp;title=ActionScript+3+YouTube+feed+application" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=405</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>YouTube playlist with thumbnails</title>
		<link>http://blog.vamapaull.com/?p=396</link>
		<comments>http://blog.vamapaull.com/?p=396#comments</comments>
		<pubDate>Fri, 27 Nov 2009 16:24:39 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[ActionScript 2.0]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[activeden]]></category>
		<category><![CDATA[flashden]]></category>
		<category><![CDATA[Player]]></category>
		<category><![CDATA[playlist]]></category>
		<category><![CDATA[thumbnails]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[YouTube]]></category>
		<category><![CDATA[youtube api]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=396</guid>
		<description><![CDATA[After I made the first YouTube player I thought it&#8217;s a good idea if I make another version with thumbnails inside each playlist item. So I started to work on the project, then I posted it on ActiveDen.net and then it got approved (on 8 October 2009, after nearly 1 month from the first YouTube [...]]]></description>
			<content:encoded><![CDATA[<p>After I made the <a href="http://blog.vamapaull.com/?p=370" target="_blank">first YouTube player</a> I thought it&#8217;s a good idea if I make another version with thumbnails inside each playlist item. So I started to work on the project, then I posted it on <a href="http://activeden.net?ref=vamapaull" target="_blank">ActiveDen.net</a> and then it got approved (on 8 October 2009, after nearly 1 month from the <a href="http://activeden.net/item/youtube-player-with-playlist/56429?ref=vamapaull" target="_blank">first YouTube playlist project</a>). I don&#8217;t know how or why but right now <a href="http://activeden.net/item/youtube-playlist-with-thumbnails/62538?ref=vamapaull" target="_blank">this new player</a> it&#8217;s the best seller in my <a href="http://activeden.net?ref=vamapaull" target="_blank">ActiveDen</a> portfolio.  I&#8217;ll try to make some more YouTube projects and see how this will turn out.<a href="http://activeden.net/item/youtube-playlist-with-thumbnails/62538?ref=vamapaull" target="_blank"><img class="alignnone size-full wp-image-397" title="youtube playlist with thumbnails" src="http://blog.vamapaull.com/wp-content/uploads/2009/11/youtube-playlist-with-thumbnails.jpg" alt="youtube playlist with thumbnails" width="590" height="300" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=396&amp;Title=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails&amp;desc=After%20I%20made%20the%20first%20YouTube%20player%20I%20thought%20it%27s%20a%20good%20idea%20if%20I%20make%20another%20version%20with%20thumbnails%20inside%20each%20playlist%20item.%20So%20I%20started%20to%20work%20on%20the%20project%2C%20then%20I%20posted%20it%20on%20ActiveDen.net%20and%20then%20it%20got%20approved%20%28on%208%20October%202009%2C%20after%20nearly%201%20month%20from%20the%20first%20YouTube%20playli" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=396&amp;submitHeadline=YouTube+playlist+with+thumbnails&amp;submitSummary=After%20I%20made%20the%20first%20YouTube%20player%20I%20thought%20it%27s%20a%20good%20idea%20if%20I%20make%20another%20version%20with%20thumbnails%20inside%20each%20playlist%20item.%20So%20I%20started%20to%20work%20on%20the%20project%2C%20then%20I%20posted%20it%20on%20ActiveDen.net%20and%20then%20it%20got%20approved%20%28on%208%20October%202009%2C%20after%20nearly%201%20month%20from%20the%20first%20YouTube%20playli&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=396" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=396&amp;t=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=396&amp;t=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=YouTube+playlist+with+thumbnails+-+http://b2l.me/avnm4+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=396&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails&amp;summary=After%20I%20made%20the%20first%20YouTube%20player%20I%20thought%20it%27s%20a%20good%20idea%20if%20I%20make%20another%20version%20with%20thumbnails%20inside%20each%20playlist%20item.%20So%20I%20started%20to%20work%20on%20the%20project%2C%20then%20I%20posted%20it%20on%20ActiveDen.net%20and%20then%20it%20got%20approved%20%28on%208%20October%202009%2C%20after%20nearly%201%20month%20from%20the%20first%20YouTube%20playli&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=396&amp;h=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=After%20I%20made%20the%20first%20YouTube%20player%20I%20thought%20it%27s%20a%20good%20idea%20if%20I%20make%20another%20version%20with%20thumbnails%20inside%20each%20playlist%20item.%20So%20I%20started%20to%20work%20on%20the%20project%2C%20then%20I%20posted%20it%20on%20ActiveDen.net%20and%20then%20it%20got%20approved%20%28on%208%20October%202009%2C%20after%20nearly%201%20month%20from%20the%20first%20YouTube%20playli&amp;posturl=http://blog.vamapaull.com/?p=396&amp;posttitle=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=396&amp;bm_description=YouTube+playlist+with+thumbnails&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=396" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=396" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=YouTube+playlist+with+thumbnails&amp;link=http://blog.vamapaull.com/?p=396" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=YouTube+playlist+with+thumbnails&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D396&amp;desc=After%20I%20made%20the%20first%20YouTube%20player%20I%20thought%20it%27s%20a%20good%20idea%20if%20I%20make%20another%20version%20with%20thumbnails%20inside%20each%20playlist%20item.%20So%20I%20started%20to%20work%20on%20the%20project%2C%20then%20I%20posted%20it%20on%20ActiveDen.net%20and%20then%20it%20got%20approved%20%28on%208%20October%202009%2C%20after%20nearly%201%20month%20from%20the%20first%20YouTube%20playli&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=396" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails&amp;body=After%20I%20made%20the%20first%20YouTube%20player%20I%20thought%20it%27s%20a%20good%20idea%20if%20I%20make%20another%20version%20with%20thumbnails%20inside%20each%20playlist%20item.%20So%20I%20started%20to%20work%20on%20the%20project%2C%20then%20I%20posted%20it%20on%20ActiveDen.net%20and%20then%20it%20got%20approved%20%28on%208%20October%202009%2C%20after%20nearly%201%20month%20from%20the%20first%20YouTube%20playli" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=396&amp;lname=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=396&amp;u_data[name]=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=396&amp;bmtitle=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=396&amp;title=YouTube+playlist+with+thumbnails" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=396</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UserBooth (beta) &#8211; Flash Webcam Application &#8211; Photo maker</title>
		<link>http://blog.vamapaull.com/?p=385</link>
		<comments>http://blog.vamapaull.com/?p=385#comments</comments>
		<pubDate>Wed, 18 Nov 2009 04:01:10 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=385</guid>
		<description><![CDATA[A few weeks ago I made a little Flash application named &#8220;Photo Booth&#8221;. Then I started to work with a friend of mine on a bigger project that will be very useful for those site owners who want to easily integrate a webcam application into their sites.
The project name is UserBooth. Right now we are [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I made a little Flash application named &#8220;Photo Booth&#8221;. Then I started to work with a friend of mine on a bigger project that will be very useful for those site owners who want to easily integrate a webcam application into their sites.<br />
The project name is <a href="http://www.userbooth.com/demo/" target="_blank">UserBooth</a>. Right now we are still working on the application so please use it, take snapshots and let us know about your experience with the app. We need your feedback <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://www.userbooth.com/demo/" target="_blank"><img src="http://blog.vamapaull.com/wp-content/uploads/2009/11/userbooth.jpg" alt="userbooth" title="userbooth" width="480" height="254" class="alignnone size-full wp-image-386" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=385&amp;Title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker&amp;desc=A%20few%20weeks%20ago%20I%20made%20a%20little%20Flash%20application%20named%20%22Photo%20Booth%22.%20Then%20I%20started%20to%20work%20with%20a%20friend%20of%20mine%20on%20a%20bigger%20project%20that%20will%20be%20very%20useful%20for%20those%20site%20owners%20who%20want%20to%20easily%20integrate%20a%20webcam%20application%20into%20their%20sites.%20%0D%0AThe%20project%20name%20is%20UserBooth.%20Right%20now%20we%20are" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=385&amp;submitHeadline=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker&amp;submitSummary=A%20few%20weeks%20ago%20I%20made%20a%20little%20Flash%20application%20named%20%22Photo%20Booth%22.%20Then%20I%20started%20to%20work%20with%20a%20friend%20of%20mine%20on%20a%20bigger%20project%20that%20will%20be%20very%20useful%20for%20those%20site%20owners%20who%20want%20to%20easily%20integrate%20a%20webcam%20application%20into%20their%20sites.%20%0D%0AThe%20project%20name%20is%20UserBooth.%20Right%20now%20we%20are&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=385" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=385&amp;t=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=385&amp;t=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker+-+http://b2l.me/ah4zz+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=385&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker&amp;summary=A%20few%20weeks%20ago%20I%20made%20a%20little%20Flash%20application%20named%20%22Photo%20Booth%22.%20Then%20I%20started%20to%20work%20with%20a%20friend%20of%20mine%20on%20a%20bigger%20project%20that%20will%20be%20very%20useful%20for%20those%20site%20owners%20who%20want%20to%20easily%20integrate%20a%20webcam%20application%20into%20their%20sites.%20%0D%0AThe%20project%20name%20is%20UserBooth.%20Right%20now%20we%20are&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=385&amp;h=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=A%20few%20weeks%20ago%20I%20made%20a%20little%20Flash%20application%20named%20%22Photo%20Booth%22.%20Then%20I%20started%20to%20work%20with%20a%20friend%20of%20mine%20on%20a%20bigger%20project%20that%20will%20be%20very%20useful%20for%20those%20site%20owners%20who%20want%20to%20easily%20integrate%20a%20webcam%20application%20into%20their%20sites.%20%0D%0AThe%20project%20name%20is%20UserBooth.%20Right%20now%20we%20are&amp;posturl=http://blog.vamapaull.com/?p=385&amp;posttitle=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=385&amp;bm_description=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=385" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=385" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker&amp;link=http://blog.vamapaull.com/?p=385" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D385&amp;desc=A%20few%20weeks%20ago%20I%20made%20a%20little%20Flash%20application%20named%20%22Photo%20Booth%22.%20Then%20I%20started%20to%20work%20with%20a%20friend%20of%20mine%20on%20a%20bigger%20project%20that%20will%20be%20very%20useful%20for%20those%20site%20owners%20who%20want%20to%20easily%20integrate%20a%20webcam%20application%20into%20their%20sites.%20%0D%0AThe%20project%20name%20is%20UserBooth.%20Right%20now%20we%20are&amp;pcat=Technology&amp;tags=flash, actionscript," rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=385" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker&amp;body=A%20few%20weeks%20ago%20I%20made%20a%20little%20Flash%20application%20named%20%22Photo%20Booth%22.%20Then%20I%20started%20to%20work%20with%20a%20friend%20of%20mine%20on%20a%20bigger%20project%20that%20will%20be%20very%20useful%20for%20those%20site%20owners%20who%20want%20to%20easily%20integrate%20a%20webcam%20application%20into%20their%20sites.%20%0D%0AThe%20project%20name%20is%20UserBooth.%20Right%20now%20we%20are" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=385&amp;lname=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=385&amp;u_data[name]=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=385&amp;bmtitle=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=385&amp;title=UserBooth+%28beta%29+-+Flash+Webcam+Application+-+Photo+maker" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=385</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>YouTube API video player with playlist</title>
		<link>http://blog.vamapaull.com/?p=370</link>
		<comments>http://blog.vamapaull.com/?p=370#comments</comments>
		<pubDate>Wed, 16 Sep 2009 20:06:06 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[ActionScript 2.0]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[flashden]]></category>
		<category><![CDATA[Player]]></category>
		<category><![CDATA[playlist]]></category>
		<category><![CDATA[progress]]></category>
		<category><![CDATA[repeat]]></category>
		<category><![CDATA[shuffle]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[tracks]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[volume]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=370</guid>
		<description><![CDATA[A few days ago I had some free time on my hands and I thought it will be nice if I designed a little YouTube video player based on the YouTube API and upload it to activeden.net so others can buy and use it in their projects.
The video player has some nice features like:

 xml [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago I had some free time on my hands and I thought it will be nice if I designed a little YouTube video player based on the YouTube API and upload it to <a href="http://activeden.net?ref=vamapaull" target="_blank">activeden.net</a> so others can buy and use it in their projects.<br />
The video player has some nice features like:</p>
<ul>
<li> xml based playlist</li>
<li> playlist with or without scroll bar (depending on the amount of tracks)</li>
<li> volume control</li>
<li> play / pause button</li>
<li> preview track and next track buttons</li>
<li> shuffle button</li>
<li> repeat button</li>
<li> medium screen</li>
<li> full screen</li>
<li> progress bar</li>
<li> video time</li>
</ul>
<p>If you want to check it out you can find it <a href="http://flashden.net/item/youtube-player-with-playlist/56429?ref=vamapaull" target="_blank">here</a><br />
<a href="http://activeden.net/item/youtube-player-with-playlist/56429?ref=vamapaull" target="_blank"><img class="alignnone size-full wp-image-372" title="youtube-player-with-playlist" src="http://blog.vamapaull.com/wp-content/uploads/2009/09/youtube-player-with-playlist.jpg" alt="youtube-player-with-playlist" width="480" height="203" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=370&amp;Title=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist&amp;desc=A%20few%20days%20ago%20I%20had%20some%20free%20time%20on%20my%20hands%20and%20I%20thought%20it%20will%20be%20nice%20if%20I%20designed%20a%20little%20YouTube%20video%20player%20based%20on%20the%20YouTube%20API%20and%20upload%20it%20to%20activeden.net%20so%20others%20can%20buy%20and%20use%20it%20in%20their%20projects.%0D%0AThe%20video%20player%20has%20some%20nice%20features%20like%3A%0D%0A%0D%0A%09%20xml%20based%20playlist%0D%0A%09%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=370&amp;submitHeadline=YouTube+API+video+player+with+playlist&amp;submitSummary=A%20few%20days%20ago%20I%20had%20some%20free%20time%20on%20my%20hands%20and%20I%20thought%20it%20will%20be%20nice%20if%20I%20designed%20a%20little%20YouTube%20video%20player%20based%20on%20the%20YouTube%20API%20and%20upload%20it%20to%20activeden.net%20so%20others%20can%20buy%20and%20use%20it%20in%20their%20projects.%0D%0AThe%20video%20player%20has%20some%20nice%20features%20like%3A%0D%0A%0D%0A%09%20xml%20based%20playlist%0D%0A%09%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=370" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=370&amp;t=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=370&amp;t=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=YouTube+API+video+player+with+playlist+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=370&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist&amp;summary=A%20few%20days%20ago%20I%20had%20some%20free%20time%20on%20my%20hands%20and%20I%20thought%20it%20will%20be%20nice%20if%20I%20designed%20a%20little%20YouTube%20video%20player%20based%20on%20the%20YouTube%20API%20and%20upload%20it%20to%20activeden.net%20so%20others%20can%20buy%20and%20use%20it%20in%20their%20projects.%0D%0AThe%20video%20player%20has%20some%20nice%20features%20like%3A%0D%0A%0D%0A%09%20xml%20based%20playlist%0D%0A%09%20&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=370&amp;h=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=A%20few%20days%20ago%20I%20had%20some%20free%20time%20on%20my%20hands%20and%20I%20thought%20it%20will%20be%20nice%20if%20I%20designed%20a%20little%20YouTube%20video%20player%20based%20on%20the%20YouTube%20API%20and%20upload%20it%20to%20activeden.net%20so%20others%20can%20buy%20and%20use%20it%20in%20their%20projects.%0D%0AThe%20video%20player%20has%20some%20nice%20features%20like%3A%0D%0A%0D%0A%09%20xml%20based%20playlist%0D%0A%09%20&amp;posturl=http://blog.vamapaull.com/?p=370&amp;posttitle=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=370&amp;bm_description=YouTube+API+video+player+with+playlist&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=370" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=370" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=YouTube+API+video+player+with+playlist&amp;link=http://blog.vamapaull.com/?p=370" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=YouTube+API+video+player+with+playlist&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D370&amp;desc=A%20few%20days%20ago%20I%20had%20some%20free%20time%20on%20my%20hands%20and%20I%20thought%20it%20will%20be%20nice%20if%20I%20designed%20a%20little%20YouTube%20video%20player%20based%20on%20the%20YouTube%20API%20and%20upload%20it%20to%20activeden.net%20so%20others%20can%20buy%20and%20use%20it%20in%20their%20projects.%0D%0AThe%20video%20player%20has%20some%20nice%20features%20like%3A%0D%0A%0D%0A%09%20xml%20based%20playlist%0D%0A%09%20&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=370" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist&amp;body=A%20few%20days%20ago%20I%20had%20some%20free%20time%20on%20my%20hands%20and%20I%20thought%20it%20will%20be%20nice%20if%20I%20designed%20a%20little%20YouTube%20video%20player%20based%20on%20the%20YouTube%20API%20and%20upload%20it%20to%20activeden.net%20so%20others%20can%20buy%20and%20use%20it%20in%20their%20projects.%0D%0AThe%20video%20player%20has%20some%20nice%20features%20like%3A%0D%0A%0D%0A%09%20xml%20based%20playlist%0D%0A%09%20" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=370&amp;lname=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=370&amp;u_data[name]=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=370&amp;bmtitle=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=370&amp;title=YouTube+API+video+player+with+playlist" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=370</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photo Booth &#8211; Flash Webcam Image Capture</title>
		<link>http://blog.vamapaull.com/?p=355</link>
		<comments>http://blog.vamapaull.com/?p=355#comments</comments>
		<pubDate>Thu, 06 Aug 2009 13:22:16 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[3]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[as3.0]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[webca]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=355</guid>
		<description><![CDATA[EDIT: From this little experiment a new project called UserBooth came to life  
Two days ago I made a little flash app that will allow anyone to take a picture with a webcam connected to a computer. Everything worked fine in AS3. It was only when I got to the php part of the [...]]]></description>
			<content:encoded><![CDATA[<p>EDIT: From this little experiment a new project called <a href="http://userbooth.com/" target="_blank">UserBooth</a> came to life <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Two days ago I made a little flash app that will allow anyone to take a picture with a webcam connected to a computer. Everything worked fine in AS3. It was only when I got to the php part of the project when I felt like I should ask for help. And I did, I asked a friend or mine (<a href="http://www.mihaibojin.com/" target="_blank">Mihai Bojin</a>) who in a few minutes explained to me exactly what I needed to know in order to get this project working as it should (a big part of the php code is made by him).<br />
The project is now open source and you can find the code and the source fines underneath <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>You can download the source files from here:<br />
Note: There is a file embedded within this post, please visit this post to download the file.</p>
<p>Here you can see the working application:<br />
<a href="http://vamapaull.com/photobooth/">vamapaull.com/photobooth</a></p>
<p>Here you can see the ActionScript 3.0 code:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.display</span>.<span style="color: #004993;">Bitmap</span>;
<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.display</span>.<span style="color: #004993;">BitmapData</span>;
<span style="color: #0033ff; font-weight: bold;">import</span> com.adobe.images.JPGEncoder;
&nbsp;
<span style="color: #6699cc; font-weight: bold;">var</span> snd<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Sound</span> = <span style="color: #0033ff; font-weight: bold;">new</span> camerasound<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>; <span style="color: #009900;">//new sound instance for the &quot;capture&quot; button click</span>
&nbsp;
<span style="color: #6699cc; font-weight: bold;">var</span> <span style="color: #004993;">bandwidth</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">int</span> = <span style="color: #000000; font-weight:bold;">0</span>; <span style="color: #009900;">// Maximum amount of bandwidth that the current outgoing video feed can use, in bytes per second.</span>
<span style="color: #6699cc; font-weight: bold;">var</span> <span style="color: #004993;">quality</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">int</span> = <span style="color: #000000; font-weight:bold;">100</span>; <span style="color: #009900;">// This value is 0-100 with 1 being the lowest quality. </span>
&nbsp;
<span style="color: #6699cc; font-weight: bold;">var</span> cam<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Camera</span> = <span style="color: #004993;">Camera</span>.<span style="color: #004993;">getCamera</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
cam.<span style="color: #004993;">setQuality</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">bandwidth</span>, <span style="color: #004993;">quality</span><span style="color: #000000;">&#41;</span>;
cam.<span style="color: #004993;">setMode</span><span style="color: #000000;">&#40;</span><span style="color: #000000; font-weight:bold;">320</span>,<span style="color: #000000; font-weight:bold;">240</span>,<span style="color: #000000; font-weight:bold;">30</span>,<span style="color: #0033ff; font-weight: bold;">false</span><span style="color: #000000;">&#41;</span>; <span style="color: #009900;">// setMode(videoWidth, videoHeight, video fps, favor area)</span>
<span style="color: #6699cc; font-weight: bold;">var</span> video<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Video</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Video</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
video.<span style="color: #004993;">attachCamera</span><span style="color: #000000;">&#40;</span>cam<span style="color: #000000;">&#41;</span>;
video.<span style="color: #004993;">x</span> = <span style="color: #000000; font-weight:bold;">20</span>;
video.<span style="color: #004993;">y</span> = <span style="color: #000000; font-weight:bold;">20</span>;
<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span>video<span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #6699cc; font-weight: bold;">var</span> <span style="color: #004993;">bitmapData</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">BitmapData</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">BitmapData</span><span style="color: #000000;">&#40;</span>video.<span style="color: #004993;">width</span>,video.<span style="color: #004993;">height</span><span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #6699cc; font-weight: bold;">var</span> bitmap<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Bitmap</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Bitmap</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">bitmapData</span><span style="color: #000000;">&#41;</span>;
bitmap.<span style="color: #004993;">x</span> = <span style="color: #000000; font-weight:bold;">360</span>;
bitmap.<span style="color: #004993;">y</span> = <span style="color: #000000; font-weight:bold;">20</span>;
<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span>bitmap<span style="color: #000000;">&#41;</span>;
&nbsp;
capture_mc.<span style="color: #004993;">buttonMode</span> = <span style="color: #0033ff; font-weight: bold;">true</span>;
capture_mc.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">MouseEvent</span>.<span style="color: #004993;">CLICK</span>,captureImage<span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> captureImage<span style="color: #000000;">&#40;</span>e<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">MouseEvent</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> <span style="color: #000000;">&#123;</span>
	snd.<span style="color: #004993;">play</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #004993;">bitmapData</span>.<span style="color: #004993;">draw</span><span style="color: #000000;">&#40;</span>video<span style="color: #000000;">&#41;</span>;
	save_mc.<span style="color: #004993;">buttonMode</span> = <span style="color: #0033ff; font-weight: bold;">true</span>;
	save_mc.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">MouseEvent</span>.<span style="color: #004993;">CLICK</span>, onSaveJPG<span style="color: #000000;">&#41;</span>;
	save_mc.<span style="color: #004993;">alpha</span> = <span style="color: #000000; font-weight:bold;">1</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
save_mc.<span style="color: #004993;">alpha</span> = .5;
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> onSaveJPG<span style="color: #000000;">&#40;</span>e<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><span style="color: #000000;">&#123;</span>
	<span style="color: #6699cc; font-weight: bold;">var</span> myEncoder<span style="color: #000000; font-weight: bold;">:</span>JPGEncoder = <span style="color: #0033ff; font-weight: bold;">new</span> JPGEncoder<span style="color: #000000;">&#40;</span><span style="color: #000000; font-weight:bold;">100</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #6699cc; font-weight: bold;">var</span> byteArray<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">ByteArray</span> = myEncoder.encode<span style="color: #000000;">&#40;</span><span style="color: #004993;">bitmapData</span><span style="color: #000000;">&#41;</span>;
&nbsp;
	<span style="color: #6699cc; font-weight: bold;">var</span> header<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">URLRequestHeader</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">URLRequestHeader</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;Content-type&quot;</span>, <span style="color: #990000;">&quot;application/octet-stream&quot;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
	<span style="color: #6699cc; font-weight: bold;">var</span> saveJPG<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">URLRequest</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">URLRequest</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;save.php&quot;</span><span style="color: #000000;">&#41;</span>;
	saveJPG.<span style="color: #004993;">requestHeaders</span>.<span style="color: #004993;">push</span><span style="color: #000000;">&#40;</span>header<span style="color: #000000;">&#41;</span>;
	saveJPG.<span style="color: #004993;">method</span> = <span style="color: #004993;">URLRequestMethod</span>.<span style="color: #004993;">POST</span>;
	saveJPG.<span style="color: #004993;">data</span> = byteArray;
&nbsp;
	<span style="color: #6699cc; font-weight: bold;">var</span> urlLoader<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">URLLoader</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">URLLoader</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
	urlLoader.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">COMPLETE</span>, sendComplete<span style="color: #000000;">&#41;</span>;
	urlLoader.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span>saveJPG<span style="color: #000000;">&#41;</span>;
&nbsp;
	<span style="color: #339966; font-weight: bold;">function</span> sendComplete<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><span style="color: #000000;">&#123;</span>
		warn.<span style="color: #004993;">visible</span> = <span style="color: #0033ff; font-weight: bold;">true</span>;
		<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span>warn<span style="color: #000000;">&#41;</span>;
		warn.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">MouseEvent</span>.<span style="color: #004993;">MOUSE_DOWN</span>, warnDown<span style="color: #000000;">&#41;</span>;
		warn.<span style="color: #004993;">buttonMode</span> = <span style="color: #0033ff; font-weight: bold;">true</span>;
	<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> warnDown<span style="color: #000000;">&#40;</span>e<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">MouseEvent</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><span style="color: #000000;">&#123;</span>
	<span style="color: #004993;">navigateToURL</span><span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">URLRequest</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;images/&quot;</span><span style="color: #000000;">&#41;</span>, <span style="color: #990000;">&quot;_blank&quot;</span><span style="color: #000000;">&#41;</span>;
	warn.<span style="color: #004993;">visible</span> = <span style="color: #0033ff; font-weight: bold;">false</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
warn.<span style="color: #004993;">visible</span> = <span style="color: #0033ff; font-weight: bold;">false</span>;</pre></div></div>

<p>Here you have the php code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;HTTP_RAW_POST_DATA&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$jpg</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;HTTP_RAW_POST_DATA&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$img</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;img&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$filename</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;images/poza_&quot;</span><span style="color: #339933;">.</span> <span style="color: #990000;">mktime</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;.jpg&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">file_put_contents</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$filename</span><span style="color: #339933;">,</span> <span style="color: #000088;">$jpg</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Encoded JPEG information not received.&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=355&amp;Title=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture&amp;desc=EDIT%3A%20From%20this%20little%20experiment%20a%20new%20project%20called%20UserBooth%20came%20to%20life%20%3B%29%0D%0A%0D%0ATwo%20days%20ago%20I%20made%20a%20little%20flash%20app%20that%20will%20allow%20anyone%20to%20take%20a%20picture%20with%20a%20webcam%20connected%20to%20a%20computer.%20Everything%20worked%20fine%20in%20AS3.%20It%20was%20only%20when%20I%20got%20to%20the%20php%20part%20of%20the%20project%20when%20I%20felt%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=355&amp;submitHeadline=Photo+Booth+-+Flash+Webcam+Image+Capture&amp;submitSummary=EDIT%3A%20From%20this%20little%20experiment%20a%20new%20project%20called%20UserBooth%20came%20to%20life%20%3B%29%0D%0A%0D%0ATwo%20days%20ago%20I%20made%20a%20little%20flash%20app%20that%20will%20allow%20anyone%20to%20take%20a%20picture%20with%20a%20webcam%20connected%20to%20a%20computer.%20Everything%20worked%20fine%20in%20AS3.%20It%20was%20only%20when%20I%20got%20to%20the%20php%20part%20of%20the%20project%20when%20I%20felt%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=355" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=355&amp;t=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=355&amp;t=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Photo+Booth+-+Flash+Webcam+Image+Capture+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=355&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture&amp;summary=EDIT%3A%20From%20this%20little%20experiment%20a%20new%20project%20called%20UserBooth%20came%20to%20life%20%3B%29%0D%0A%0D%0ATwo%20days%20ago%20I%20made%20a%20little%20flash%20app%20that%20will%20allow%20anyone%20to%20take%20a%20picture%20with%20a%20webcam%20connected%20to%20a%20computer.%20Everything%20worked%20fine%20in%20AS3.%20It%20was%20only%20when%20I%20got%20to%20the%20php%20part%20of%20the%20project%20when%20I%20felt%20&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=355&amp;h=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=EDIT%3A%20From%20this%20little%20experiment%20a%20new%20project%20called%20UserBooth%20came%20to%20life%20%3B%29%0D%0A%0D%0ATwo%20days%20ago%20I%20made%20a%20little%20flash%20app%20that%20will%20allow%20anyone%20to%20take%20a%20picture%20with%20a%20webcam%20connected%20to%20a%20computer.%20Everything%20worked%20fine%20in%20AS3.%20It%20was%20only%20when%20I%20got%20to%20the%20php%20part%20of%20the%20project%20when%20I%20felt%20&amp;posturl=http://blog.vamapaull.com/?p=355&amp;posttitle=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=355&amp;bm_description=Photo+Booth+-+Flash+Webcam+Image+Capture&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=355" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=355" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Photo+Booth+-+Flash+Webcam+Image+Capture&amp;link=http://blog.vamapaull.com/?p=355" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Photo+Booth+-+Flash+Webcam+Image+Capture&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D355&amp;desc=EDIT%3A%20From%20this%20little%20experiment%20a%20new%20project%20called%20UserBooth%20came%20to%20life%20%3B%29%0D%0A%0D%0ATwo%20days%20ago%20I%20made%20a%20little%20flash%20app%20that%20will%20allow%20anyone%20to%20take%20a%20picture%20with%20a%20webcam%20connected%20to%20a%20computer.%20Everything%20worked%20fine%20in%20AS3.%20It%20was%20only%20when%20I%20got%20to%20the%20php%20part%20of%20the%20project%20when%20I%20felt%20&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=355" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture&amp;body=EDIT%3A%20From%20this%20little%20experiment%20a%20new%20project%20called%20UserBooth%20came%20to%20life%20%3B%29%0D%0A%0D%0ATwo%20days%20ago%20I%20made%20a%20little%20flash%20app%20that%20will%20allow%20anyone%20to%20take%20a%20picture%20with%20a%20webcam%20connected%20to%20a%20computer.%20Everything%20worked%20fine%20in%20AS3.%20It%20was%20only%20when%20I%20got%20to%20the%20php%20part%20of%20the%20project%20when%20I%20felt%20" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=355&amp;lname=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=355&amp;u_data[name]=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=355&amp;bmtitle=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=355&amp;title=Photo+Booth+-+Flash+Webcam+Image+Capture" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=355</wfw:commentRss>
		<slash:comments>59</slash:comments>
		</item>
		<item>
		<title>Stop-Motion Video &#8211; Street Delivery</title>
		<link>http://blog.vamapaull.com/?p=352</link>
		<comments>http://blog.vamapaull.com/?p=352#comments</comments>
		<pubDate>Sat, 13 Jun 2009 14:43:53 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[Every day life]]></category>
		<category><![CDATA[bucharest]]></category>
		<category><![CDATA[bucuresti]]></category>
		<category><![CDATA[delivery]]></category>
		<category><![CDATA[motion]]></category>
		<category><![CDATA[romania]]></category>
		<category><![CDATA[stop]]></category>
		<category><![CDATA[stop-motion]]></category>
		<category><![CDATA[streed]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=352</guid>
		<description><![CDATA[Last night I was at an event here in Bucharest named &#8220;Street Delivery&#8221;
I took some pictures and today I made a little Stop-Motion video.
Here you have the video:






		
			Submit this to Script &#38; Style
		
		
			Share this on Blinklist
		
		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Reddit
		
		
			Buzz up!
		
		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I was at an event here in Bucharest named &#8220;<a href="http://streetdelivery.ro/bucuresti/program/">Street Delivery</a>&#8221;<br />
I took <a href="http://picasaweb.google.ro/vamapaull/StreetDelivery#">some pictures</a> and today I made a little Stop-Motion video.</p>
<p>Here you have the video:<br />
<object width="480" height="265"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5139885&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=83414F&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5139885&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=83414F&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="480" height="265"></embed></object></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=352&amp;Title=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery&amp;desc=Last%20night%20I%20was%20at%20an%20event%20here%20in%20Bucharest%20named%20%22Street%20Delivery%22%0D%0AI%20took%20some%20pictures%20and%20today%20I%20made%20a%20little%20Stop-Motion%20video.%0D%0A%0D%0AHere%20you%20have%20the%20video%3A%0D%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=352&amp;submitHeadline=Stop-Motion+Video+-+Street+Delivery&amp;submitSummary=Last%20night%20I%20was%20at%20an%20event%20here%20in%20Bucharest%20named%20%22Street%20Delivery%22%0D%0AI%20took%20some%20pictures%20and%20today%20I%20made%20a%20little%20Stop-Motion%20video.%0D%0A%0D%0AHere%20you%20have%20the%20video%3A%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=352" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=352&amp;t=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=352&amp;t=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Stop-Motion+Video+-+Street+Delivery+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=352&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery&amp;summary=Last%20night%20I%20was%20at%20an%20event%20here%20in%20Bucharest%20named%20%22Street%20Delivery%22%0D%0AI%20took%20some%20pictures%20and%20today%20I%20made%20a%20little%20Stop-Motion%20video.%0D%0A%0D%0AHere%20you%20have%20the%20video%3A%0D%0A&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=352&amp;h=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Last%20night%20I%20was%20at%20an%20event%20here%20in%20Bucharest%20named%20%22Street%20Delivery%22%0D%0AI%20took%20some%20pictures%20and%20today%20I%20made%20a%20little%20Stop-Motion%20video.%0D%0A%0D%0AHere%20you%20have%20the%20video%3A%0D%0A&amp;posturl=http://blog.vamapaull.com/?p=352&amp;posttitle=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=352&amp;bm_description=Stop-Motion+Video+-+Street+Delivery&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=352" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=352" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Stop-Motion+Video+-+Street+Delivery&amp;link=http://blog.vamapaull.com/?p=352" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Stop-Motion+Video+-+Street+Delivery&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D352&amp;desc=Last%20night%20I%20was%20at%20an%20event%20here%20in%20Bucharest%20named%20%22Street%20Delivery%22%0D%0AI%20took%20some%20pictures%20and%20today%20I%20made%20a%20little%20Stop-Motion%20video.%0D%0A%0D%0AHere%20you%20have%20the%20video%3A%0D%0A&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=352" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery&amp;body=Last%20night%20I%20was%20at%20an%20event%20here%20in%20Bucharest%20named%20%22Street%20Delivery%22%0D%0AI%20took%20some%20pictures%20and%20today%20I%20made%20a%20little%20Stop-Motion%20video.%0D%0A%0D%0AHere%20you%20have%20the%20video%3A%0D%0A" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=352&amp;lname=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=352&amp;u_data[name]=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=352&amp;bmtitle=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=352&amp;title=Stop-Motion+Video+-+Street+Delivery" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=352</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The littke trip from this weekend</title>
		<link>http://blog.vamapaull.com/?p=338</link>
		<comments>http://blog.vamapaull.com/?p=338#comments</comments>
		<pubDate>Mon, 04 May 2009 21:43:04 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[Every day life]]></category>
		<category><![CDATA[Black Sea]]></category>
		<category><![CDATA[Marea Neagra]]></category>
		<category><![CDATA[Neptun]]></category>
		<category><![CDATA[romania]]></category>
		<category><![CDATA[Trip]]></category>
		<category><![CDATA[Vama Veche]]></category>
		<category><![CDATA[weekend]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=338</guid>
		<description><![CDATA[This weekend I got away for a little trip to the back sea with some friends of mine.
First we got to Vama Veche and then we got to Neptun where we met some girls and had some drinks at a very interesting restaurant.
I&#8217;ve taken some pictures and here you can see them:





		
			Submit this to Script [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend I got away for a little trip to the back sea with some friends of mine.<br />
First we got to Vama Veche and then we got to Neptun where we met some girls and had some drinks at a very interesting restaurant.<br />
I&#8217;ve taken some pictures and here you can see them:<br />

<a href='http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2214-pola.jpg' rel='shadowbox[post-338];player=img;' title='img_2214-pola'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2214-pola-150x150.jpg" class="attachment-thumbnail" alt="" title="img_2214-pola" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2113-pola.jpg' rel='shadowbox[post-338];player=img;' title='img_2113-pola'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2113-pola-150x150.jpg" class="attachment-thumbnail" alt="" title="img_2113-pola" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2116-pola.jpg' rel='shadowbox[post-338];player=img;' title='img_2116-pola'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2116-pola-150x150.jpg" class="attachment-thumbnail" alt="" title="img_2116-pola" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2127-pola.jpg' rel='shadowbox[post-338];player=img;' title='img_2127-pola'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2127-pola-150x150.jpg" class="attachment-thumbnail" alt="" title="img_2127-pola" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2149-pola.jpg' rel='shadowbox[post-338];player=img;' title='img_2149-pola'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2149-pola-150x150.jpg" class="attachment-thumbnail" alt="" title="img_2149-pola" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2155-pola.jpg' rel='shadowbox[post-338];player=img;' title='img_2155-pola'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2155-pola-150x150.jpg" class="attachment-thumbnail" alt="" title="img_2155-pola" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2156-pola.jpg' rel='shadowbox[post-338];player=img;' title='img_2156-pola'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2156-pola-150x150.jpg" class="attachment-thumbnail" alt="" title="img_2156-pola" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2159-pola.jpg' rel='shadowbox[post-338];player=img;' title='img_2159-pola'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2159-pola-150x150.jpg" class="attachment-thumbnail" alt="" title="img_2159-pola" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2167-pola.jpg' rel='shadowbox[post-338];player=img;' title='img_2167-pola'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2167-pola-150x150.jpg" class="attachment-thumbnail" alt="" title="img_2167-pola" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2176-pola.jpg' rel='shadowbox[post-338];player=img;' title='img_2176-pola'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/05/img_2176-pola-150x150.jpg" class="attachment-thumbnail" alt="" title="img_2176-pola" /></a>
</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=338&amp;Title=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend&amp;desc=This%20weekend%20I%20got%20away%20for%20a%20little%20trip%20to%20the%20back%20sea%20with%20some%20friends%20of%20mine.%0D%0AFirst%20we%20got%20to%20Vama%20Veche%20and%20then%20we%20got%20to%20Neptun%20where%20we%20met%20some%20girls%20and%20had%20some%20drinks%20at%20a%20very%20interesting%20restaurant.%0D%0AI%27ve%20taken%20some%20pictures%20and%20here%20you%20can%20see%20them%3A%0D%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=338&amp;submitHeadline=The+littke+trip+from+this+weekend&amp;submitSummary=This%20weekend%20I%20got%20away%20for%20a%20little%20trip%20to%20the%20back%20sea%20with%20some%20friends%20of%20mine.%0D%0AFirst%20we%20got%20to%20Vama%20Veche%20and%20then%20we%20got%20to%20Neptun%20where%20we%20met%20some%20girls%20and%20had%20some%20drinks%20at%20a%20very%20interesting%20restaurant.%0D%0AI%27ve%20taken%20some%20pictures%20and%20here%20you%20can%20see%20them%3A%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=338" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=338&amp;t=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=338&amp;t=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=The+littke+trip+from+this+weekend+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=338&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend&amp;summary=This%20weekend%20I%20got%20away%20for%20a%20little%20trip%20to%20the%20back%20sea%20with%20some%20friends%20of%20mine.%0D%0AFirst%20we%20got%20to%20Vama%20Veche%20and%20then%20we%20got%20to%20Neptun%20where%20we%20met%20some%20girls%20and%20had%20some%20drinks%20at%20a%20very%20interesting%20restaurant.%0D%0AI%27ve%20taken%20some%20pictures%20and%20here%20you%20can%20see%20them%3A%0D%0A&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=338&amp;h=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=This%20weekend%20I%20got%20away%20for%20a%20little%20trip%20to%20the%20back%20sea%20with%20some%20friends%20of%20mine.%0D%0AFirst%20we%20got%20to%20Vama%20Veche%20and%20then%20we%20got%20to%20Neptun%20where%20we%20met%20some%20girls%20and%20had%20some%20drinks%20at%20a%20very%20interesting%20restaurant.%0D%0AI%27ve%20taken%20some%20pictures%20and%20here%20you%20can%20see%20them%3A%0D%0A&amp;posturl=http://blog.vamapaull.com/?p=338&amp;posttitle=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=338&amp;bm_description=The+littke+trip+from+this+weekend&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=338" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=338" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=The+littke+trip+from+this+weekend&amp;link=http://blog.vamapaull.com/?p=338" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=The+littke+trip+from+this+weekend&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D338&amp;desc=This%20weekend%20I%20got%20away%20for%20a%20little%20trip%20to%20the%20back%20sea%20with%20some%20friends%20of%20mine.%0D%0AFirst%20we%20got%20to%20Vama%20Veche%20and%20then%20we%20got%20to%20Neptun%20where%20we%20met%20some%20girls%20and%20had%20some%20drinks%20at%20a%20very%20interesting%20restaurant.%0D%0AI%27ve%20taken%20some%20pictures%20and%20here%20you%20can%20see%20them%3A%0D%0A&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=338" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend&amp;body=This%20weekend%20I%20got%20away%20for%20a%20little%20trip%20to%20the%20back%20sea%20with%20some%20friends%20of%20mine.%0D%0AFirst%20we%20got%20to%20Vama%20Veche%20and%20then%20we%20got%20to%20Neptun%20where%20we%20met%20some%20girls%20and%20had%20some%20drinks%20at%20a%20very%20interesting%20restaurant.%0D%0AI%27ve%20taken%20some%20pictures%20and%20here%20you%20can%20see%20them%3A%0D%0A" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=338&amp;lname=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=338&amp;u_data[name]=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=338&amp;bmtitle=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=338&amp;title=The+littke+trip+from+this+weekend" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=338</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Photo-walk with Ramona</title>
		<link>http://blog.vamapaull.com/?p=333</link>
		<comments>http://blog.vamapaull.com/?p=333#comments</comments>
		<pubDate>Tue, 28 Apr 2009 09:03:39 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[Every day life]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[bucharest]]></category>
		<category><![CDATA[bucuresti]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[photowalk]]></category>
		<category><![CDATA[ramona]]></category>
		<category><![CDATA[romania]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[slide]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[walk]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=333</guid>
		<description><![CDATA[A few days ago I went out for a photo-walk here in Bucharest with a girl that I know from flickr. She is a great photographer and she is very smart (at least that&#8217;s my first impression   )
We had a lot of fun and we made lots of pictures. Below I posted a [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago I went out for a photo-walk here in Bucharest with a girl that I know from <a href="http://www.flickr.com/photos/firimituri/" target="_blank">flickr</a>. She is a great photographer and she is very smart (at least that&#8217;s my first impression <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' />  )<br />
We had a lot of fun and we made lots of pictures. Below I posted a slideshow with her making different face expressions.</p>
<p><object width="480" height="265"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=4316946&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=83414F&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=4316946&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=83414F&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="480" height="265"></embed></object></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=333&amp;Title=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona&amp;desc=A%20few%20days%20ago%20I%20went%20out%20for%20a%20photo-walk%20here%20in%20Bucharest%20with%20a%20girl%20that%20I%20know%20from%20flickr.%20She%20is%20a%20great%20photographer%20and%20she%20is%20very%20smart%20%28at%20least%20that%27s%20my%20first%20impression%20%3Alol%3A%20%29%0D%0AWe%20had%20a%20lot%20of%20fun%20and%20we%20made%20lots%20of%20pictures.%20Below%20I%20posted%20a%20slideshow%20with%20her%20making%20different%20fac" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=333&amp;submitHeadline=Photo-walk+with+Ramona&amp;submitSummary=A%20few%20days%20ago%20I%20went%20out%20for%20a%20photo-walk%20here%20in%20Bucharest%20with%20a%20girl%20that%20I%20know%20from%20flickr.%20She%20is%20a%20great%20photographer%20and%20she%20is%20very%20smart%20%28at%20least%20that%27s%20my%20first%20impression%20%3Alol%3A%20%29%0D%0AWe%20had%20a%20lot%20of%20fun%20and%20we%20made%20lots%20of%20pictures.%20Below%20I%20posted%20a%20slideshow%20with%20her%20making%20different%20fac&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=333" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=333&amp;t=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=333&amp;t=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Photo-walk+with+Ramona+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=333&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona&amp;summary=A%20few%20days%20ago%20I%20went%20out%20for%20a%20photo-walk%20here%20in%20Bucharest%20with%20a%20girl%20that%20I%20know%20from%20flickr.%20She%20is%20a%20great%20photographer%20and%20she%20is%20very%20smart%20%28at%20least%20that%27s%20my%20first%20impression%20%3Alol%3A%20%29%0D%0AWe%20had%20a%20lot%20of%20fun%20and%20we%20made%20lots%20of%20pictures.%20Below%20I%20posted%20a%20slideshow%20with%20her%20making%20different%20fac&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=333&amp;h=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=A%20few%20days%20ago%20I%20went%20out%20for%20a%20photo-walk%20here%20in%20Bucharest%20with%20a%20girl%20that%20I%20know%20from%20flickr.%20She%20is%20a%20great%20photographer%20and%20she%20is%20very%20smart%20%28at%20least%20that%27s%20my%20first%20impression%20%3Alol%3A%20%29%0D%0AWe%20had%20a%20lot%20of%20fun%20and%20we%20made%20lots%20of%20pictures.%20Below%20I%20posted%20a%20slideshow%20with%20her%20making%20different%20fac&amp;posturl=http://blog.vamapaull.com/?p=333&amp;posttitle=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=333&amp;bm_description=Photo-walk+with+Ramona&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=333" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=333" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Photo-walk+with+Ramona&amp;link=http://blog.vamapaull.com/?p=333" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Photo-walk+with+Ramona&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D333&amp;desc=A%20few%20days%20ago%20I%20went%20out%20for%20a%20photo-walk%20here%20in%20Bucharest%20with%20a%20girl%20that%20I%20know%20from%20flickr.%20She%20is%20a%20great%20photographer%20and%20she%20is%20very%20smart%20%28at%20least%20that%27s%20my%20first%20impression%20%3Alol%3A%20%29%0D%0AWe%20had%20a%20lot%20of%20fun%20and%20we%20made%20lots%20of%20pictures.%20Below%20I%20posted%20a%20slideshow%20with%20her%20making%20different%20fac&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=333" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona&amp;body=A%20few%20days%20ago%20I%20went%20out%20for%20a%20photo-walk%20here%20in%20Bucharest%20with%20a%20girl%20that%20I%20know%20from%20flickr.%20She%20is%20a%20great%20photographer%20and%20she%20is%20very%20smart%20%28at%20least%20that%27s%20my%20first%20impression%20%3Alol%3A%20%29%0D%0AWe%20had%20a%20lot%20of%20fun%20and%20we%20made%20lots%20of%20pictures.%20Below%20I%20posted%20a%20slideshow%20with%20her%20making%20different%20fac" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=333&amp;lname=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=333&amp;u_data[name]=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=333&amp;bmtitle=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=333&amp;title=Photo-walk+with+Ramona" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=333</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oded Antman Portfolio Site</title>
		<link>http://blog.vamapaull.com/?p=320</link>
		<comments>http://blog.vamapaull.com/?p=320#comments</comments>
		<pubDate>Sun, 26 Apr 2009 13:26:27 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Antman]]></category>
		<category><![CDATA[Oded]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=320</guid>
		<description><![CDATA[A few days ago I got a project from a GAF client of mine. This was a portfolio site for Oded Antman. I had to use the slideshow pro component (a great component to use in portfolio sites like this).
After a few days of learning the API for this component and after I did some [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago I got a project from a <a href="http://tinyurl.com/yov4n6" target="_blank">GAF</a> client of mine. This was a portfolio site for Oded Antman. I had to use the slideshow pro component (a great component to use in portfolio sites like this).<br />
After a few days of learning the API for this component and after I did some coding I found out that the component has a little bug, a bug that had something to do with the &#8220;navAppearance&#8221; method. My client simply wanted the fist slideshow when you enter the site to be without the navigation bar visible but when a gallery was changed and the navAppearance variable was changed, I started to get a lot of bugs in my project (by the way, I was working with the ActionScript 3 component version 1.9.3). I tried to get an answer from the slideshow pro forums (but I didn&#8217;t had the time to waste, the project had to be delivered very fast) and then I tried to find a way to get rid of the bug with other codding methods but without any good results.<br />
Finally the client decided that it is not a big problem and I finally delivered the project.<br />
This is the site I talked about:<br />
<a href="http://odedantman.com/">odedantman.com</a></p>
<p>After a few days I got a message on the forum from one of the slideshow pro support guys saying:<br />
<em>&#8220;Yeah, this is probably because the navigation wasn&#8217;t really intended to be changed mid-stream. As in, changing it to hidden for one album then switching it to something else thereafter. If you can you should keep one style of navigation appearance for your slideshow.&#8221;</em></p>
<p><a href="http://odedantman.com/" target="_blank"><img src="http://blog.vamapaull.com/wp-content/uploads/2009/04/oded-antman.jpg" alt="oded-antman" title="oded-antman" width="450" height="281" class="alignnone size-full wp-image-322" /></a></p>
<p>The design was not made by me, my job was just to code the site. The site system is very dynamic. It uses slideshow pro director as a CMS system and all the menu items can be easily changed in the control panel.<br />
I&#8217;m happy the client understood the problem and we finished the project without problems <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=320&amp;Title=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site&amp;desc=A%20few%20days%20ago%20I%20got%20a%20project%20from%20a%20GAF%20client%20of%20mine.%20This%20was%20a%20portfolio%20site%20for%20Oded%20Antman.%20I%20had%20to%20use%20the%20slideshow%20pro%20component%20%28a%20great%20component%20to%20use%20in%20portfolio%20sites%20like%20this%29.%20%0D%0AAfter%20a%20few%20days%20of%20learning%20the%20API%20for%20this%20component%20and%20after%20I%20did%20some%20coding%20I%20found%20out%20tha" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=320&amp;submitHeadline=Oded+Antman+Portfolio+Site&amp;submitSummary=A%20few%20days%20ago%20I%20got%20a%20project%20from%20a%20GAF%20client%20of%20mine.%20This%20was%20a%20portfolio%20site%20for%20Oded%20Antman.%20I%20had%20to%20use%20the%20slideshow%20pro%20component%20%28a%20great%20component%20to%20use%20in%20portfolio%20sites%20like%20this%29.%20%0D%0AAfter%20a%20few%20days%20of%20learning%20the%20API%20for%20this%20component%20and%20after%20I%20did%20some%20coding%20I%20found%20out%20tha&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=320" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=320&amp;t=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=320&amp;t=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Oded+Antman+Portfolio+Site+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=320&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site&amp;summary=A%20few%20days%20ago%20I%20got%20a%20project%20from%20a%20GAF%20client%20of%20mine.%20This%20was%20a%20portfolio%20site%20for%20Oded%20Antman.%20I%20had%20to%20use%20the%20slideshow%20pro%20component%20%28a%20great%20component%20to%20use%20in%20portfolio%20sites%20like%20this%29.%20%0D%0AAfter%20a%20few%20days%20of%20learning%20the%20API%20for%20this%20component%20and%20after%20I%20did%20some%20coding%20I%20found%20out%20tha&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=320&amp;h=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=A%20few%20days%20ago%20I%20got%20a%20project%20from%20a%20GAF%20client%20of%20mine.%20This%20was%20a%20portfolio%20site%20for%20Oded%20Antman.%20I%20had%20to%20use%20the%20slideshow%20pro%20component%20%28a%20great%20component%20to%20use%20in%20portfolio%20sites%20like%20this%29.%20%0D%0AAfter%20a%20few%20days%20of%20learning%20the%20API%20for%20this%20component%20and%20after%20I%20did%20some%20coding%20I%20found%20out%20tha&amp;posturl=http://blog.vamapaull.com/?p=320&amp;posttitle=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=320&amp;bm_description=Oded+Antman+Portfolio+Site&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=320" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=320" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Oded+Antman+Portfolio+Site&amp;link=http://blog.vamapaull.com/?p=320" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Oded+Antman+Portfolio+Site&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D320&amp;desc=A%20few%20days%20ago%20I%20got%20a%20project%20from%20a%20GAF%20client%20of%20mine.%20This%20was%20a%20portfolio%20site%20for%20Oded%20Antman.%20I%20had%20to%20use%20the%20slideshow%20pro%20component%20%28a%20great%20component%20to%20use%20in%20portfolio%20sites%20like%20this%29.%20%0D%0AAfter%20a%20few%20days%20of%20learning%20the%20API%20for%20this%20component%20and%20after%20I%20did%20some%20coding%20I%20found%20out%20tha&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=320" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site&amp;body=A%20few%20days%20ago%20I%20got%20a%20project%20from%20a%20GAF%20client%20of%20mine.%20This%20was%20a%20portfolio%20site%20for%20Oded%20Antman.%20I%20had%20to%20use%20the%20slideshow%20pro%20component%20%28a%20great%20component%20to%20use%20in%20portfolio%20sites%20like%20this%29.%20%0D%0AAfter%20a%20few%20days%20of%20learning%20the%20API%20for%20this%20component%20and%20after%20I%20did%20some%20coding%20I%20found%20out%20tha" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=320&amp;lname=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=320&amp;u_data[name]=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=320&amp;bmtitle=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=320&amp;title=Oded+Antman+Portfolio+Site" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=320</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dorm2dorm.com</title>
		<link>http://blog.vamapaull.com/?p=308</link>
		<comments>http://blog.vamapaull.com/?p=308#comments</comments>
		<pubDate>Wed, 01 Apr 2009 14:59:52 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[d2d]]></category>
		<category><![CDATA[dorm2dorm.com]]></category>
		<category><![CDATA[header]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=308</guid>
		<description><![CDATA[Last week I finished working on some flash pieces for a client from GAF
First I did the banner/header for this site dorm2dorm.com
Then this little app where I implemented some nice AS3 based animations dorm2dorm.com/storage_boxes
I did a lot of modifications to satisfy the clients requests but in the end I think we got some nice results [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I finished working on some flash pieces for a client from <a href="http://tinyurl.com/yov4n6" target="_blank">GAF</a><br />
First I did the banner/header for this site <a href="http://www.dorm2dorm.com" target="_blank">dorm2dorm.com</a><br />
Then this little app where I implemented some nice AS3 based animations <a href="http://www.dorm2dorm.com/storage_boxes/" target="_blank">dorm2dorm.com/storage_boxes</a></p>
<p>I did a lot of modifications to satisfy the clients requests but in the end I think we got some nice results <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://www.dorm2dorm.com/storage_boxes/" target="_blank"><img class="alignnone size-full wp-image-309" title="d2d" src="http://blog.vamapaull.com/wp-content/uploads/2009/04/d2d.jpg" alt="d2d" width="480" height="341" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=308&amp;Title=dorm2dorm.com" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com&amp;desc=Last%20week%20I%20finished%20working%20on%20some%20flash%20pieces%20for%20a%20client%20from%20GAF%0D%0AFirst%20I%20did%20the%20banner%2Fheader%20for%20this%20site%20dorm2dorm.com%0D%0AThen%20this%20little%20app%20where%20I%20implemented%20some%20nice%20AS3%20based%20animations%20dorm2dorm.com%2Fstorage_boxes%0D%0A%0D%0AI%20did%20a%20lot%20of%20modifications%20to%20satisfy%20the%20clients%20requests%20but%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=308&amp;submitHeadline=dorm2dorm.com&amp;submitSummary=Last%20week%20I%20finished%20working%20on%20some%20flash%20pieces%20for%20a%20client%20from%20GAF%0D%0AFirst%20I%20did%20the%20banner%2Fheader%20for%20this%20site%20dorm2dorm.com%0D%0AThen%20this%20little%20app%20where%20I%20implemented%20some%20nice%20AS3%20based%20animations%20dorm2dorm.com%2Fstorage_boxes%0D%0A%0D%0AI%20did%20a%20lot%20of%20modifications%20to%20satisfy%20the%20clients%20requests%20but%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=308" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=308&amp;t=dorm2dorm.com" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=308&amp;t=dorm2dorm.com" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=dorm2dorm.com+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=308&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com&amp;summary=Last%20week%20I%20finished%20working%20on%20some%20flash%20pieces%20for%20a%20client%20from%20GAF%0D%0AFirst%20I%20did%20the%20banner%2Fheader%20for%20this%20site%20dorm2dorm.com%0D%0AThen%20this%20little%20app%20where%20I%20implemented%20some%20nice%20AS3%20based%20animations%20dorm2dorm.com%2Fstorage_boxes%0D%0A%0D%0AI%20did%20a%20lot%20of%20modifications%20to%20satisfy%20the%20clients%20requests%20but%20&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=308&amp;h=dorm2dorm.com" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Last%20week%20I%20finished%20working%20on%20some%20flash%20pieces%20for%20a%20client%20from%20GAF%0D%0AFirst%20I%20did%20the%20banner%2Fheader%20for%20this%20site%20dorm2dorm.com%0D%0AThen%20this%20little%20app%20where%20I%20implemented%20some%20nice%20AS3%20based%20animations%20dorm2dorm.com%2Fstorage_boxes%0D%0A%0D%0AI%20did%20a%20lot%20of%20modifications%20to%20satisfy%20the%20clients%20requests%20but%20&amp;posturl=http://blog.vamapaull.com/?p=308&amp;posttitle=dorm2dorm.com" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=308&amp;bm_description=dorm2dorm.com&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=308" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=308" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=dorm2dorm.com&amp;link=http://blog.vamapaull.com/?p=308" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=dorm2dorm.com&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D308&amp;desc=Last%20week%20I%20finished%20working%20on%20some%20flash%20pieces%20for%20a%20client%20from%20GAF%0D%0AFirst%20I%20did%20the%20banner%2Fheader%20for%20this%20site%20dorm2dorm.com%0D%0AThen%20this%20little%20app%20where%20I%20implemented%20some%20nice%20AS3%20based%20animations%20dorm2dorm.com%2Fstorage_boxes%0D%0A%0D%0AI%20did%20a%20lot%20of%20modifications%20to%20satisfy%20the%20clients%20requests%20but%20&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=308" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com&amp;body=Last%20week%20I%20finished%20working%20on%20some%20flash%20pieces%20for%20a%20client%20from%20GAF%0D%0AFirst%20I%20did%20the%20banner%2Fheader%20for%20this%20site%20dorm2dorm.com%0D%0AThen%20this%20little%20app%20where%20I%20implemented%20some%20nice%20AS3%20based%20animations%20dorm2dorm.com%2Fstorage_boxes%0D%0A%0D%0AI%20did%20a%20lot%20of%20modifications%20to%20satisfy%20the%20clients%20requests%20but%20" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=308&amp;lname=dorm2dorm.com" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=308&amp;u_data[name]=dorm2dorm.com" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=308&amp;bmtitle=dorm2dorm.com" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=308&amp;title=dorm2dorm.com" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=308</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>YouTube Playlist &#8211; ActionScript 2 YouTube API</title>
		<link>http://blog.vamapaull.com/?p=293</link>
		<comments>http://blog.vamapaull.com/?p=293#comments</comments>
		<pubDate>Sat, 21 Mar 2009 05:26:11 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[ActionScript 2.0]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=293</guid>
		<description><![CDATA[I did some projects for some of my clients where I had to use the YouTube API to load videos in flash from the YouTube website. I remember I spent a lot of time trying to find a working example that I could use on my project. I first tried to work with the ActionScript [...]]]></description>
			<content:encoded><![CDATA[<p>I did some projects for some of my clients where I had to use the YouTube API to load videos in flash from the YouTube website. I remember I spent a lot of time trying to find a working example that I could use on my project. I first tried to work with the <a href="http://code.google.com/apis/youtube/articles/youtube_as3_chromeless.html">ActionScript 3</a> chromeless YouTube API (a friend of mine did a <a href="http://blog.wisebisoft.com/2009/02/09/flex-youtube-video-player/">fast example</a> using Flex and this API) but just when I thought the project is done, I got a message back from the client saying that he can not use the player because it&#8217;s working through some JavaScript code and his users can&#8217;t embed the player on myspace, facebook and stuff like that. Then I had to start form scratch but this time I had to make it work with <a href="http://code.google.com/apis/youtube/flash_api_reference.html">ActionScript 2</a> (at the time there was very little documentation about this on code.google.com)&#8230; after some hours of research and experiments I finally made the YouTube player in ActionScript 2 and I delivered the project without problems. Now I want to share with all of you the code that I used to get a project like this done. I have uploaded a zip archive with all the files you need if you want to get started with a similar project.</p>
<p><a href="http://vamapaull.com/work/blog_youtube_playlist/youtube_player_as2.swf" rel="shadowbox;width=450;height=300" >Click here</a> if you want to see how this YouTube Playlist app looks like <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
Note: There is a file embedded within this post, please visit this post to download the file.</p>
<p>Here you can see some of the projects I did using this API:<br />
<a href="http://meeetv.com/widget/" target="_blank">meeetv.com project</a><br />
<a href="http://vamapaull.com/work/youtube_playlist/version4/" target="_blank">actionext.com project</a>, I did 4 players for this client with 4 different skins and very similar code on all 4 of them.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=293&amp;Title=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API&amp;desc=I%20did%20some%20projects%20for%20some%20of%20my%20clients%20where%20I%20had%20to%20use%20the%20YouTube%20API%20to%20load%20videos%20in%20flash%20from%20the%20YouTube%20website.%20I%20remember%20I%20spent%20a%20lot%20of%20time%20trying%20to%20find%20a%20working%20example%20that%20I%20could%20use%20on%20my%20project.%20I%20first%20tried%20to%20work%20with%20the%20ActionScript%203%20chromeless%20YouTube%20API%20%28a%20fr" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=293&amp;submitHeadline=YouTube+Playlist+-+ActionScript+2+YouTube+API&amp;submitSummary=I%20did%20some%20projects%20for%20some%20of%20my%20clients%20where%20I%20had%20to%20use%20the%20YouTube%20API%20to%20load%20videos%20in%20flash%20from%20the%20YouTube%20website.%20I%20remember%20I%20spent%20a%20lot%20of%20time%20trying%20to%20find%20a%20working%20example%20that%20I%20could%20use%20on%20my%20project.%20I%20first%20tried%20to%20work%20with%20the%20ActionScript%203%20chromeless%20YouTube%20API%20%28a%20fr&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=293" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=293&amp;t=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=293&amp;t=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=YouTube+Playlist+-+ActionScript+2+YouTube+API+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=293&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API&amp;summary=I%20did%20some%20projects%20for%20some%20of%20my%20clients%20where%20I%20had%20to%20use%20the%20YouTube%20API%20to%20load%20videos%20in%20flash%20from%20the%20YouTube%20website.%20I%20remember%20I%20spent%20a%20lot%20of%20time%20trying%20to%20find%20a%20working%20example%20that%20I%20could%20use%20on%20my%20project.%20I%20first%20tried%20to%20work%20with%20the%20ActionScript%203%20chromeless%20YouTube%20API%20%28a%20fr&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=293&amp;h=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=I%20did%20some%20projects%20for%20some%20of%20my%20clients%20where%20I%20had%20to%20use%20the%20YouTube%20API%20to%20load%20videos%20in%20flash%20from%20the%20YouTube%20website.%20I%20remember%20I%20spent%20a%20lot%20of%20time%20trying%20to%20find%20a%20working%20example%20that%20I%20could%20use%20on%20my%20project.%20I%20first%20tried%20to%20work%20with%20the%20ActionScript%203%20chromeless%20YouTube%20API%20%28a%20fr&amp;posturl=http://blog.vamapaull.com/?p=293&amp;posttitle=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=293&amp;bm_description=YouTube+Playlist+-+ActionScript+2+YouTube+API&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=293" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=293" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=YouTube+Playlist+-+ActionScript+2+YouTube+API&amp;link=http://blog.vamapaull.com/?p=293" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=YouTube+Playlist+-+ActionScript+2+YouTube+API&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D293&amp;desc=I%20did%20some%20projects%20for%20some%20of%20my%20clients%20where%20I%20had%20to%20use%20the%20YouTube%20API%20to%20load%20videos%20in%20flash%20from%20the%20YouTube%20website.%20I%20remember%20I%20spent%20a%20lot%20of%20time%20trying%20to%20find%20a%20working%20example%20that%20I%20could%20use%20on%20my%20project.%20I%20first%20tried%20to%20work%20with%20the%20ActionScript%203%20chromeless%20YouTube%20API%20%28a%20fr&amp;pcat=Technology&amp;tags=flash, actionscript," rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=293" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API&amp;body=I%20did%20some%20projects%20for%20some%20of%20my%20clients%20where%20I%20had%20to%20use%20the%20YouTube%20API%20to%20load%20videos%20in%20flash%20from%20the%20YouTube%20website.%20I%20remember%20I%20spent%20a%20lot%20of%20time%20trying%20to%20find%20a%20working%20example%20that%20I%20could%20use%20on%20my%20project.%20I%20first%20tried%20to%20work%20with%20the%20ActionScript%203%20chromeless%20YouTube%20API%20%28a%20fr" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=293&amp;lname=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=293&amp;u_data[name]=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=293&amp;bmtitle=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=293&amp;title=YouTube+Playlist+-+ActionScript+2+YouTube+API" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=293</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Photos from Abobe Flex Camp Timisoara, Romania</title>
		<link>http://blog.vamapaull.com/?p=258</link>
		<comments>http://blog.vamapaull.com/?p=258#comments</comments>
		<pubDate>Sun, 15 Mar 2009 17:50:48 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[camp]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[foro]]></category>
		<category><![CDATA[fotografie]]></category>
		<category><![CDATA[photographs]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[poze]]></category>
		<category><![CDATA[romania]]></category>
		<category><![CDATA[timisoara]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=258</guid>
		<description><![CDATA[Yesterday I was in Timisoara attending to a conference hosted by Adobe Romania. I saw a lot of great things and some interesting projects done by romanian developers. Here I have uploaded some pictures from this event  
After this event we (Me, Costi, Biro and his girlfriend) got out for a walk in Timisoara so [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I was in Timisoara attending to a conference hosted by Adobe Romania. I saw a lot of great things and some interesting projects done by romanian developers. Here I have uploaded some pictures from this event <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0699.jpg' rel='shadowbox[post-258];player=img;' title='img_0699'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0699-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0699" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0706.jpg' rel='shadowbox[post-258];player=img;' title='img_0706'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0706-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0706" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0707.jpg' rel='shadowbox[post-258];player=img;' title='img_0707'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0707-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0707" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0709.jpg' rel='shadowbox[post-258];player=img;' title='img_0709'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0709-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0709" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0712.jpg' rel='shadowbox[post-258];player=img;' title='img_0712'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0712-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0712" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0713.jpg' rel='shadowbox[post-258];player=img;' title='img_0713'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0713-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0713" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0717.jpg' rel='shadowbox[post-258];player=img;' title='img_0717'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0717-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0717" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0720.jpg' rel='shadowbox[post-258];player=img;' title='img_0720'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0720-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0720" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0721.jpg' rel='shadowbox[post-258];player=img;' title='img_0721'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0721-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0721" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0722.jpg' rel='shadowbox[post-258];player=img;' title='img_0722'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0722-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0722" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0723.jpg' rel='shadowbox[post-258];player=img;' title='img_0723'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0723-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0723" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0725.jpg' rel='shadowbox[post-258];player=img;' title='img_0725'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0725-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0725" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0727.jpg' rel='shadowbox[post-258];player=img;' title='img_0727'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0727-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0727" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0728.jpg' rel='shadowbox[post-258];player=img;' title='img_0728'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0728-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0728" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0729.jpg' rel='shadowbox[post-258];player=img;' title='img_0729'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0729-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0729" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0730.jpg' rel='shadowbox[post-258];player=img;' title='img_0730'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0730-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0730" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0731.jpg' rel='shadowbox[post-258];player=img;' title='img_0731'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0731-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0731" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0732.jpg' rel='shadowbox[post-258];player=img;' title='img_0732'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0732-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0732" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0733.jpg' rel='shadowbox[post-258];player=img;' title='img_0733'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0733-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0733" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0734.jpg' rel='shadowbox[post-258];player=img;' title='img_0734'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0734-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0734" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0740.jpg' rel='shadowbox[post-258];player=img;' title='img_0740'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0740-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0740" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0743.jpg' rel='shadowbox[post-258];player=img;' title='img_0743'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0743-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0743" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0744.jpg' rel='shadowbox[post-258];player=img;' title='img_0744'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0744-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0744" /></a>
<a href='http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0747.jpg' rel='shadowbox[post-258];player=img;' title='img_0747'><img width="150" height="150" src="http://blog.vamapaull.com/wp-content/uploads/2009/03/img_0747-150x150.jpg" class="attachment-thumbnail" alt="" title="img_0747" /></a>

<p>After this event we (Me, Costi, Biro and his girlfriend) got out for a walk in Timisoara so we can make see the city and <a href="http://www.flickr.com/photos/vamapaull/sets/72157615251127211/" target="_blank">take some pictures.</a> Thank you <a href="http://blog.wisebisoft.com/" target="_blank">Biro</a> for being our guide! <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=258&amp;Title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania&amp;desc=Yesterday%20I%20was%20in%20Timisoara%20attending%20to%20a%20conference%C2%A0hosted%20by%20Adobe%20Romania.%20I%20saw%20a%20lot%20of%20great%20things%20and%20some%20interesting%20projects%20done%20by%20romanian%20developers.%20Here%20I%20have%20uploaded%20some%20pictures%20from%20this%20event%20%3B%29%0D%0A%0D%0A%0D%0A%0D%0AAfter%20this%20event%20we%20%28Me%2C%20Costi%2C%20Biro%20and%20his%20girlfriend%29%20got%20out%20for%20a%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=258&amp;submitHeadline=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania&amp;submitSummary=Yesterday%20I%20was%20in%20Timisoara%20attending%20to%20a%20conference%C2%A0hosted%20by%20Adobe%20Romania.%20I%20saw%20a%20lot%20of%20great%20things%20and%20some%20interesting%20projects%20done%20by%20romanian%20developers.%20Here%20I%20have%20uploaded%20some%20pictures%20from%20this%20event%20%3B%29%0D%0A%0D%0A%0D%0A%0D%0AAfter%20this%20event%20we%20%28Me%2C%20Costi%2C%20Biro%20and%20his%20girlfriend%29%20got%20out%20for%20a%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=258" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=258&amp;t=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=258&amp;t=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=258&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania&amp;summary=Yesterday%20I%20was%20in%20Timisoara%20attending%20to%20a%20conference%C2%A0hosted%20by%20Adobe%20Romania.%20I%20saw%20a%20lot%20of%20great%20things%20and%20some%20interesting%20projects%20done%20by%20romanian%20developers.%20Here%20I%20have%20uploaded%20some%20pictures%20from%20this%20event%20%3B%29%0D%0A%0D%0A%0D%0A%0D%0AAfter%20this%20event%20we%20%28Me%2C%20Costi%2C%20Biro%20and%20his%20girlfriend%29%20got%20out%20for%20a%20&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=258&amp;h=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Yesterday%20I%20was%20in%20Timisoara%20attending%20to%20a%20conference%C2%A0hosted%20by%20Adobe%20Romania.%20I%20saw%20a%20lot%20of%20great%20things%20and%20some%20interesting%20projects%20done%20by%20romanian%20developers.%20Here%20I%20have%20uploaded%20some%20pictures%20from%20this%20event%20%3B%29%0D%0A%0D%0A%0D%0A%0D%0AAfter%20this%20event%20we%20%28Me%2C%20Costi%2C%20Biro%20and%20his%20girlfriend%29%20got%20out%20for%20a%20&amp;posturl=http://blog.vamapaull.com/?p=258&amp;posttitle=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=258&amp;bm_description=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=258" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=258" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania&amp;link=http://blog.vamapaull.com/?p=258" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D258&amp;desc=Yesterday%20I%20was%20in%20Timisoara%20attending%20to%20a%20conference%C2%A0hosted%20by%20Adobe%20Romania.%20I%20saw%20a%20lot%20of%20great%20things%20and%20some%20interesting%20projects%20done%20by%20romanian%20developers.%20Here%20I%20have%20uploaded%20some%20pictures%20from%20this%20event%20%3B%29%0D%0A%0D%0A%0D%0A%0D%0AAfter%20this%20event%20we%20%28Me%2C%20Costi%2C%20Biro%20and%20his%20girlfriend%29%20got%20out%20for%20a%20&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=258" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania&amp;body=Yesterday%20I%20was%20in%20Timisoara%20attending%20to%20a%20conference%C2%A0hosted%20by%20Adobe%20Romania.%20I%20saw%20a%20lot%20of%20great%20things%20and%20some%20interesting%20projects%20done%20by%20romanian%20developers.%20Here%20I%20have%20uploaded%20some%20pictures%20from%20this%20event%20%3B%29%0D%0A%0D%0A%0D%0A%0D%0AAfter%20this%20event%20we%20%28Me%2C%20Costi%2C%20Biro%20and%20his%20girlfriend%29%20got%20out%20for%20a%20" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=258&amp;lname=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=258&amp;u_data[name]=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=258&amp;bmtitle=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=258&amp;title=Photos+from+Abobe+Flex+Camp+Timisoara%2C+Romania" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=258</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Odd or Even number in ActionScript</title>
		<link>http://blog.vamapaull.com/?p=241</link>
		<comments>http://blog.vamapaull.com/?p=241#comments</comments>
		<pubDate>Wed, 25 Feb 2009 23:07:20 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[General Flash stuff]]></category>
		<category><![CDATA[What I read]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[Even]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[In]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[Odd]]></category>
		<category><![CDATA[or]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=241</guid>
		<description><![CDATA[I was making a project for a client of mine where I had to make a list with two different colors for the items (like the iTunes list) so I started to think of a possible way to make this. It was clear enough I need to know the odd or the even number in [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-255 alignright" title="itunes-list3" src="http://blog.vamapaull.com/wp-content/uploads/2009/02/itunes-list3.jpg" alt="" width="150" height="150" />I was making a project for a client of mine where I had to make a list with two different colors for the items (like the iTunes list) so I started to think of a possible way to make this. It was clear enough I need to know the odd or the even number in order to do that. So I started to do some google search and I got over <a href="http://www.bit-101.com/blog/?p=729" target="_blank">this blogpost</a> by <a href="http://www.bit-101.com/blog/?page_id=2" target="_blank">Keith Peters</a>. I have to say, this is a very interesting way of thinking <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>&#8220;<em>iseven = ((num &amp; 1) == 0)</em></p>
<p><em>Makes sense when you look at binary numbers:</em></p>
<p><em>001 = 1<br />
010 = 2<br />
011 = 3<br />
100 = 4<br />
101 = 5</em></p>
<p><em>Each of the odd numbers has a 1 in the far right column. The even numbers have 0 there. Mask it with “&amp; 1″ and you can see which it is.</em>&#8221;</p>
<p>So I made a for loop and used this code. It works exactly how it was intended to work!!<br />
Thanks Keith Peters for your blogpost <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=241&amp;Title=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript&amp;desc=I%20was%20making%20a%20project%20for%20a%20client%20of%20mine%20where%20I%20had%20to%20make%20a%20list%20with%20two%20different%20colors%20for%20the%20items%20%28like%20the%20iTunes%20list%29%20so%20I%20started%20to%20think%20of%20a%20possible%20way%20to%20make%20this.%20It%20was%20clear%20enough%20I%20need%20to%20know%20the%20odd%20or%20the%20even%20number%20in%20order%20to%20do%20that.%20So%20I%20started%20to%20do%20some%20googl" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=241&amp;submitHeadline=Odd+or+Even+number+in+ActionScript&amp;submitSummary=I%20was%20making%20a%20project%20for%20a%20client%20of%20mine%20where%20I%20had%20to%20make%20a%20list%20with%20two%20different%20colors%20for%20the%20items%20%28like%20the%20iTunes%20list%29%20so%20I%20started%20to%20think%20of%20a%20possible%20way%20to%20make%20this.%20It%20was%20clear%20enough%20I%20need%20to%20know%20the%20odd%20or%20the%20even%20number%20in%20order%20to%20do%20that.%20So%20I%20started%20to%20do%20some%20googl&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=241" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=241&amp;t=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=241&amp;t=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Odd+or+Even+number+in+ActionScript+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=241&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript&amp;summary=I%20was%20making%20a%20project%20for%20a%20client%20of%20mine%20where%20I%20had%20to%20make%20a%20list%20with%20two%20different%20colors%20for%20the%20items%20%28like%20the%20iTunes%20list%29%20so%20I%20started%20to%20think%20of%20a%20possible%20way%20to%20make%20this.%20It%20was%20clear%20enough%20I%20need%20to%20know%20the%20odd%20or%20the%20even%20number%20in%20order%20to%20do%20that.%20So%20I%20started%20to%20do%20some%20googl&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=241&amp;h=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=I%20was%20making%20a%20project%20for%20a%20client%20of%20mine%20where%20I%20had%20to%20make%20a%20list%20with%20two%20different%20colors%20for%20the%20items%20%28like%20the%20iTunes%20list%29%20so%20I%20started%20to%20think%20of%20a%20possible%20way%20to%20make%20this.%20It%20was%20clear%20enough%20I%20need%20to%20know%20the%20odd%20or%20the%20even%20number%20in%20order%20to%20do%20that.%20So%20I%20started%20to%20do%20some%20googl&amp;posturl=http://blog.vamapaull.com/?p=241&amp;posttitle=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=241&amp;bm_description=Odd+or+Even+number+in+ActionScript&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=241" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=241" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Odd+or+Even+number+in+ActionScript&amp;link=http://blog.vamapaull.com/?p=241" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Odd+or+Even+number+in+ActionScript&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D241&amp;desc=I%20was%20making%20a%20project%20for%20a%20client%20of%20mine%20where%20I%20had%20to%20make%20a%20list%20with%20two%20different%20colors%20for%20the%20items%20%28like%20the%20iTunes%20list%29%20so%20I%20started%20to%20think%20of%20a%20possible%20way%20to%20make%20this.%20It%20was%20clear%20enough%20I%20need%20to%20know%20the%20odd%20or%20the%20even%20number%20in%20order%20to%20do%20that.%20So%20I%20started%20to%20do%20some%20googl&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=241" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript&amp;body=I%20was%20making%20a%20project%20for%20a%20client%20of%20mine%20where%20I%20had%20to%20make%20a%20list%20with%20two%20different%20colors%20for%20the%20items%20%28like%20the%20iTunes%20list%29%20so%20I%20started%20to%20think%20of%20a%20possible%20way%20to%20make%20this.%20It%20was%20clear%20enough%20I%20need%20to%20know%20the%20odd%20or%20the%20even%20number%20in%20order%20to%20do%20that.%20So%20I%20started%20to%20do%20some%20googl" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=241&amp;lname=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=241&amp;u_data[name]=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=241&amp;bmtitle=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=241&amp;title=Odd+or+Even+number+in+ActionScript" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=241</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Turntable</title>
		<link>http://blog.vamapaull.com/?p=237</link>
		<comments>http://blog.vamapaull.com/?p=237#comments</comments>
		<pubDate>Fri, 06 Feb 2009 19:41:52 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[canon]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[photo]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=237</guid>
		<description><![CDATA[Yesterday I took this shot and today it got accepted on iStock.
The image is done with my Canon 400D and my 50mm lens with Canon 430EX flash.






		
			Submit this to Script &#38; Style
		
		
			Share this on Blinklist
		
		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Reddit
		
		
			Buzz up!
		
		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this on [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I took this shot and today it got accepted on iStock.<br />
The image is done with my Canon 400D and my 50mm lens with Canon 430EX flash.</p>
<p><a href="http://www.istockphoto.com/file_closeup.php?id=8465035&#038;refnum=vamapaull" target="_blank"><img src="http://www1.istockphoto.com/file_thumbview_approve/8465035/2/istockphoto_8465035-turntable.jpg" alt="" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=237&amp;title=Turntable" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=237&amp;Title=Turntable" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=237&amp;title=Turntable" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=237&amp;title=Turntable" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=237&amp;title=Turntable&amp;desc=Yesterday%20I%20took%20this%20shot%20and%20today%20it%20got%20accepted%20on%20iStock.%0D%0AThe%20image%20is%20done%20with%20my%20Canon%20400D%20and%20my%2050mm%20lens%20with%20Canon%20430EX%20flash.%0D%0A%0D%0A%0D%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=237&amp;title=Turntable" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=237&amp;submitHeadline=Turntable&amp;submitSummary=Yesterday%20I%20took%20this%20shot%20and%20today%20it%20got%20accepted%20on%20iStock.%0D%0AThe%20image%20is%20done%20with%20my%20Canon%20400D%20and%20my%2050mm%20lens%20with%20Canon%20430EX%20flash.%0D%0A%0D%0A%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=237&amp;title=Turntable" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=237" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=237&amp;title=Turntable" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=237&amp;t=Turntable" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=237&amp;title=Turntable" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=237&amp;t=Turntable" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Turntable+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=237&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=237&amp;title=Turntable&amp;summary=Yesterday%20I%20took%20this%20shot%20and%20today%20it%20got%20accepted%20on%20iStock.%0D%0AThe%20image%20is%20done%20with%20my%20Canon%20400D%20and%20my%2050mm%20lens%20with%20Canon%20430EX%20flash.%0D%0A%0D%0A%0D%0A&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=237&amp;h=Turntable" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Yesterday%20I%20took%20this%20shot%20and%20today%20it%20got%20accepted%20on%20iStock.%0D%0AThe%20image%20is%20done%20with%20my%20Canon%20400D%20and%20my%2050mm%20lens%20with%20Canon%20430EX%20flash.%0D%0A%0D%0A%0D%0A&amp;posturl=http://blog.vamapaull.com/?p=237&amp;posttitle=Turntable" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=237&amp;title=Turntable" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=237&amp;bm_description=Turntable&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=237" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=237" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=237&amp;title=Turntable" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Turntable&amp;link=http://blog.vamapaull.com/?p=237" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=237&amp;title=Turntable" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Turntable&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D237&amp;desc=Yesterday%20I%20took%20this%20shot%20and%20today%20it%20got%20accepted%20on%20iStock.%0D%0AThe%20image%20is%20done%20with%20my%20Canon%20400D%20and%20my%2050mm%20lens%20with%20Canon%20430EX%20flash.%0D%0A%0D%0A%0D%0A&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=237" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=237&amp;title=Turntable&amp;body=Yesterday%20I%20took%20this%20shot%20and%20today%20it%20got%20accepted%20on%20iStock.%0D%0AThe%20image%20is%20done%20with%20my%20Canon%20400D%20and%20my%2050mm%20lens%20with%20Canon%20430EX%20flash.%0D%0A%0D%0A%0D%0A" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=237&amp;title=Turntable" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=237&amp;lname=Turntable" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=237&amp;u_data[name]=Turntable" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=237&amp;bmtitle=Turntable" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=237&amp;title=Turntable" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=237</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drawing app</title>
		<link>http://blog.vamapaull.com/?p=226</link>
		<comments>http://blog.vamapaull.com/?p=226#comments</comments>
		<pubDate>Wed, 04 Feb 2009 11:43:18 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[actionscript3]]></category>
		<category><![CDATA[aplication]]></category>
		<category><![CDATA[drawing]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=226</guid>
		<description><![CDATA[Right now I&#8217;m still reading &#8220;Learning ActionScript 3.0&#8221; book so I can improve my AS 3 skills. In the &#8220;Draving with pixels&#8221; chapter there is a great example of a little drawing application that I like. Here you can see the code for that little application:

var mouseIsDown:Boolean;
var erasing:Boolean;
&#160;
var canvas:Sprite = new Sprite&#40;&#41;;
addChild&#40;canvas&#41;;
&#160;
var w:Number = stage.stageWidth;
var [...]]]></description>
			<content:encoded><![CDATA[<p>Right now I&#8217;m still reading &#8220;<a href="http://blog.vamapaull.com/?p=68">Learning ActionScript 3.0</a>&#8221; book so I can improve my AS 3 skills. In the &#8220;Draving with pixels&#8221; chapter there is a great example of a little drawing application that I like. Here you can see the code for that little application:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #6699cc; font-weight: bold;">var</span> mouseIsDown<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Boolean</span>;
<span style="color: #6699cc; font-weight: bold;">var</span> erasing<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Boolean</span>;
&nbsp;
<span style="color: #6699cc; font-weight: bold;">var</span> canvas<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Sprite</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Sprite</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span>canvas<span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #6699cc; font-weight: bold;">var</span> w<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Number</span> = <span style="color: #004993;">stage</span>.<span style="color: #004993;">stageWidth</span>;
<span style="color: #6699cc; font-weight: bold;">var</span> h<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Number</span> = <span style="color: #004993;">stage</span>.<span style="color: #004993;">stageHeight</span>;
<span style="color: #6699cc; font-weight: bold;">var</span> bmd<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">BitmapData</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">BitmapData</span><span style="color: #000000;">&#40;</span>w, h, <span style="color: #0033ff; font-weight: bold;">false</span>, 0xffffffff<span style="color: #000000;">&#41;</span>;
<span style="color: #6699cc; font-weight: bold;">var</span> bm<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Bitmap</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Bitmap</span><span style="color: #000000;">&#40;</span>bmd<span style="color: #000000;">&#41;</span>;
canvas.<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span>bm<span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #6699cc; font-weight: bold;">var</span> brush<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Sprite</span> = createBrush<span style="color: #000000;">&#40;</span>0x66cc00<span style="color: #000000;">&#41;</span>;
<span style="color: #6699cc; font-weight: bold;">var</span> eraser<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Sprite</span> = createBrush<span style="color: #000000;">&#40;</span>0xffffff<span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> createBrush<span style="color: #000000;">&#40;</span>col<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">uint</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Sprite</span><span style="color: #000000;">&#123;</span>
	<span style="color: #6699cc; font-weight: bold;">var</span> sp<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Sprite</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Sprite</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
	sp.<span style="color: #004993;">graphics</span>.<span style="color: #004993;">beginFill</span><span style="color: #000000;">&#40;</span>col, <span style="color: #000000; font-weight:bold;">1</span><span style="color: #000000;">&#41;</span>;
	sp.<span style="color: #004993;">graphics</span>.<span style="color: #004993;">drawCircle</span><span style="color: #000000;">&#40;</span><span style="color: #000000; font-weight:bold;">0</span>, <span style="color: #000000; font-weight:bold;">0</span>, <span style="color: #000000; font-weight:bold;">30</span><span style="color: #000000;">&#41;</span>;
	sp.<span style="color: #004993;">graphics</span>.<span style="color: #004993;">endFill</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #0033ff; font-weight: bold;">return</span> sp;
<span style="color: #000000;">&#125;</span>
&nbsp;
canvas.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">MouseEvent</span>.<span style="color: #004993;">MOUSE_DOWN</span>, onDown<span style="color: #000000;">&#41;</span>;
canvas.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">MouseEvent</span>.<span style="color: #004993;">MOUSE_UP</span>, onUp<span style="color: #000000;">&#41;</span>;
<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">ENTER_FRAME</span>, onLoop<span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> onDown<span style="color: #000000;">&#40;</span>e<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">MouseEvent</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><span style="color: #000000;">&#123;</span>
	mouseIsDown = <span style="color: #0033ff; font-weight: bold;">true</span>;
	<span style="color: #0033ff; font-weight: bold;">if</span><span style="color: #000000;">&#40;</span>e.<span style="color: #004993;">shiftKey</span><span style="color: #000000;">&#41;</span>
		erasing = <span style="color: #0033ff; font-weight: bold;">true</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> onUp<span style="color: #000000;">&#40;</span>e<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">MouseEvent</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><span style="color: #000000;">&#123;</span>
	mouseIsDown = <span style="color: #0033ff; font-weight: bold;">false</span>;
	erasing = <span style="color: #0033ff; font-weight: bold;">false</span>;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #339966; font-weight: bold;">function</span> onLoop<span style="color: #000000;">&#40;</span>e<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><span style="color: #000000;">&#123;</span>
	<span style="color: #0033ff; font-weight: bold;">if</span><span style="color: #000000;">&#40;</span>mouseIsDown <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> erasing<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#123;</span>
		eraser.<span style="color: #004993;">x</span> = <span style="color: #004993;">mouseX</span>;
		eraser.<span style="color: #004993;">y</span> = <span style="color: #004993;">mouseY</span>;
		bmd.<span style="color: #004993;">draw</span><span style="color: #000000;">&#40;</span>eraser, eraser.<span style="color: #004993;">transform</span>.<span style="color: #004993;">matrix</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #000000;">&#125;</span><span style="color: #0033ff; font-weight: bold;">else</span> <span style="color: #0033ff; font-weight: bold;">if</span><span style="color: #000000;">&#40;</span>mouseIsDown<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#123;</span>
		brush.<span style="color: #004993;">x</span> = <span style="color: #004993;">mouseX</span>;
		brush.<span style="color: #004993;">y</span> = <span style="color: #004993;">mouseY</span>;
		bmd.<span style="color: #004993;">draw</span><span style="color: #000000;">&#40;</span>brush, brush.<span style="color: #004993;">transform</span>.<span style="color: #004993;">matrix</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

<p>And if you <a href="http://blog.vamapaull.com/wp-content/uploads/2009/02/draw-app.swf" rel="shadowbox;width=550;height=400">click here</a> you can see the result (click to draw and hold the shift key + click to erase)<br />
<a href="http://blog.vamapaull.com/?p=68">This book</a> has a lot of good examples and it&#8217;s very easy to understand. I recommend it to anyone how wants to start with ActionScript 3.0 <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=226&amp;Title=Drawing+app" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app&amp;desc=Right%20now%20I%27m%20still%20reading%20%22Learning%20ActionScript%203.0%22%20book%20so%20I%20can%20improve%20my%20AS%203%20skills.%20In%20the%20%22Draving%20with%20pixels%22%20chapter%20there%20is%20a%20great%20example%20of%20a%20little%20drawing%20application%20that%20I%20like.%20Here%20you%20can%20see%20the%20code%20for%20that%20little%20application%3A%0D%0A%0D%0A%0D%0Avar%20mouseIsDown%3ABoolean%3B%0D%0Avar%20erasing%3AB" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=226&amp;submitHeadline=Drawing+app&amp;submitSummary=Right%20now%20I%27m%20still%20reading%20%22Learning%20ActionScript%203.0%22%20book%20so%20I%20can%20improve%20my%20AS%203%20skills.%20In%20the%20%22Draving%20with%20pixels%22%20chapter%20there%20is%20a%20great%20example%20of%20a%20little%20drawing%20application%20that%20I%20like.%20Here%20you%20can%20see%20the%20code%20for%20that%20little%20application%3A%0D%0A%0D%0A%0D%0Avar%20mouseIsDown%3ABoolean%3B%0D%0Avar%20erasing%3AB&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=226" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=226&amp;t=Drawing+app" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=226&amp;t=Drawing+app" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Drawing+app+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=226&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app&amp;summary=Right%20now%20I%27m%20still%20reading%20%22Learning%20ActionScript%203.0%22%20book%20so%20I%20can%20improve%20my%20AS%203%20skills.%20In%20the%20%22Draving%20with%20pixels%22%20chapter%20there%20is%20a%20great%20example%20of%20a%20little%20drawing%20application%20that%20I%20like.%20Here%20you%20can%20see%20the%20code%20for%20that%20little%20application%3A%0D%0A%0D%0A%0D%0Avar%20mouseIsDown%3ABoolean%3B%0D%0Avar%20erasing%3AB&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=226&amp;h=Drawing+app" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Right%20now%20I%27m%20still%20reading%20%22Learning%20ActionScript%203.0%22%20book%20so%20I%20can%20improve%20my%20AS%203%20skills.%20In%20the%20%22Draving%20with%20pixels%22%20chapter%20there%20is%20a%20great%20example%20of%20a%20little%20drawing%20application%20that%20I%20like.%20Here%20you%20can%20see%20the%20code%20for%20that%20little%20application%3A%0D%0A%0D%0A%0D%0Avar%20mouseIsDown%3ABoolean%3B%0D%0Avar%20erasing%3AB&amp;posturl=http://blog.vamapaull.com/?p=226&amp;posttitle=Drawing+app" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=226&amp;bm_description=Drawing+app&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=226" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=226" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Drawing+app&amp;link=http://blog.vamapaull.com/?p=226" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Drawing+app&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D226&amp;desc=Right%20now%20I%27m%20still%20reading%20%22Learning%20ActionScript%203.0%22%20book%20so%20I%20can%20improve%20my%20AS%203%20skills.%20In%20the%20%22Draving%20with%20pixels%22%20chapter%20there%20is%20a%20great%20example%20of%20a%20little%20drawing%20application%20that%20I%20like.%20Here%20you%20can%20see%20the%20code%20for%20that%20little%20application%3A%0D%0A%0D%0A%0D%0Avar%20mouseIsDown%3ABoolean%3B%0D%0Avar%20erasing%3AB&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=226" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app&amp;body=Right%20now%20I%27m%20still%20reading%20%22Learning%20ActionScript%203.0%22%20book%20so%20I%20can%20improve%20my%20AS%203%20skills.%20In%20the%20%22Draving%20with%20pixels%22%20chapter%20there%20is%20a%20great%20example%20of%20a%20little%20drawing%20application%20that%20I%20like.%20Here%20you%20can%20see%20the%20code%20for%20that%20little%20application%3A%0D%0A%0D%0A%0D%0Avar%20mouseIsDown%3ABoolean%3B%0D%0Avar%20erasing%3AB" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=226&amp;lname=Drawing+app" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=226&amp;u_data[name]=Drawing+app" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=226&amp;bmtitle=Drawing+app" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=226&amp;title=Drawing+app" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=226</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The best TED ever &#8211; Lennart Green: Close-up card magic</title>
		<link>http://blog.vamapaull.com/?p=199</link>
		<comments>http://blog.vamapaull.com/?p=199#comments</comments>
		<pubDate>Wed, 10 Dec 2008 20:37:35 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[best]]></category>
		<category><![CDATA[card]]></category>
		<category><![CDATA[Close-up]]></category>
		<category><![CDATA[ever]]></category>
		<category><![CDATA[Green]]></category>
		<category><![CDATA[Lennart]]></category>
		<category><![CDATA[magic]]></category>
		<category><![CDATA[ted]]></category>
		<category><![CDATA[The]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=199</guid>
		<description><![CDATA[This is a very funny episode and one of the best TED episodes I&#8217;ve seen  






		
			Submit this to Script &#38; Style
		
		
			Share this on Blinklist
		
		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Reddit
		
		
			Buzz up!
		
		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this on Technorati
		
		
			Share this on Mixx
		
		
			Post this to MySpace
		
		
			Submit this to DesignFloat
		
		
			Share [...]]]></description>
			<content:encoded><![CDATA[<p>This is a very funny episode and one of the best TED episodes I&#8217;ve seen <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><a title="The best TED ever - Lennart Green: Close-up card magic" rel="shadowbox;width=640;height=480" href="http://video.ted.com/talks/embed/LennartGreen_2005-embed_high.flv"><img class="alignnone size-full wp-image-203" title="lennart-green" src="http://blog.vamapaull.com/wp-content/uploads/2008/12/lennart-green.jpg" alt="" width="460" height="350" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=199&amp;Title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic&amp;desc=This%20is%20a%20very%20funny%20episode%20and%20one%20of%20the%20best%20TED%20episodes%20I%27ve%20seen%20%3AD%0D%0A%0D%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=199&amp;submitHeadline=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic&amp;submitSummary=This%20is%20a%20very%20funny%20episode%20and%20one%20of%20the%20best%20TED%20episodes%20I%27ve%20seen%20%3AD%0D%0A%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=199" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=199&amp;t=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=199&amp;t=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=199&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic&amp;summary=This%20is%20a%20very%20funny%20episode%20and%20one%20of%20the%20best%20TED%20episodes%20I%27ve%20seen%20%3AD%0D%0A%0D%0A&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=199&amp;h=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=This%20is%20a%20very%20funny%20episode%20and%20one%20of%20the%20best%20TED%20episodes%20I%27ve%20seen%20%3AD%0D%0A%0D%0A&amp;posturl=http://blog.vamapaull.com/?p=199&amp;posttitle=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=199&amp;bm_description=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=199" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=199" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic&amp;link=http://blog.vamapaull.com/?p=199" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D199&amp;desc=This%20is%20a%20very%20funny%20episode%20and%20one%20of%20the%20best%20TED%20episodes%20I%27ve%20seen%20%3AD%0D%0A%0D%0A&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=199" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic&amp;body=This%20is%20a%20very%20funny%20episode%20and%20one%20of%20the%20best%20TED%20episodes%20I%27ve%20seen%20%3AD%0D%0A%0D%0A" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=199&amp;lname=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=199&amp;u_data[name]=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=199&amp;bmtitle=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=199&amp;title=The+best+TED+ever+-+Lennart+Green%3A+Close-up+card+magic" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=199</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://video.ted.com/talks/embed/LennartGreen_2005-embed_high.flv" length="97546271" type="video/x-flv" />
		</item>
		<item>
		<title>Canon EF-S 17-55 f/2.8</title>
		<link>http://blog.vamapaull.com/?p=192</link>
		<comments>http://blog.vamapaull.com/?p=192#comments</comments>
		<pubDate>Tue, 11 Nov 2008 12:50:53 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[Every day life]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[17-55]]></category>
		<category><![CDATA[canon]]></category>
		<category><![CDATA[ef-s]]></category>
		<category><![CDATA[f/2.8]]></category>
		<category><![CDATA[lens]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=192</guid>
		<description><![CDATA[At work playing with Canon EF-S 17-55 f/2.8 lens 






		
			Submit this to Script &#38; Style
		
		
			Share this on Blinklist
		
		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Reddit
		
		
			Buzz up!
		
		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this on Technorati
		
		
			Share this on Mixx
		
		
			Post this to MySpace
		
		
			Submit this to DesignFloat
		
		
			Share this on Facebook
		
		
			Tweet This!
		
		
			Subscribe to the comments [...]]]></description>
			<content:encoded><![CDATA[<p>At work playing with Canon EF-S 17-55 f/2.8 lens <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
<a href="http://blog.vamapaull.com/wp-content/uploads/2008/11/img_7753.jpg" rel="shadowbox[post-192];player=img;"><img src="http://blog.vamapaull.com/wp-content/uploads/2008/11/img_7753.jpg" alt="" title="img_7753" width="500" height="333" class="alignnone size-full wp-image-191" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=192&amp;Title=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8&amp;desc=At%20work%20playing%20with%20Canon%20EF-S%2017-55%20f%2F2.8%20lens%20%3AD%0D%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=192&amp;submitHeadline=Canon+EF-S+17-55+f%2F2.8&amp;submitSummary=At%20work%20playing%20with%20Canon%20EF-S%2017-55%20f%2F2.8%20lens%20%3AD%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=192" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=192&amp;t=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=192&amp;t=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Canon+EF-S+17-55+f%2F2.8+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=192&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8&amp;summary=At%20work%20playing%20with%20Canon%20EF-S%2017-55%20f%2F2.8%20lens%20%3AD%0D%0A&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=192&amp;h=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=At%20work%20playing%20with%20Canon%20EF-S%2017-55%20f%2F2.8%20lens%20%3AD%0D%0A&amp;posturl=http://blog.vamapaull.com/?p=192&amp;posttitle=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=192&amp;bm_description=Canon+EF-S+17-55+f%2F2.8&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=192" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=192" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Canon+EF-S+17-55+f%2F2.8&amp;link=http://blog.vamapaull.com/?p=192" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Canon+EF-S+17-55+f%2F2.8&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D192&amp;desc=At%20work%20playing%20with%20Canon%20EF-S%2017-55%20f%2F2.8%20lens%20%3AD%0D%0A&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=192" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8&amp;body=At%20work%20playing%20with%20Canon%20EF-S%2017-55%20f%2F2.8%20lens%20%3AD%0D%0A" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=192&amp;lname=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=192&amp;u_data[name]=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=192&amp;bmtitle=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=192&amp;title=Canon+EF-S+17-55+f%2F2.8" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=192</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The bags</title>
		<link>http://blog.vamapaull.com/?p=181</link>
		<comments>http://blog.vamapaull.com/?p=181#comments</comments>
		<pubDate>Mon, 10 Nov 2008 15:56:32 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[bags]]></category>
		<category><![CDATA[The]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=181</guid>
		<description><![CDATA[I found this somewhere on tumblr, it was a gif animation. This is a very interesting idea. I really love it. But it seems to work better with this mouse over effect  
[kml_flashembed movie="http://blog.vamapaull.com/wp-content/uploads/2008/11/bags.swf" height="480" width="439" /]





		
			Submit this to Script &#38; Style
		
		
			Share this on Blinklist
		
		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on [...]]]></description>
			<content:encoded><![CDATA[<p>I found this somewhere on <a href="http://yimmyayo.tumblr.com/post/58863535">tumblr</a>, it was a gif animation. This is a very interesting idea. I really love it. But it seems to work better with this mouse over effect <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>[kml_flashembed movie="http://blog.vamapaull.com/wp-content/uploads/2008/11/bags.swf" height="480" width="439" /]</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=181&amp;title=The+bags" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=181&amp;Title=The+bags" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=181&amp;title=The+bags" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=181&amp;title=The+bags" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=181&amp;title=The+bags&amp;desc=I%20found%20this%20somewhere%20on%20tumblr%2C%20it%20was%20a%20gif%20animation.%20This%20is%20a%20very%20interesting%20idea.%20I%20really%20love%20it.%20But%20it%20seems%20to%20work%20better%20with%20this%20mouse%20over%20effect%20%3AD%0D%0A%0D%0A%5Bkml_flashembed%20movie%3D%22http%3A%2F%2Fblog.vamapaull.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fbags.swf%22%20height%3D%22480%22%20width%3D%22439%22%20%2F%5D" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=181&amp;title=The+bags" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=181&amp;submitHeadline=The+bags&amp;submitSummary=I%20found%20this%20somewhere%20on%20tumblr%2C%20it%20was%20a%20gif%20animation.%20This%20is%20a%20very%20interesting%20idea.%20I%20really%20love%20it.%20But%20it%20seems%20to%20work%20better%20with%20this%20mouse%20over%20effect%20%3AD%0D%0A%0D%0A%5Bkml_flashembed%20movie%3D%22http%3A%2F%2Fblog.vamapaull.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fbags.swf%22%20height%3D%22480%22%20width%3D%22439%22%20%2F%5D&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=181&amp;title=The+bags" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=181" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=181&amp;title=The+bags" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=181&amp;t=The+bags" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=181&amp;title=The+bags" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=181&amp;t=The+bags" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=The+bags+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=181&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=181&amp;title=The+bags&amp;summary=I%20found%20this%20somewhere%20on%20tumblr%2C%20it%20was%20a%20gif%20animation.%20This%20is%20a%20very%20interesting%20idea.%20I%20really%20love%20it.%20But%20it%20seems%20to%20work%20better%20with%20this%20mouse%20over%20effect%20%3AD%0D%0A%0D%0A%5Bkml_flashembed%20movie%3D%22http%3A%2F%2Fblog.vamapaull.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fbags.swf%22%20height%3D%22480%22%20width%3D%22439%22%20%2F%5D&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=181&amp;h=The+bags" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=I%20found%20this%20somewhere%20on%20tumblr%2C%20it%20was%20a%20gif%20animation.%20This%20is%20a%20very%20interesting%20idea.%20I%20really%20love%20it.%20But%20it%20seems%20to%20work%20better%20with%20this%20mouse%20over%20effect%20%3AD%0D%0A%0D%0A%5Bkml_flashembed%20movie%3D%22http%3A%2F%2Fblog.vamapaull.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fbags.swf%22%20height%3D%22480%22%20width%3D%22439%22%20%2F%5D&amp;posturl=http://blog.vamapaull.com/?p=181&amp;posttitle=The+bags" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=181&amp;title=The+bags" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=181&amp;bm_description=The+bags&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=181" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=181" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=181&amp;title=The+bags" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=The+bags&amp;link=http://blog.vamapaull.com/?p=181" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=181&amp;title=The+bags" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=The+bags&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D181&amp;desc=I%20found%20this%20somewhere%20on%20tumblr%2C%20it%20was%20a%20gif%20animation.%20This%20is%20a%20very%20interesting%20idea.%20I%20really%20love%20it.%20But%20it%20seems%20to%20work%20better%20with%20this%20mouse%20over%20effect%20%3AD%0D%0A%0D%0A%5Bkml_flashembed%20movie%3D%22http%3A%2F%2Fblog.vamapaull.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fbags.swf%22%20height%3D%22480%22%20width%3D%22439%22%20%2F%5D&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=181" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=181&amp;title=The+bags&amp;body=I%20found%20this%20somewhere%20on%20tumblr%2C%20it%20was%20a%20gif%20animation.%20This%20is%20a%20very%20interesting%20idea.%20I%20really%20love%20it.%20But%20it%20seems%20to%20work%20better%20with%20this%20mouse%20over%20effect%20%3AD%0D%0A%0D%0A%5Bkml_flashembed%20movie%3D%22http%3A%2F%2Fblog.vamapaull.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fbags.swf%22%20height%3D%22480%22%20width%3D%22439%22%20%2F%5D" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=181&amp;title=The+bags" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=181&amp;lname=The+bags" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=181&amp;u_data[name]=The+bags" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=181&amp;bmtitle=The+bags" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=181&amp;title=The+bags" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=181</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Caught In The Act</title>
		<link>http://blog.vamapaull.com/?p=168</link>
		<comments>http://blog.vamapaull.com/?p=168#comments</comments>
		<pubDate>Fri, 07 Nov 2008 15:59:46 +0000</pubDate>
		<dc:creator>vamapaull</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Act]]></category>
		<category><![CDATA[Caught]]></category>
		<category><![CDATA[In]]></category>
		<category><![CDATA[The]]></category>

		<guid isPermaLink="false">http://blog.vamapaull.com/?p=168</guid>
		<description><![CDATA[This video made me lough so hard!!  






		
			Submit this to Script &#38; Style
		
		
			Share this on Blinklist
		
		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Reddit
		
		
			Buzz up!
		
		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this on Technorati
		
		
			Share this on Mixx
		
		
			Post this to MySpace
		
		
			Submit this to DesignFloat
		
		
			Share this on Facebook
		
		
			Tweet This!
		
		
			Subscribe to the comments for [...]]]></description>
			<content:encoded><![CDATA[<p>This video made me lough so hard!! <img src='http://blog.vamapaull.com/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' /> </p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/rwgvfp3jlvc&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/rwgvfp3jlvc&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://blog.vamapaull.com/?p=168&amp;Title=Caught+In+The+Act" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act&amp;desc=This%20video%20made%20me%20lough%20so%20hard%21%21%20%3Alol%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.vamapaull.com/?p=168&amp;submitHeadline=Caught+In+The+Act&amp;submitSummary=This%20video%20made%20me%20lough%20so%20hard%21%21%20%3Alol%3A%0D%0A%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.vamapaull.com/?p=168" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://blog.vamapaull.com/?p=168&amp;t=Caught+In+The+Act" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.vamapaull.com/?p=168&amp;t=Caught+In+The+Act" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Caught+In+The+Act+-+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /create.php was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>+(via+@vamapaull)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://blog.vamapaull.com/?p=168&feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act&amp;summary=This%20video%20made%20me%20lough%20so%20hard%21%21%20%3Alol%3A%0D%0A%0D%0A&amp;source=blog.vamapaull.com" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://blog.vamapaull.com/?p=168&amp;h=Caught+In+The+Act" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=This%20video%20made%20me%20lough%20so%20hard%21%21%20%3Alol%3A%0D%0A%0D%0A&amp;posturl=http://blog.vamapaull.com/?p=168&amp;posttitle=Caught+In+The+Act" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.vamapaull.com/?p=168&amp;bm_description=Caught+In+The+Act&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://blog.vamapaull.com/?p=168" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://blog.vamapaull.com/?p=168" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Caught+In+The+Act&amp;link=http://blog.vamapaull.com/?p=168" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Caught+In+The+Act&amp;url=http%3A%2F%2Fblog.vamapaull.com%2F%3Fp%3D168&amp;desc=This%20video%20made%20me%20lough%20so%20hard%21%21%20%3Alol%3A%0D%0A%0D%0A&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://blog.vamapaull.com/?p=168" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act&amp;body=This%20video%20made%20me%20lough%20so%20hard%21%21%20%3Alol%3A%0D%0A%0D%0A" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://blog.vamapaull.com/?p=168&amp;lname=Caught+In+The+Act" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://blog.vamapaull.com/?p=168&amp;u_data[name]=Caught+In+The+Act" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://blog.vamapaull.com/?p=168&amp;bmtitle=Caught+In+The+Act" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://blog.vamapaull.com/?p=168&amp;title=Caught+In+The+Act" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.vamapaull.com/?feed=rss2&amp;p=168</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
