<?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"
	>

<channel>
	<title>Andrew Sellick &#187; Flash Links</title>
	<atom:link href="http://www.andrewsellick.com/category/flash/feed" rel="self" type="application/rss+xml" />
	<link>http://www.andrewsellick.com</link>
	<description>andrewsellick.com</description>
	<pubDate>Thu, 21 Aug 2008 14:58:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Flash Tutorials</title>
		<link>http://www.andrewsellick.com/72/flash-tutorials</link>
		<comments>http://www.andrewsellick.com/72/flash-tutorials#comments</comments>
		<pubDate>Wed, 10 Oct 2007 17:22:19 +0000</pubDate>
		<dc:creator>andy</dc:creator>
		
		<category><![CDATA[Flash Links]]></category>

		<guid isPermaLink="false">http://www.andrewsellick.com/72/flash-tutorials</guid>
		<description><![CDATA[I have recently been looking for some good flash tutorials to help me build a 3D Flash Carousel and came across a site called GOTOANDLEARN.COM.&#160; This site provides some awesome video tutorials from 3D Carousels to preloading external SWF files.
I really recommend this site so check it out.
]]></description>
			<content:encoded><![CDATA[<p>I have recently been looking for some good flash tutorials to help me build a 3D Flash Carousel and came across a site called <a target="_blank" href="http://www.gotoandlearn.com/">GOTOANDLEARN.COM</a>.&nbsp; This site provides some awesome video tutorials from 3D Carousels to preloading external SWF files.</p>
<p>I really recommend this site so check it out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewsellick.com/72/flash-tutorials/feed</wfw:commentRss>
		</item>
		<item>
		<title>Masking a Flash Movie in HTML using a DIV</title>
		<link>http://www.andrewsellick.com/46/masking-a-flash-movie-in-html-using-a-div</link>
		<comments>http://www.andrewsellick.com/46/masking-a-flash-movie-in-html-using-a-div#comments</comments>
		<pubDate>Wed, 20 Jun 2007 12:54:56 +0000</pubDate>
		<dc:creator>andy</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Flash Links]]></category>

		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.andrewsellick.com/46/masking-a-flash-movie-in-html-using-a-div</guid>
		<description><![CDATA[This is not something that is required in day to day development, but nether the less is definitely handy to know.
Due to the nature of embedded flash it does not seem possible to &#8220;mask&#8221; it using an overflow hidden on a containing DIV.  This however is not the case.
By simply adding the following parameters [...]]]></description>
			<content:encoded><![CDATA[<p>This is not something that is required in day to day development, but nether the less is definitely handy to know.</p>
<p>Due to the nature of embedded flash it does not seem possible to &ldquo;mask&rdquo; it using an overflow hidden on a containing DIV.  This however is not the case.</p>
<p>By simply adding the following parameters a flash movie can be masked:</p>
<div class="code"> &lt;param name=&quot;wmode&quot; value=&quot;transparent&quot; /&gt;</p>
<p>&lt;embed src=&quot;andrewsellick.swf&quot; quality=&quot;high&quot; wmode=&quot;transparent&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;550&quot; height=&quot;150&quot;&gt;&lt;/embed&gt;
</div>
<p>The wmode parameters bring the flash movie back into the flow of the document and therefore allow it to be treated as if it were for example an image.<br />
<br />
The complete code I have used in the example is as follows:</p>
<h3>code</h3>
<h4>css</h4>
<p></p>
<div class="code"> #flash-mask{<br />
width:30%;<br />
overflow:hidden;<br />
padding:10px 0px;<br />
border:1px solid #cccccc;<br />
}
</div>
<p>The CSS as shown above is very simple and sets a width on a containing DIV to 30% of the page width as well as having an overflow set to hidden.  This will simply demonstrate the effect clearly.</p>
<h4>html</h4>
<div class="code"> &lt;div id=&quot;flash-mask&quot;&gt;<br />
&lt;object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0&quot; width=&quot;550&quot; height=&quot;150&quot;&gt;<br />
&lt;param name=&quot;movie&quot; value=&quot;andrewsellick.swf&quot; /&gt;<br />
&lt;param name=&quot;quality&quot; value=&quot;high&quot; /&gt;<br />
&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot; /&gt; <br />
&lt;embed src=&quot;andrewsellick.swf&quot; quality=&quot;high&quot; wmode=&quot;transparent&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; type=&quot;application/x-shockwave-flash&quot; width=&quot;550&quot; height=&quot;150&quot;&gt;&lt;/embed&gt;<br />
&lt;/object&gt;<br />
&lt;/div&gt;
</div>
<p>As can be seen above there isnothing special here.  Simply a containing DIV with a flash movie embeded and of course the parameters set.<br />
</p>
<h3>example</h3>
<p>Please have a look at the <a target="_blank" href="http://www.andrewsellick.com/examples/flash-mask/">Masking a Flash Movie in HTML using a DIV example.</a></p>
<h3>download</h3>
<p>Feel free to try it out yourself with the <a target="_blank" href="http://www.andrewsellick.com/examples/flash-mask/flash-mask.rar">Masking a Flash Movie in HTML using a DIV download.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewsellick.com/46/masking-a-flash-movie-in-html-using-a-div/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.339 seconds -->
