<?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>Web Development London UK &#187; SWF</title>
	<atom:link href="http://hsmoore.com/blog/tag/swf/feed/" rel="self" type="application/rss+xml" />
	<link>http://hsmoore.com</link>
	<description>Web Development London UK</description>
	<lastBuildDate>Wed, 01 Feb 2012 12:10:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Place HTML Div on top of Flash</title>
		<link>http://hsmoore.com/blog/place-html-div-on-top-of-flash/</link>
		<comments>http://hsmoore.com/blog/place-html-div-on-top-of-flash/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 14:23:23 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[SWF]]></category>
		<category><![CDATA[swfobject]]></category>
		<category><![CDATA[wmode]]></category>

		<guid isPermaLink="false">http://blog.andrewodendaal.com/?p=381</guid>
		<description><![CDATA[If you have ever tried to place a div or similar HTML element on top of a swf flash object you will know that it always tries to take precedence. You will need to do the following: In the code for the flash add: &#60;param name=”wmode” value=”transparent”&#62; and in the embed area add: wmode=”transparent” If...]]></description>
			<content:encoded><![CDATA[<p>If you have ever tried to place a div or similar HTML element on top of a swf flash object you will know that it always tries to take precedence.</p>
<p>You will need to do the following:</p>
<p>In the code for the flash add:</p>
<div class="codesnip-container" >
<div class="javascript codesnip" style="font-family:monospace;"><span class="sy0">&lt;</span>param <span class="kw3">name</span><span class="sy0">=</span>”wmode” value<span class="sy0">=</span>”transparent”<span class="sy0">&gt;</span></div>
</div>
<p>and in the embed area add:</p>
<div class="codesnip-container" >
<div class="javascript codesnip" style="font-family:monospace;">wmode<span class="sy0">=</span>”transparent”</div>
</div>
<p>If you are using SWFObject to insert swf files you can do the following:</p>
<div class="codesnip-container" >
<div class="javascript codesnip" style="font-family:monospace;"><span class="sy0">&lt;</span>script type<span class="sy0">=</span><span class="st0">&quot;text/javascript&quot;</span><span class="sy0">&gt;</span><br />
<span class="kw2">var</span> so <span class="sy0">=</span> <span class="kw2">new</span> SWFObject<span class="br0">&#40;</span><span class="st0">&quot;movie.swf&quot;</span><span class="sy0">,</span> <span class="st0">&quot;mymovie&quot;</span><span class="sy0">,</span> <span class="st0">&quot;400&quot;</span><span class="sy0">,</span> <span class="st0">&quot;100%&quot;</span><span class="sy0">,</span> <span class="st0">&quot;8&quot;</span><span class="sy0">,</span> <span class="st0">&quot;#336699&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
so.<span class="me1">addParam</span><span class="br0">&#40;</span><span class="st0">&quot;wmode&quot;</span><span class="sy0">,</span> <span class="st0">&quot;transparent&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
so.<span class="kw1">write</span><span class="br0">&#40;</span><span class="st0">&quot;flashcontent&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
<span class="sy0">&lt;/</span>script<span class="sy0">&gt;</span></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://hsmoore.com/blog/place-html-div-on-top-of-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transparent swf in html</title>
		<link>http://hsmoore.com/blog/transparent-swf-in-html/</link>
		<comments>http://hsmoore.com/blog/transparent-swf-in-html/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 14:10:59 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[adobe]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[SWF]]></category>
		<category><![CDATA[Web page]]></category>

		<guid isPermaLink="false">http://blog.andrewodendaal.com/?p=229</guid>
		<description><![CDATA[So you have now placed a swf file into your html page and you want to be able to see through it. Lucky for you, this is a very easy thing to do! The following code does the trick: &#60;object type=&#8216;application/x-shockwave-flash&#8217; data=&#8216;flash/home_side_left.swf&#8217; width=&#8217;40px&#8217; height=&#8217;550px&#8217;&#62; &#160; &#160; &#60;param name=&#8216;movie&#8217; value=&#8216;flash/home_side_left.swf&#8217; /&#62; &#160; &#160;&#60;param name=&#8216;bgcolor&#8217; value=&#8216;#ffffff&#8217;&#62; &#160;...]]></description>
			<content:encoded><![CDATA[<p>So you have now placed a swf file into your html page and you want to be able to see through it.</p>
<p>Lucky for you, this is a very easy thing to do!</p>
<p>The following code does the trick:</p>
<div class="codesnip-container" >
<div class="html4strict codesnip" style="font-family:monospace;"><span class="sc2">&lt;<a href="http://december.com/html/4/element/object.html"><span class="kw2">object</span></a> <span class="kw3">type</span><span class="sy0">=</span><span class="st0">&#8216;application/x-shockwave-flash&#8217;</span> <span class="kw3">data</span><span class="sy0">=</span><span class="st0">&#8216;flash/home_side_left.swf&#8217;</span> <span class="kw3">width</span><span class="sy0">=</span><span class="st0">&#8217;40px&#8217;</span> <span class="kw3">height</span><span class="sy0">=</span><span class="st0">&#8217;550px&#8217;</span>&gt;</span><br />
&nbsp; &nbsp; <span class="sc2">&lt;<a href="http://december.com/html/4/element/param.html"><span class="kw2">param</span></a> <span class="kw3">name</span><span class="sy0">=</span><span class="st0">&#8216;movie&#8217;</span> <span class="kw3">value</span><span class="sy0">=</span><span class="st0">&#8216;flash/home_side_left.swf&#8217;</span> <span class="sy0">/</span>&gt;</span><br />
&nbsp; &nbsp;<span class="sc2">&lt;<a href="http://december.com/html/4/element/param.html"><span class="kw2">param</span></a> <span class="kw3">name</span><span class="sy0">=</span><span class="st0">&#8216;bgcolor&#8217;</span> <span class="kw3">value</span><span class="sy0">=</span><span class="st0">&#8216;#ffffff&#8217;</span>&gt;</span><br />
&nbsp; &nbsp;<span class="sc2">&lt;<a href="http://december.com/html/4/element/param.html"><span class="kw2">param</span></a> <span class="kw3">name</span><span class="sy0">=</span><span class="st0">&#8216;wmode&#8217;</span> <span class="kw3">value</span><span class="sy0">=</span><span class="st0">&#8216;transparent&#8217;</span>&gt;</span><br />
&nbsp; &nbsp;<span class="sc2">&lt;<a href="http://december.com/html/4/element/param.html"><span class="kw2">param</span></a> <span class="kw3">name</span><span class="sy0">=</span><span class="st0">&#8216;allowScriptAccess&#8217;</span> <span class="kw3">value</span><span class="sy0">=</span><span class="st0">&#8216;always&#8217;</span>&gt;</span><br />
&nbsp;<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/object.html"><span class="kw2">object</span></a>&gt;</span></div>
</div>
<p>Notice that by just adding the &#8216;wmode&#8217; and setting it as &#8216;transparent&#8217; does everything for you!</p>
]]></content:encoded>
			<wfw:commentRss>http://hsmoore.com/blog/transparent-swf-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

