<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Matteo Bicocchi&#039;s Blog &#187; tutorial</title>
	<atom:link href="http://pupunzi.open-lab.com/category/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://pupunzi.open-lab.com</link>
	<description>mb.ideas.repository</description>
	<lastBuildDate>Sun, 12 Feb 2012 12:39:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pupunzi.open-lab.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/f84717aa2c4a99c6f997904a49e41a68?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Matteo Bicocchi&#039;s Blog &#187; tutorial</title>
		<link>http://pupunzi.open-lab.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pupunzi.open-lab.com/osd.xml" title="Matteo Bicocchi&#039;s Blog" />
	<atom:link rel='hub' href='http://pupunzi.open-lab.com/?pushpress=hub'/>
		<item>
		<title>How to add a functional dock to jquery.mb.containerPlus</title>
		<link>http://pupunzi.open-lab.com/2010/06/19/how-to-add-a-functional-dock-to-jquery-mb-containerplus/</link>
		<comments>http://pupunzi.open-lab.com/2010/06/19/how-to-add-a-functional-dock-to-jquery-mb-containerplus/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 17:05:57 +0000</pubDate>
		<dc:creator>Matteo Bicocchi</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mb.ideas.components]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[docked icon]]></category>
		<category><![CDATA[mb.containerPlus]]></category>

		<guid isPermaLink="false">http://pupunzi.open-lab.com/?p=1618</guid>
		<description><![CDATA[Many times people are asking me to implement features to my jquery components but most of the times those features are easily implementable by adding custom behavior to the callbacks functions yet available. In ths post we&#8217;ll see how to realize a functional dock element for the mb.containerPlus. For this tutorial I&#8217;m using the latest&#160;&#8230; <a href="http://pupunzi.open-lab.com/2010/06/19/how-to-add-a-functional-dock-to-jquery-mb-containerplus/">Read&#160;more</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pupunzi.open-lab.com&amp;blog=6146833&amp;post=1618&amp;subd=pupunzi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1619" style="border:0 none;" title="containe_dock" src="http://pupunzi.files.wordpress.com/2010/06/containe_dock.jpg?w=640" border="0" alt=""   /></p>
<h5><span style="color:#808080;">Many times people are asking me to implement features to my jquery components but most of the times those features are easily implementable by adding custom behavior to the callbacks functions yet available.</span></h5>
<h6><span style="color:#000000;">In ths post we&#8217;ll see how to realize a <strong>functional</strong> <em><strong>dock</strong> </em>element for the mb.containerPlus.</span></h6>
<p><span style="color:#808080;">For this tutorial <strong> I&#8217;m using the latest  <a href="http://pupunzi.open-lab.com/mb-jquery-components/mb-containerplus/">2.5.0 release</a></strong> of this component that has implemented a new <em>onCreate</em> event callback and many other useful features (take a look at the component page).</span></p>
<hr />
<h1>1. How should it works?</h1>
<p>In my project I need that for each container in the page there should be a small icon rapresenting it in a specific place called &#8220;Dock&#8221;. The &#8220;Dock&#8221; element is the place where all the containers are collected once minimized. This behavior is already implemented in the component but as default the iconized container icon is placed as last of the dock area and it&#8217;s not shown once the container is open.</p>
<p>So, in my case I want the icons to be alwais visible except when the container is closed and shoud mantain ther position in the dock area. Those icons should also have some actions for restoring/iconizig the corresponding container.</p>
<hr />
<h1>2. How to obtain this behavior?</h1>
<p>mb.containerPlus has callbacks events that let you implement additional functionalities for their behavior.</p>
<p>The standard initialization of a containerPlus does not introduce callbacks.</p>
<p><strong>this is the simple code:</strong></p>
<p><pre class="brush: jscript;">
$(&quot;.containerPlus&quot;).buildContainers({
      containment:&quot;document&quot;,
      elementsPath:&quot;../elements/&quot;
});
</pre></p>
<p>For this tutorial we have to create some extra methods to be invoked once the container is initialized, once it&#8217;s iconized and once it&#8217;s restored.</p>
<p><strong>the final initialization code will be:</strong></p>
<p><pre class="brush: jscript;">
$(&quot;.containerPlus&quot;).buildContainers({
    containment:&quot;document&quot;,
    elementsPath:&quot;../elements/&quot;,
    dockedIconDim:45,
    &lt;strong&gt;onCreate&lt;/strong&gt;:function(o){&lt;strong&gt;initDock(o,&quot;dock&quot;)&lt;/strong&gt;},
    &lt;strong&gt;onClose&lt;/strong&gt;:function(o){&lt;strong&gt;close(o)&lt;/strong&gt;},
    &lt;strong&gt;onRestore&lt;/strong&gt;:function(o){&lt;strong&gt;restore(o)&lt;/strong&gt;},
    &lt;strong&gt;onIconize&lt;/strong&gt;:function(o){&lt;strong&gt;iconize(o)&lt;/strong&gt;},
    effectDuration:300
})
</pre></p>
<p>As you can see <strong>some extra methods has been added</strong> as callbak to the init function.</p>
<h3 style="padding-top:10px;">onCreate callback:</h3>
<p>On the <strong>onCreate</strong> event I added the <strong>initDock(o,dockID)</strong> function that build the placeholder for the initialized container icon on the &#8220;Dock&#8221;; the function is:</p>
<p><pre class="brush: jscript;">
function &lt;strong&gt;initDock(o,docID)&lt;/strong&gt;{
   var opt= o.get(0).options;
   var docEl=$(&quot;&lt;span&gt;&quot;).attr(&quot;id&quot;,o.attr(&quot;id&quot;)+&quot;_dock&quot;).css({width:opt.dockedIconDim+5,display:&quot;inline-block&quot;});
   var icon= $(&quot;&lt;img&gt;&quot;).attr(&quot;src&quot;,opt.elementsPath+&quot;icons/&quot;+(o.attr(&quot;icon&quot;)?o.attr(&quot;icon&quot;):&quot;restore.png&quot;)).css({opacity:.4,width:opt.dockedIconDim, cursor:&quot;pointer&quot;});
   icon.click(function(){o.mb_iconize()});
   docEl.append(icon);
   $(&quot;#&quot;+docID).append(docEl);
   o.attr(&quot;dock&quot;,o.attr(&quot;id&quot;)+&quot;_dock&quot;);
}
</pre></p>
<p>The two parameters I&#8217;m passing to the function are the container element <em>(o) </em>provided by the mb.containerPlus callback method and the &#8220;Dock&#8221; element ID<em> (docID).</em></p>
<p><strong>Here is what this function does:</strong></p>
<p><pre class="brush: jscript;">
 var &lt;strong&gt;opt&lt;/strong&gt;= o.get(0).options;
</pre></p>
<p>it fills the <em>opt</em> variable with the <strong>container options</strong> to get easily some usefull properties for its manipulation.</p>
<p><pre class="brush: jscript;">
var docEl=$(&quot;&lt;span&gt;&quot;).attr(&quot;id&quot;,o.attr(&quot;id&quot;)+&quot;_dock&quot;).css({width:opt.dockedIconDim+5,display:&quot;inline-block&quot;});
</pre></p>
<p>it defines the <strong>placeholder</strong> for the container icon on the dock as <em>docEl</em>, setting an ID <em>(composed by the container ID and a &#8220;_dock&#8221; postfix ) </em>and some CSS properties: the <em>width</em> retrived from the dockedIconDim option setted as option of the init function.</p>
<p><pre class="brush: jscript;">
   var icon= $(&quot;&lt;img&gt;&quot;).attr(&quot;src&quot;,opt.elementsPath+&quot;icons/&quot;+(o.attr(&quot;icon&quot;)?o.attr(&quot;icon&quot;):&quot;restore.png&quot;)).css({opacity:.4,width:opt.dockedIconDim, cursor:&quot;pointer&quot;});
</pre></p>
<p>it defines the <strong>icon</strong> element to be placed inside the placeholder retriving it from the container attribute &#8220;icon&#8221; created by the metadata written in the container DIV class.</p>
<p><pre class="brush: jscript;">
icon.click(function(){o.mb_iconize()});
</pre></p>
<p>it attaches an <strong>onclick event</strong> to the icon to iconize the corresponding container.</p>
<p><pre class="brush: jscript;">
docEl.append(icon);
      $(&quot;#&quot;+docID).append(docEl);
</pre><br />
it places the icon into the placeholder and than the placeholder into the &#8220;Dock&#8221; element.</p>
<p><pre class="brush: jscript;">
 o.attr(&quot;dock&quot;,o.attr(&quot;id&quot;)+&quot;_dock&quot;);
</pre><br />
it redefines the &#8220;dock&#8221; attribute of the container to let it iconize into its placeholder.</p>
<h3 style="padding-top:10px;">onClose callback:</h3>
<p>On the <strong>onClose</strong> event I added the <strong>close(o)</strong> function that hide the placeholder icon once the container is closed:</p>
<p><pre class="brush: jscript;">
function close(o){
    $(&quot;#&quot;+o.attr(&quot;dock&quot;)).find(&quot;img:first&quot;).hide();
}
</pre></p>
<h3 style="padding-top:10px;">onRestore callback:</h3>
<p>On the <strong>onRestore</strong> event I added the <strong>restore(o)</strong> function that shows the placeholder icon of the restored container:</p>
<p><pre class="brush: jscript;">
function restore(o){
     $(&quot;#&quot;+o.attr(&quot;dock&quot;)).find(&quot;img:first&quot;).show();
}
</pre></p>
<h3 style="padding-top:10px;">onIconize callback:</h3>
<p>On the <strong>onIconize</strong> event I added the <strong>iconize(o)</strong> function that hides the placeholder icon of the iconized container; the mb.containerPlus component will fill the &#8220;Dock&#8221; placeholder with its icon:</p>
<p><pre class="brush: jscript;">
function iconize(o){
   $(&quot;#&quot;+o.attr(&quot;dock&quot;)).find(&quot;img:first&quot;).hide();
}
</pre></p>
<hr />
<h1>3. The  javascript code:</h1>
<p>Here is the initialization javascript code for containers in this tutorial:</p>
<p><pre class="brush: jscript;">
$(function(){
  function initDock(o,docID){
     var opt= o.get(0).options;
     var docEl=$(&quot;&amp;lt;span&amp;gt;&quot;).attr(&quot;id&quot;,o.attr(&quot;id&quot;)+&quot;_dock&quot;).css({width:opt.dockedIconDim+5,display:&quot;inline-block&quot;});
     var icon= $(&quot;&amp;lt;img&amp;gt;&quot;).attr(&quot;src&quot;,opt.elementsPath+&quot;icons/&quot;+(o.attr(&quot;icon&quot;)?o.attr(&quot;icon&quot;):&quot;restore.png&quot;)).css({opacity:.4,width:opt.dockedIconDim, cursor:&quot;pointer&quot;});
     icon.click(function(){o.mb_iconize()});
     docEl.append(icon);
     $(&quot;#&quot;+docID).append(docEl);
     o.attr(&quot;dock&quot;,o.attr(&quot;id&quot;)+&quot;_dock&quot;);
  }
  function iconize(o){
     $(&quot;#&quot;+o.attr(&quot;dock&quot;)).find(&quot;img:first&quot;).hide();
  }
  function &lt;strong&gt;restore&lt;/strong&gt;(o){
     $(&quot;#&quot;+o.attr(&quot;dock&quot;)).find(&quot;img:first&quot;).show();
  }
  function &lt;strong&gt;close&lt;/strong&gt;(o){
     $(&quot;#&quot;+o.attr(&quot;dock&quot;)).find(&quot;img:first&quot;).hide();
  }
  $(&quot;.containerPlus&quot;).buildContainers({
    containment:&quot;document&quot;,
    elementsPath:&quot;../elements/&quot;,
    dockedIconDim:45,
    onCreate:function(o){initDock(o,&quot;dock&quot;)},
    onClose:function(o){close(o)},
    onRestore:function(o){restore(o)},
    onIconize:function(o){iconize(o)},
    effectDuration:300
  });
});
</pre></p>
<hr />
<h1>4. The HTML code:</h1>
<p>And here the HTML code to define a container:</p>
<p><pre class="brush: jscript;">
&lt;div id=&quot;c1&quot; class=&quot;containerPlus draggable resizable {buttons:'m,i,c', icon:'browser.png', skin:'black', width:'500',iconized:'true', dock:'dock', title:'container 1'}&quot; style=&quot;position:fixed;top:130px;left:400px&quot;&gt;
    Content goes here
&lt;/div&gt;
</pre></p>
<p>As you can see the code to define the containerPlus is really simplified respect previous versions. You don&#8217;t need to write all the container structure but only the content.</p>
<div dir="ltr">for those who are upgrading from prvious version there&#8217;s no need to rewrite the containers HTML code; the component itself will detect if the code has all the structure or not and it&#8217;ll work consequently.</div>
<hr />
<p><strong><a href="http://pupunzi.com/mb.components/mb.containerPlus/demo/demo_icon_in_place/demo.html" target="_blank">take a look at the demo<br />
<img class="alignnone" style="border:0 none;" title="demo1" src="http://pupunzi.files.wordpress.com/2009/09/demo11.png?w=182&#038;h=60" alt="" width="182" height="60" /></a></strong></p>
<hr />
<p style="text-align:left;">This demo is included in the component package you can download from the mb.containerPlus page:</p>
<h3 style="text-align:left;"><strong><a href="http://pupunzi.open-lab.com/mb-jquery-components/mb-containerplus/">go to the component page</a><br />
</strong></h3>
<hr />
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pupunzi.wordpress.com/1618/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pupunzi.wordpress.com/1618/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pupunzi.wordpress.com/1618/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pupunzi.wordpress.com/1618/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pupunzi.wordpress.com/1618/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pupunzi.wordpress.com/1618/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pupunzi.wordpress.com/1618/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pupunzi.wordpress.com/1618/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pupunzi.wordpress.com/1618/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pupunzi.wordpress.com/1618/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pupunzi.wordpress.com/1618/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pupunzi.wordpress.com/1618/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pupunzi.wordpress.com/1618/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pupunzi.wordpress.com/1618/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pupunzi.open-lab.com&amp;blog=6146833&amp;post=1618&amp;subd=pupunzi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pupunzi.open-lab.com/2010/06/19/how-to-add-a-functional-dock-to-jquery-mb-containerplus/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		<georss:point>43.768732 11.256901</georss:point>
		<geo:lat>43.768732</geo:lat>
		<geo:long>11.256901</geo:long>
		<media:thumbnail url="http://pupunzi.files.wordpress.com/2010/06/container_dock.jpg?w=150" />
		<media:content url="http://pupunzi.files.wordpress.com/2010/06/container_dock.jpg?w=150" medium="image">
			<media:title type="html">container_dock</media:title>
		</media:content>

		<media:content url="http://0.gravatar.com/avatar/03604fe1ab8aedd7fd69ba097439593c?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pupunzi</media:title>
		</media:content>

		<media:content url="http://pupunzi.files.wordpress.com/2010/06/containe_dock.jpg" medium="image">
			<media:title type="html">containe_dock</media:title>
		</media:content>

		<media:content url="http://pupunzi.files.wordpress.com/2009/09/demo11.png" medium="image">
			<media:title type="html">demo1</media:title>
		</media:content>
	</item>
		<item>
		<title>How to use a Yotube movie as background of your HTML page</title>
		<link>http://pupunzi.open-lab.com/2010/03/22/youtube-movie-as-background/</link>
		<comments>http://pupunzi.open-lab.com/2010/03/22/youtube-movie-as-background/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 21:31:16 +0000</pubDate>
		<dc:creator>Matteo Bicocchi</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mb.ideas.components]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[mb.components]]></category>
		<category><![CDATA[mb.YTPlayer]]></category>

		<guid isPermaLink="false">http://pupunzi.open-lab.com/?p=1296</guid>
		<description><![CDATA[One of the latest component I&#8217;m working on is an easy to build custom Youtube player. The new Youtube API allow developers to invoke a chrome-less AS3 player and use a javascript API to build our own controls, we have almost all the controls available: player.playVideo(), player.pauseVideo(), player.setVolume(), player.mute(), player.unMute(), player.getVideoStartBytes(), player.getVideoBytesTotal(), player.getVideoBytesLoaded(), player.getCurrentTime(), player.getDuration()&#160;&#8230; <a href="http://pupunzi.open-lab.com/2010/03/22/youtube-movie-as-background/">Read&#160;more</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pupunzi.open-lab.com&amp;blog=6146833&amp;post=1296&amp;subd=pupunzi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the latest component I&#8217;m working on is an easy to build custom Youtube player.</p>
<p>The new Youtube API allow developers to invoke a chrome-less AS3 player and use a javascript API to build our own controls, we have almost all the controls available: <em>player.playVideo(), player.pauseVideo(), player.setVolume(), player.mute(), player.unMute(), player.getVideoStartBytes(), player.getVideoBytesTotal(), player.getVideoBytesLoaded(), player.getCurrentTime(), player.getDuration()</em> &#8230; All we need to make a custom and customizable control tool for our movie player.</p>
<p>Going on developing it, a great idea was growing in me&#8230; Why not using  any movie from Youtube  as background of a website page instead of  images&#8230;<br />
I sow a site (from <a href="http://jquery14.com">http://jquery14.com</a>) that uses a movie as background with a really nice effect (<a href="http://insideccs.com/#/before_getting_in/degree/">http://insideccs.com/#/before_getting_in/degree/</a>). This is what I was thinking at.</p>
<p>And how to have this movieplayer as background?</p>
<p>Well, of course we can&#8217;t set it via CSS; this is not supported. But we can have a DIV with an absolute position containing our embedded chrome-less player  under all the other elements of the body; the EMBED must have the WMODE property set as TRANSPARENT to prevent the movie to be over the rest of the content and it must have WIDTH and HEIGHT set to &#8220;100%&#8221;.</p>
<p>And this is what my <strong>jquery.mb.YTPlayer</strong> plug-in can do for you; what you have to do is just insert a line of HTML code into your page, include the js in the head of your page and call the method. All the rest is the plug-in:</p>
<h3>In the head:</h3>
<pre> &lt;script type="text/javascript" src="jquery.min.js"&gt;&lt;/script&gt;
 &lt;script type="text/javascript" src="<strong>jquery.metadata.js</strong>"&gt;&lt;/script&gt;
 &lt;script type="text/javascript" src="<strong>jquery.mb.YTPlayer.js</strong>"&gt;&lt;/script&gt;</pre>
<h3>In the body:</h3>
<pre>&lt;a href="[the youtube video URL]"
   class="<strong>movie</strong>
   {opacity:.4, isBgndMovie:{width:'1990',mute:false}, ratio:'4/3'}"&gt; [Alternative link] &lt;/a&gt;</pre>
<h3>And the js call:</h3>
<pre>&lt;script type="text/javascript"&gt;
 $(function(){$(".movie").mb_YTPlayer();});
&lt;/script&gt;</pre>
<p>The plug-in can also be used as alternative Youtube player just removing the  <strong>isBgndMovie</strong> meta parameter; in that case you can specify the <strong>width</strong>, the <strong>aspect ratio</strong> (4/3 or 16/9) and you can customize the controls via CSS.</p>
<p>The advantage you whould have is also that the embed of the player is provided with all the browsers support controls using the swfobject.js.</p>
<p><strong>Take a look at this video:</strong></p>
<span style="text-align:center; display: block;"><a href="http://pupunzi.open-lab.com/2010/03/22/youtube-movie-as-background/"><img src="http://img.youtube.com/vi/j47NH-tGl2A/2.jpg" alt="" /></a></span>
<h3>The jquery.mb.YTPlayer plug in is under development but it will be soon available.</h3>
<h3>If you are interested on you can download the 1.0rc3 from <a href="http://github.com/pupunzi/jquery.mb.YTPlayer/downloads" target="_blank">here</a>.</h3>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pupunzi.wordpress.com/1296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pupunzi.wordpress.com/1296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pupunzi.wordpress.com/1296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pupunzi.wordpress.com/1296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pupunzi.wordpress.com/1296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pupunzi.wordpress.com/1296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pupunzi.wordpress.com/1296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pupunzi.wordpress.com/1296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pupunzi.wordpress.com/1296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pupunzi.wordpress.com/1296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pupunzi.wordpress.com/1296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pupunzi.wordpress.com/1296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pupunzi.wordpress.com/1296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pupunzi.wordpress.com/1296/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pupunzi.open-lab.com&amp;blog=6146833&amp;post=1296&amp;subd=pupunzi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pupunzi.open-lab.com/2010/03/22/youtube-movie-as-background/feed/</wfw:commentRss>
		<slash:comments>45</slash:comments>
		<georss:point>43.768732 11.256901</georss:point>
		<geo:lat>43.768732</geo:lat>
		<geo:long>11.256901</geo:long>
		<media:thumbnail url="http://pupunzi.files.wordpress.com/2010/03/mb-ytvplayer-1.jpg?w=150" />
		<media:content url="http://pupunzi.files.wordpress.com/2010/03/mb-ytvplayer-1.jpg?w=150" medium="image">
			<media:title type="html">mb.YTVPlayer-1</media:title>
		</media:content>

		<media:content url="http://0.gravatar.com/avatar/03604fe1ab8aedd7fd69ba097439593c?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pupunzi</media:title>
		</media:content>
	</item>
		<item>
		<title>A new Patapage tutorial: how to customize a button&#8230;</title>
		<link>http://pupunzi.open-lab.com/2010/01/05/a-new-patapage-tutorial-how-to-customize-a-button/</link>
		<comments>http://pupunzi.open-lab.com/2010/01/05/a-new-patapage-tutorial-how-to-customize-a-button/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 09:51:38 +0000</pubDate>
		<dc:creator>Matteo Bicocchi</dc:creator>
				<category><![CDATA[patapage]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://pupunzi.open-lab.com/?p=1129</guid>
		<description><![CDATA[Take a look at this article on how you can customize a Patapage button on your page instead of have the default docked one: http://blog.patapage.com/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pupunzi.open-lab.com&amp;blog=6146833&amp;post=1129&amp;subd=pupunzi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="patapage" src="http://patapage.files.wordpress.com/2010/01/example1.jpg?w=296&#038;h=523&#038;h=188" alt="" width="296" height="188" /></p>
<p>Take a look at this article on <strong>how you can customize a Patapage button on your page</strong> instead of have the default docked one:</p>
<p><a href="http://blog.patapage.com/" target="_blank">http://blog.patapage.com/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pupunzi.wordpress.com/1129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pupunzi.wordpress.com/1129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pupunzi.wordpress.com/1129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pupunzi.wordpress.com/1129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pupunzi.wordpress.com/1129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pupunzi.wordpress.com/1129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pupunzi.wordpress.com/1129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pupunzi.wordpress.com/1129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pupunzi.wordpress.com/1129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pupunzi.wordpress.com/1129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pupunzi.wordpress.com/1129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pupunzi.wordpress.com/1129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pupunzi.wordpress.com/1129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pupunzi.wordpress.com/1129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pupunzi.open-lab.com&amp;blog=6146833&amp;post=1129&amp;subd=pupunzi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pupunzi.open-lab.com/2010/01/05/a-new-patapage-tutorial-how-to-customize-a-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>43.768732 11.256901</georss:point>
		<geo:lat>43.768732</geo:lat>
		<geo:long>11.256901</geo:long>
		<media:content url="http://0.gravatar.com/avatar/03604fe1ab8aedd7fd69ba097439593c?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">pupunzi</media:title>
		</media:content>

		<media:content url="http://patapage.files.wordpress.com/2010/01/example1.jpg?w=700&#38;h=523" medium="image">
			<media:title type="html">patapage</media:title>
		</media:content>
	</item>
	</channel>
</rss>
