<?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>Silverlike &#187; Tricks</title>
	<atom:link href="http://silverlike.net/tag/tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://silverlike.net</link>
	<description>We Like Silverlight</description>
	<lastBuildDate>Mon, 07 Dec 2009 06:34:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The fundamental of page flip technique</title>
		<link>http://silverlike.net/the-fundamental-of-page-flip-technique/</link>
		<comments>http://silverlike.net/the-fundamental-of-page-flip-technique/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 05:04:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://silverlike.net/the-fundamental-of-page-flip-technique/</guid>
		<description><![CDATA[Page flip is a very impressive features in displaying your documents, images, media, etc.. The technique behind page flip is pretty complicated. However, Rick Barraza has a very good articles describing all the mystery behind this technique.]]></description>
			<content:encoded><![CDATA[<p>Page flip is a very impressive features in displaying your documents, images, media, etc.. The technique behind page flip is pretty complicated. However, <a href="http://www.cynergysystems.com/blogs/page/rickbarraza?entry=the_secret_behind_the_page" target="_blank">Rick Barraza</a> has a very good articles describing all the mystery behind this technique.</p>
<p class="image"><a href="http://www.cynergysystems.com/blogs/page/rickbarraza?entry=the_secret_behind_the_page" target="_blank"><img style="display: inline" title="The fundamental of page flip technique" alt="The fundamental of page flip technique" src="http://silverlike.net/wp-content/uploads/2009/12/Thefundamentalofpagefliptechnique.jpg" width="450" height="250" /></a> </p>
<div class="demo-area">Silverlight Demo: <a class="new-window" href="http://silverlike.net/silverlight/index.php?xap=%2Fwp-content%2Fuploads%2Fxap%2FBlogPageFlipStudy04.xap&TB_iframe=true&caption=The+fundamental+of+page+flip+technique&height=400&width=650" target="_blank">Click here to view</a></div>
<div class="reference-info"><strong>Website:</strong> <a href="http://silverlike.net/the-fundamental-of-page-flip-technique/" title="http://silverlike.net/the-fundamental-of-page-flip-technique/" target="_blank">Click here</a></div>
<div class="reference-info"><strong>Download:</strong> <a href="http://silverlike.net/the-fundamental-of-page-flip-technique/" title="http://silverlike.net/the-fundamental-of-page-flip-technique/" target="_blank">Click here</a></div>
<img src="http://silverlike.net/?ak_action=api_record_view&id=881&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://silverlike.net/the-fundamental-of-page-flip-technique/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Leaving some space for HTML header</title>
		<link>http://silverlike.net/leaving-some-space-for-html-header/</link>
		<comments>http://silverlike.net/leaving-some-space-for-html-header/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 05:39:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://silverlike.net/leaving-some-space-for-html-header/</guid>
		<description><![CDATA[Silverlight works well by getting all the space of your browser. However, sometimes, you may want to leave some space (let say 60px) for your header in HTML format.]]></description>
			<content:encoded><![CDATA[<p>Silverlight works well by getting all the space of your browser. However, sometimes, you may want to leave some space (let say 60px) for your header in HTML format. </p>
<p>Here is any solution using JavaScript to allocate space for the Silverlight dynamically. </p>
<p class="image"><a href="http://www.shiendraw.com" target="_blank"><img style="display: inline" title="Leaving some space for HTML header" alt="Leaving some space for HTML header" src="http://silverlike.net/wp-content/uploads/2009/11/LeavingsomespaceforHTMLheader.jpg" width="450" height="250" /></a> </p>
<div class="xaml-area">Leaving 60px on top of silverlight: </div>
<pre class="brush: xml;">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; &gt;
&lt;head&gt;
    &lt;style type=&quot;text/css&quot;&gt;
      html, body { height: 100%; overflow: auto; }
      body { padding: 0; margin: 0; overflow:hidden; }
      #header{ height: 60px; }
      #silverlightControlHost { height: 100%; text-align:center; }
    &lt;/style&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;Silverlight.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot;&gt;
        var headerHeight = 60;
    function getWindowHeight() {
        var windowHeight = 0;
        if (typeof(window.innerHeight) == 'number') {
            windowHeight = window.innerHeight;
        }else{
            if (document.documentElement &amp;&amp; document.documentElement.clientHeight) {
                windowHeight = document.documentElement.clientHeight;
            }else {
                if (document.body &amp;&amp; document.body.clientHeight) {
                    windowHeight = document.body.clientHeight;
                }
            }
        }
        return windowHeight;
    }

    function updateSilverlightSize(){
        var windowHeight = getWindowHeight();
        document.getElementById('form1').style.height = (windowHeight - headerHeight)  + &quot;px&quot;;
        document.getElementById('silverlightControlHost').style.height = (windowHeight - headerHeight) + &quot;px&quot;;
    }
    &lt;/script&gt;
&lt;/head&gt;
&lt;body onload=&quot;updateSilverlightSize();&quot; onResize=&quot;updateSilverlightSize();&quot;&gt;
    &lt;div id=&quot;header&quot;&gt;You header&lt;/div&gt;
    &lt;form id=&quot;form1&quot; runat=&quot;server&quot; style=&quot;height:100%&quot;&gt;
        &lt;div id=&quot;silverlightControlHost&quot;&gt;
            &lt;object data=&quot;data:application/x-silverlight-2,&quot; type=&quot;application/x-silverlight-2&quot; width=&quot;100%&quot; height=&quot;100%&quot;&gt;
          &lt;param name=&quot;source&quot; value=&quot;silverlight.xap&quot;/&gt;
        &lt;/object&gt;&lt;iframe id=&quot;_sl_historyFrame&quot; style=&quot;visibility:hidden;height:0px;width:0px;border:0px&quot;&gt;&lt;/iframe&gt;
    &lt;/div&gt;
    &lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<div class="reference-info"><strong>Website:</strong> <a href="http://silverlike.net/leaving-some-space-for-html-header/" title="http://silverlike.net/leaving-some-space-for-html-header/" target="_blank">Click here</a></div>
<img src="http://silverlike.net/?ak_action=api_record_view&id=767&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://silverlike.net/leaving-some-space-for-html-header/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!--
This site's performance optimized by W3 Total Cache:

W3 Total Cache improves the user experience of your blog by caching
frequent operations, reducing the weight of various files and providing
transparent content delivery network integration.

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk

Served from: shareelements.silverlighteffect.com @ 2012-02-07 15:31:12 -->
