<?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>Eklog &#187; Flash</title>
	<atom:link href="http://www.ekstasis.net/log/category/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ekstasis.net/log</link>
	<description></description>
	<lastBuildDate>Sun, 13 Sep 2009 21:21: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>Fuzzy Felt</title>
		<link>http://www.ekstasis.net/log/2009/05/22/fuzzy-felt/</link>
		<comments>http://www.ekstasis.net/log/2009/05/22/fuzzy-felt/#comments</comments>
		<pubDate>Fri, 22 May 2009 09:01:16 +0000</pubDate>
		<dc:creator>mat</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.ekstasis.net/log/2009/05/22/fuzzy-felt/</guid>
		<description><![CDATA[I&#8217;ve put together a fuzzy felt page. It uses Drag-Drop JavaScript and database logging of an item&#8217;s position. It&#8217;s an adaption of Broken Notebook&#8217;s magnetic ajax. Go have a play!

Fuzzy Felt on line
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve put together a fuzzy felt page. It uses Drag-Drop JavaScript and database logging of an item&#8217;s position. It&#8217;s an adaption of <a href="http://www.broken-notebook.com/magnetic/">Broken Notebook&#8217;s magnetic ajax</a>. Go have a play!</p>
<p><a href="/fuzzyfelt/"><img align="center" src="/images/blog/fuzzy-felt_ss.jpg" alt="Fuzzy Felt" /></a></p>
<p style="text-align: center"><a href="/fuzzyfelt/">Fuzzy Felt on line</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekstasis.net/log/2009/05/22/fuzzy-felt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using swf object version 2</title>
		<link>http://www.ekstasis.net/log/2009/01/28/using-swf-object-version-2/</link>
		<comments>http://www.ekstasis.net/log/2009/01/28/using-swf-object-version-2/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 17:22:17 +0000</pubDate>
		<dc:creator>mat</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.ekstasis.net/log/2009/01/28/using-swf-object-version-2/</guid>
		<description><![CDATA[swfobject is a great tool for serving flash in a standards-based, accessible way.
Version 2.1 is available at google code &#8211; here&#8217;s the link: code.google.com/p/swfobject/
Main Advantages:

It&#8217;s more optimized and flexible than any other Flash Player embed method around.
It uses unobtrusive JavaScript.
It offers a standards-based, accessible way to serve flash.
It allows you to avoid click-to-activate mechanisms to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>swfobject</strong> is a great tool for serving flash in a standards-based, accessible way.</p>
<p>Version 2.1 is available at google code &#8211; here&#8217;s the link: <a href="http://code.google.com/p/swfobject/">code.google.com/p/swfobject/</a></p>
<h2>Main Advantages:</h2>
<ul>
<li>It&#8217;s more optimized and flexible than any other Flash Player embed method around.</li>
<li>It uses unobtrusive JavaScript.</li>
<li>It offers a standards-based, accessible way to serve flash.</li>
<li>It allows you to avoid click-to-activate mechanisms to activate active content in Internet Explorer 6/7 and Opera 9+.</li>
</ul>
<p>There are two publishing methods: static publishing method &amp; dynamic publishing method.<br />
<span id="more-67"></span><br />
Both methods allow you to use standards-based markup and a way to serve alternative content (including a option to install / upgrade your flash) if flash isn&#8217;t supported.</p>
<p>The main advantage of the static publishing method is: If you have the Flash plug-in installed, but have JavaScript disabled or a use a browser that doesn&#8217;t support JavaScript, you will still be able to see your Flash content.</p>
<p>Usually there&#8217;s a good reason why JavaScript isn&#8217;t supported. <a href="http://www.w3schools.com/browsers/browsers_stats.asp">W3C schools Browser Stats</a> states 95% of users have JavaScript On. So unless you specifically want to cater for devices like Sony PSP (which has very poor JavaScript support) the dynamic publishing method is recommended.</p>
<p>The advantages of the dynamic publishing method are: It avoids click-to-activate mechanisms to activate active content in Internet Explorer 6/7 and Opera 9+.</p>
<h2>Using parameters:</h2>
<p>There aren&#8217;t a lot of examples of using parameters. Here&#8217;s an example for making movies transparent. This is often necessary to have DHTML elements appear ABOVE the flash movies (as well as content / imagery below.)</p>
<pre>
&lt;script type=&quot;text/javascript&quot;&gt;
// &lt;![CDATA[
	var flashvars = false;
    var params = {
		quality: &quot;high&quot;,
		wmode: &quot;transparent&quot;,
		scale: &quot;noscale&quot;
	};
	var attributes = {};
	swfobject.embedSWF(&quot;/flash/movie.swf&quot;, &quot;flashcontentID&quot;,
&quot;550&quot;, &quot;400&quot;, &quot;6.0.0&quot;, &quot;false&quot;, flashvars,
params, attributes);
// ]]&gt;
&lt;/script&gt;
</pre>
<h2>Bugs:</h2>
<p>There appears to be an unresolved issue where the flash movie doesn&#8217;t load in Internet Explorer 7. You can find more details at the <a href="http://www.flashcomguru.com/index.cfm/2007/6/21/swfobject-problem-ie7">flashcomguru.com forum</a></p>
<p>Adobe state only a very small number of IE7 users are affected but many users believe the issue is more widespread. </p>
<p>Setting the flash version to &quot;0&quot; does solve the issue. But if the user doesn&#8217;t have flash the alternative content is not served. <a href="http://www.adobe.com/products/player_census/flashplayer/">Adobe.com&#8217;s player census</a> state about 98% of users have flash player version 7 and above installed. (Only 80% use version 9 so this solution would not be satisfactory). </p>
<pre>
&lt;!--[if !IE 7]&gt;&lt;!--&gt;
    &lt;script type=&quot;text/javascript&quot;&gt;
    // &lt;![CDATA[
	swfobject.embedSWF(&quot;/flash/movie.swf&quot;, &quot;flashcontentID&quot;,
&quot;550&quot;, &quot;400&quot;, &quot;6.0.0&quot;, &quot;false&quot;, flashvars,
params, attributes);
    // ]]&gt;
    &lt;/script&gt;
&lt;!--&lt;![endif]--&gt;

&lt;!--[if IE 7]&gt;&lt;!--&gt;
    &lt;script type=&quot;text/javascript&quot;&gt;
    // &lt;![CDATA[
	swfobject.embedSWF(&quot;/flash/movie.swf&quot;, &quot;flashcontentID&quot;,
&quot;550&quot;, &quot;400&quot;, &quot;0&quot;, &quot;false&quot;, flashvars,
params, attributes);
        // ]]&gt;
    &lt;/script&gt;
&lt;!--&lt;![endif]--&gt;
</pre>
<p>Alternatively, use the alternative content to embed the movie and then use a src=&#8221;image.gif&#8221; with details describing what&#8217;s happening / what steps to take.</p>
<p>Note: Not sure how using using expressinstall.swf affects this issue. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekstasis.net/log/2009/01/28/using-swf-object-version-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Here we go again</title>
		<link>http://www.ekstasis.net/log/2008/01/01/here-we-go-again/</link>
		<comments>http://www.ekstasis.net/log/2008/01/01/here-we-go-again/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 13:00:50 +0000</pubDate>
		<dc:creator>mat</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.ekstasis.net/log/?p=18</guid>
		<description><![CDATA[Happy New Year!!!!










]]></description>
			<content:encoded><![CDATA[<p>Happy New Year!!!!</p>
<div align="center">
<object width="246" height="168">
<param name="movie" value="/flash/happynewyear2006.swf"></param>
<param name="quality" value="high"></param>
<param name="wmode" value="window"></param>
<param name="menu" value="false"></param>
<param name="bgcolor" value="#FFFFFF"></param>
<embed type="application/x-shockwave-flash" width="246" height="168" src="/flash/happynewyear2006.swf" quality="high" bgcolor="#FFFFFF" wmode="window" menu="false" ></embed>
</object>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.ekstasis.net/log/2008/01/01/here-we-go-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All about timing</title>
		<link>http://www.ekstasis.net/log/2006/09/06/all-about-timing/</link>
		<comments>http://www.ekstasis.net/log/2006/09/06/all-about-timing/#comments</comments>
		<pubDate>Wed, 06 Sep 2006 01:21:04 +0000</pubDate>
		<dc:creator>mat</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.ekstasis.net/log/?p=12</guid>
		<description><![CDATA[Here&#8217;s a &#8216;virtual&#8217; version of a nicely designed clock &#8211; created in flash. The location of the site with the original physical clock has been lost &#8211; so sorry, no acknowlegement:










]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a &#8216;virtual&#8217; version of a nicely designed clock &#8211; created in flash. The location of the site with the original physical clock has been lost &#8211; so sorry, no acknowlegement:</p>
<div align="center">
<object width="70" height="70">
<param name="movie" value="/flash/orbit_clock.swf"></param>
<param name="quality" value="high"></param>
<param name="wmode" value="window"></param>
<param name="menu" value="false"></param>
<param name="bgcolor" value="#FFFFFF"></param>
<embed type="application/x-shockwave-flash" width="70" height="70" src="/flash/orbit_clock.swf" quality="high" bgcolor="#FFFFFF" wmode="window" menu="false" ></embed>
</object>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.ekstasis.net/log/2006/09/06/all-about-timing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disco Penguin</title>
		<link>http://www.ekstasis.net/log/2006/05/15/disco-penguin/</link>
		<comments>http://www.ekstasis.net/log/2006/05/15/disco-penguin/#comments</comments>
		<pubDate>Mon, 15 May 2006 19:55:24 +0000</pubDate>
		<dc:creator>mat</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.ekstasis.net/log/2007/12/15/disco-penguin/</guid>
		<description><![CDATA[The little known, rarely seen, mating dance of the Disco Penguin. Hold the mouse button down for a while then let go to create a zoom in and out effect.



Click to see disco penguin 
]]></description>
			<content:encoded><![CDATA[<p>The little known, rarely seen, mating dance of the Disco Penguin. Hold the mouse button down for a while then let go to create a zoom in and out effect.</p>
<div style="text-align: center">
<a title="Click to see disco penguin dance" href="/web/fm/discopenguin"><img alt="disco penguin" title="Eklayout1" src="/images/logpics/discopenguin.jpg" /></a>
</div>
<p style="text-align: center"><a title="Click to see disco penguin dance" href="/web/fm/discopenguin">Click to see disco penguin </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekstasis.net/log/2006/05/15/disco-penguin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Play it again</title>
		<link>http://www.ekstasis.net/log/2006/03/30/play-it-again/</link>
		<comments>http://www.ekstasis.net/log/2006/03/30/play-it-again/#comments</comments>
		<pubDate>Thu, 30 Mar 2006 02:11:11 +0000</pubDate>
		<dc:creator>mat</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.ekstasis.net/log/?p=19</guid>
		<description><![CDATA[Here&#8217;s a neat little flash app. Drag a record onto the decks to listen to some cool mp3s (The original is at Flash Kit: Flash Turntable):










(You need to click to view the stand-alone page to see it in action.)
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a neat little flash app. Drag a record onto the decks to listen to some cool mp3s (The original is at Flash Kit: <a href="http://www.flashkit.com/movies/Sound/Players/turntabl-zers-8950/index.php">Flash Turntable</a>):</p>
<div align="center">
<object width="128" height="159">
<param name="movie" value="/flash/turntable.swf"></param>
<param name="quality" value="high"></param>
<param name="wmode" value="window"></param>
<param name="menu" value="false"></param>
<param name="bgcolor" value="#FFFFFF"></param>
<embed type="application/x-shockwave-flash" width="128" height="159" src="/flash/turntable.swf" quality="high" bgcolor="#FFFFFF" wmode="window" menu="false" ></embed>
</object>
</div>
<p>(You need to <a href="/log/?p=19">click to view the stand-alone page</a> to see it in action.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekstasis.net/log/2006/03/30/play-it-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Jar</title>
		<link>http://www.ekstasis.net/log/2006/03/25/the-jar/</link>
		<comments>http://www.ekstasis.net/log/2006/03/25/the-jar/#comments</comments>
		<pubDate>Sat, 25 Mar 2006 19:56:56 +0000</pubDate>
		<dc:creator>mat</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.ekstasis.net/log/2006/03/25/the-jar/</guid>
		<description><![CDATA[Click the jar to refill with a new random injection of left field miniature visual goodness:



The Jar
]]></description>
			<content:encoded><![CDATA[<p>Click the jar to refill with a new random injection of left field miniature visual goodness:</p>
<div style="text-align: center">
<a title="Click to roll the jar" href="/web/fm/thejar"><img alt="the jar" title="Eklayout1" src="/images/logpics/ss_ekjar.jpg" /></a>
</div>
<p><a title="Click to roll the jar" href="/web/fm/thejar">The Jar</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekstasis.net/log/2006/03/25/the-jar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Dream</title>
		<link>http://www.ekstasis.net/log/2006/02/15/the-dream/</link>
		<comments>http://www.ekstasis.net/log/2006/02/15/the-dream/#comments</comments>
		<pubDate>Wed, 15 Feb 2006 20:09:25 +0000</pubDate>
		<dc:creator>mat</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.ekstasis.net/log/2006/02/15/the-dream/</guid>
		<description><![CDATA[Cacti dance. Some dance very slowly. And some, in the dead of the night, dance like dervishes.



Click to see The Dream
]]></description>
			<content:encoded><![CDATA[<p>Cacti dance. Some dance very slowly. And some, in the dead of the night, dance like dervishes.</p>
<div style="text-align: center">
<a title="Click to see disco The Dream" href="/web/fm/thedream"><img alt="The Dream" title="Eklayout1" src="/images/logpics/cacti.jpg" /></a>
</div>
<p style="text-align: center"><a title="Click to see The Dream" href="/web/fm/thedream">Click to see The Dream</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekstasis.net/log/2006/02/15/the-dream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wonderland</title>
		<link>http://www.ekstasis.net/log/2005/12/18/wonderland/</link>
		<comments>http://www.ekstasis.net/log/2005/12/18/wonderland/#comments</comments>
		<pubDate>Sun, 18 Dec 2005 20:03:22 +0000</pubDate>
		<dc:creator>mat</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.ekstasis.net/log/2005/12/18/wonderland/</guid>
		<description><![CDATA[Here&#8217;s a trip down the rabbit hole:



Click to see Wonderland
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a trip down the rabbit hole:</p>
<div style="text-align: center">
<a title="Click to see disco penguin dance" href="/web/fm/wonderland"><img alt="Wonderland" title="Wonderland" src="/images/logpics/wonderland.jpg" /></a>
</div>
<p style="text-align: center"><a title="Click to see Wonderland" href="/web/fm/wonderland">Click to see Wonderland</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekstasis.net/log/2005/12/18/wonderland/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>International Stunt Pigeons</title>
		<link>http://www.ekstasis.net/log/2005/12/01/international-stunt-pigeons/</link>
		<comments>http://www.ekstasis.net/log/2005/12/01/international-stunt-pigeons/#comments</comments>
		<pubDate>Thu, 01 Dec 2005 20:06:05 +0000</pubDate>
		<dc:creator>mat</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.ekstasis.net/log/2005/12/01/international-stunt-pigeons/</guid>
		<description><![CDATA[International Stunt Pigeons. Mouse over the moon or the sun to spin the earth, then, after stopping at the continent of your choice, click on the land mass of choice to see a local pigeon performance.



Click to see the International Stunt Pigeons
]]></description>
			<content:encoded><![CDATA[<p>International Stunt Pigeons. Mouse over the moon or the sun to spin the earth, then, after stopping at the continent of your choice, click on the land mass of choice to see a local pigeon performance.</p>
<div style="text-align: center">
<a title="Click to see International Stunt Pigeons" href="/web/fm/stuntpigeons"><img alt="International Stunt Pigeons" title="International Stunt Pigeons" src="/images/logpics/stuntpigeons.jpg" /></a>
</div>
<p style="text-align: center"><a title="Click to see International Stunt Pigeons" href="/web/fm/stuntpigeons">Click to see the International Stunt Pigeons</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ekstasis.net/log/2005/12/01/international-stunt-pigeons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
