<?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>Graphic Euphoria&#187; Flash</title>
	<atom:link href="http://www.graphic-euphoria.co.uk/category/flash/feed" rel="self" type="application/rss+xml" />
	<link>http://www.graphic-euphoria.co.uk</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 12 Oct 2009 14:57:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Firefox not displaying dynamically embedded flash? Page-speed might be your problem!</title>
		<link>http://www.graphic-euphoria.co.uk/firefox-not-displaying-dynamically-embedded-flash-page-speed-might-be-your-problem</link>
		<comments>http://www.graphic-euphoria.co.uk/firefox-not-displaying-dynamically-embedded-flash-page-speed-might-be-your-problem#comments</comments>
		<pubDate>Mon, 12 Oct 2009 14:55:35 +0000</pubDate>
		<dc:creator>Si</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.graphic-euphoria.co.uk/?p=298</guid>
		<description><![CDATA[Flash no show Today i discovered a worrying bug with Firefox, Firebug and Page-speed.  A good friend of mine, Chris Murray, was demonstrating his new flash photo upload applet. I rudely pointed out that it didn&#8217;t work in Firefox only to find out that it did in his. After wasting his time trying to prove [...]]]></description>
			<content:encoded><![CDATA[<h2>Flash no show</h2>
Today i discovered a worrying bug with <strong><a title="visit firefox's site and download it please!" href="http://www.mozilla.com/firefox/" target="_blank">Firefox</a></strong>, <strong><a title="download and install firebug" href="https://addons.mozilla.org/en-US/firefox/addon/1843" target="_blank">Firebug </a></strong>and <strong><a title="visit the page-speed website. It is very good!" href="http://code.google.com/speed/page-speed/" target="_blank">Page-speed</a></strong>.  A good friend of mine, <a title="Visit Chris Murrays personal portfolio site" href="http://www.chrismurray.me.uk/" target="_blank">Chris Murray</a>, was demonstrating his new <strong>flash</strong> photo upload applet. I rudely pointed out that it didn&#8217;t work in <strong>Firefox </strong>only to find out that it did in his. After wasting his time trying to prove <strong>SWFOject</strong>, <strong>Firefox </strong>and maybe <strong>Flash </strong>needed to be updated it turns out that no <strong>dynamically embedded flash</strong> worked in my version of <strong>Firefox</strong>. Sorry Chris&#8230;

What do i mean by <strong>embedded flash</strong>? Well, to get round the various methods of e<strong>mbedding flash</strong> into multiple <strong>browsers</strong>, <strong>javascript </strong>is often used to insert the flash into the DOM. Thereby using different techniques per <strong>browser</strong>.

To cut a long story short here is a screenshot of the relevant flash:
<img class="alignnone size-full wp-image-299" title="pageSpeedFlash" src="http://www.graphic-euphoria.co.uk/uploads/2009/10/pageSpeedFlash.jpg" alt="pageSpeedFlash" width="600" height="250" />

As you can see, the mark up is correct and present, just strangely disabled.

I am using <strong>Firefox 3.5.3</strong>, F<strong>irebug 1.4.3</strong> and <strong>Page-speed 1.3</strong>. All are the updated and most recent versions.
<h3>What can you do?</h3>
Nothing really. The issue has been raised with <strong>Page-speed</strong> guys and there is a <a title="Visit the page-speed support forum" href="http://code.google.com/p/page-speed/issues/detail?id=137" target="_blank">support thread</a> too. I expect this to be resolved straight away as the issue has been marked critical. It is probably best to disable <strong>Page-speed</strong> for the time being. There is always <strong><a title="visit the yslow website" href="http://developer.yahoo.com/yslow/" target="_blank">Yslow</a></strong>!<script src="http://feeds.feedburner.com/~s/sidonaldson?i=http://www.graphic-euphoria.co.uk/firefox-not-displaying-dynamically-embedded-flash-page-speed-might-be-your-problem" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.graphic-euphoria.co.uk/firefox-not-displaying-dynamically-embedded-flash-page-speed-might-be-your-problem/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flash Quick Tip: How to randomize an Array</title>
		<link>http://www.graphic-euphoria.co.uk/flash-randomize-an-array</link>
		<comments>http://www.graphic-euphoria.co.uk/flash-randomize-an-array#comments</comments>
		<pubDate>Sat, 28 Feb 2009 19:46:11 +0000</pubDate>
		<dc:creator>Si</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[actionscript]]></category>

		<guid isPermaLink="false">http://www.graphic-euphoria.co.uk/?p=177</guid>
		<description><![CDATA[This snippet of actionscript can be used to simply re-order or randomize an array in Adobe Flash.]]></description>
			<content:encoded><![CDATA[I had to google this today so i though i would share it with you!

This <strong>snippet </strong>of <strong>actionscript </strong>can be used to simply <strong>re-order</strong> or <strong>randomize </strong>an array in <strong>Adobe Flash</strong>.
<pre name="code" class="actionscript">var myArray = new Array(1, 2, 3, 4, 5, 6, 7, 8, 9);
myArray.sort(function (){
return Math.round(Math.random());
});
trace(myArray);</pre>
ps and yes i know I&#8217;ve spelt randomise wrong ; )<script src="http://feeds.feedburner.com/~s/sidonaldson?i=http://www.graphic-euphoria.co.uk/flash-randomize-an-array" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.graphic-euphoria.co.uk/flash-randomize-an-array/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Best Interactive Flash Websites?</title>
		<link>http://www.graphic-euphoria.co.uk/the-best-interactive-flash-websites</link>
		<comments>http://www.graphic-euphoria.co.uk/the-best-interactive-flash-websites#comments</comments>
		<pubDate>Sat, 14 Feb 2009 14:17:26 +0000</pubDate>
		<dc:creator>Si</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.graphic-euphoria.co.uk/?p=77</guid>
		<description><![CDATA[I recently stumbled across a few 100% fullscreen interactive flash websites. Now, if there was an award for the ‘Best Interactive Flash Websites’ out there, these would have to be contenders!]]></description>
			<content:encoded><![CDATA[I recently stumbled across a few 100% fullscreen <strong>interactive <strong>flash websites</strong>. Now, if there was an award for the ‘Best Interactive Flash Websites’ out there, these would have to be contenders!</strong>

<strong>I would love to have the opportunity to see the <strong>source code</strong> and <strong>fla</strong>’s for these:</strong>
<h3><strong><a title="Click here to view scifi.com/tinman/oz/" href="http://www.scifi.com/tinman/oz/" target="_blank">http://www.scifi.com/tinman/oz/</a></strong></h3>
<strong><a title="Click here to view scifi.com/tinman/oz/" href="http://www.scifi.com/tinman/oz/" target="_blank"><img class="alignnone size-full wp-image-20" title="Click here to view Scifi.com/tinman" src="http://www.graphic-euphoria.co.uk/uploads/scifi.jpg" alt="A thumbnail of scifi.com/tinman" width="600" height="366" /></a></strong>
<h3><strong><a title="Click here to view samorost2.net/plantage/plantage.swf" href="http://samorost2.net/plantage/plantage.swf" target="_blank">http://samorost2.net/plantage/plantage.swf</a></strong></h3>
<strong><a title="Click here to view samorost2.net/plantage/plantage.swf" href="http://samorost2.net/plantage/plantage.swf" target="_blank"><img class="alignnone size-medium wp-image-21" title="Click to view samorost2.net" src="http://www.graphic-euphoria.co.uk/uploads/plantage.jpg" alt="A preview of plantage" width="600" height="486" /></a></strong>
<h3><strong><a title="Click here to view adobecards.com/" href="http://adobecards.com/" target="_blank">http://www.adobecards.com</a></strong></h3>
<strong><a title="Click here to view adobecards.com/" href="http://adobecards.com/" target="_blank"><img class="alignnone size-medium wp-image-22" title="Click here to view Adobe cards demo" src="http://www.graphic-euphoria.co.uk/uploads/adobe.jpg" alt="A preview of the adobe cards animation" width="600" height="379" /></a></strong>
<h3><strong><a title="Click here to view potatoparade.co.uk/" href="http://www.potatoparade.co.uk/" target="_blank">http://www.potatoparade.co.uk</a></strong></h3>
<strong><a title="Click here to view potatoparade.co.uk/" href="http://www.potatoparade.co.uk/" target="_blank"><img class="alignnone size-medium wp-image-23" title="Click here to view the potato parade website" src="http://www.graphic-euphoria.co.uk/uploads/potato.jpg" alt="A preview of potato parade" width="600" height="345" /></a></strong>
<h3><strong><a title="Click here to view nawlz.com/" href="http://www.nawlz.com/" target="_blank">http://www.nawlz.com</a></strong></h3>
<strong><a title="Click here to view nawlz.com/" href="http://www.nawlz.com/" target="_blank"><img class="alignnone size-medium wp-image-24" title="Click here to view Nawlz.com" src="http://www.graphic-euphoria.co.uk/uploads/nawlz.jpg" alt="a preview of nawlz.com" width="600" height="438" /></a></strong>
<h3><strong><a title="Click here to view zune yourney" href="http://www.zunejourney.net/" target="_blank">http://www.zunejourney.net/</a></strong></h3>
<strong><a title="Click here to view zune yourney" href="http://www.zunejourney.net/" target="_blank"><img class="alignnone size-medium wp-image-25" title="Click here to view zune journey" src="http://www.graphic-euphoria.co.uk/uploads/zune.jpg" alt="a preview of zune yourney" width="600" height="383" /></a></strong><script src="http://feeds.feedburner.com/~s/sidonaldson?i=http://www.graphic-euphoria.co.uk/the-best-interactive-flash-websites" type="text/javascript" charset="utf-8"></script>]]></content:encoded>
			<wfw:commentRss>http://www.graphic-euphoria.co.uk/the-best-interactive-flash-websites/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
