<?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>It's Called Web Design &#187; Flash</title>
	<atom:link href="http://itscalledwebdesign.com/tag/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://itscalledwebdesign.com</link>
	<description>Web 2.0 is so 2004. . . .</description>
	<lastBuildDate>Fri, 27 Jan 2012 16:59:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Flash button click-to URL</title>
		<link>http://itscalledwebdesign.com/tutorials/flash/flash-button-click-to-url/</link>
		<comments>http://itscalledwebdesign.com/tutorials/flash/flash-button-click-to-url/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 16:57:24 +0000</pubDate>
		<dc:creator>eckert</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=555</guid>
		<description><![CDATA[Maybe if I did Flash stuff more often, I wouldn&#8217;t always forget this. If you have a button in flash that you want to click to a web URL, simply right click the object and click &#8220;convert to symbol&#8221;. Choose button and name it if you&#8217;re so inclined. Next, with your button selected, go to [...]]]></description>
			<content:encoded><![CDATA[<p>Maybe if I did Flash stuff more often, I wouldn&#8217;t always forget this.<br />
<span id="more-555"></span><br />
If you have a button in flash that you want to click to a web URL, simply right click the object and click &#8220;convert to symbol&#8221;.  Choose button and name it if you&#8217;re so inclined.</p>
<p>Next, with your button selected, go to the top nav bar and highlight &#8220;Window&#8221; then select &#8220;Behaviors&#8221;.</p>
<p>Select &#8220;+&#8221; and then &#8220;Web&#8221; &#8211; &#8220;Go to Webpage&#8221;.</p>
<p>Type in the URL and set your Open in command.</p>
<p>Click OK and you are set.</p>
]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/flash/flash-button-click-to-url/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CSS animated hovers</title>
		<link>http://itscalledwebdesign.com/tutorials/css-animated-hovers/</link>
		<comments>http://itscalledwebdesign.com/tutorials/css-animated-hovers/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 23:35:05 +0000</pubDate>
		<dc:creator>eckert</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[hovers]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=456</guid>
		<description><![CDATA[CSS hovers, animated, no client side applications required. Too good to be true? I was looking for a way to do animated hovers, without having to use flash or javascript. Not that there is anything wrong with these, but anytime I can avoid hoping that someone will have the proper apps installed within their browser, [...]]]></description>
			<content:encoded><![CDATA[<p>CSS hovers, animated, no client side applications required.  Too good to be true?<br />
<span id="more-456"></span><br />
I was looking for a way to do animated hovers, without having to use flash or javascript.  Not that there is anything wrong with these, but anytime I can avoid hoping that someone will have the proper apps installed within their browser, I prefer to take that route.</p>
<p>So how do I do it?</p>
<p>Simple CSS and animated gifs.</p>
<p>First, make an animated gif the size of you nav button:</p>
<p>Next, a little CSS:</p>
<pre>#nav {
    height: 35px;
    width: 500px;
}

div.button {
    float: left;
    width: 100px;
    height: 35px;
    margin: 0 3px 0 0;
    background: #fff;
    border: 1px solid #000;
}

div.button a {
    display: block;
    margin: 0;
    padding:0;
    width:100%;
    height:100%;
    overflow:hidden;
    font: bold 13px Georgia, serif;
    color:#039;
    text-decoration: none;
    background: #fff;
}

div.button span {
    display: block;
    margin:0;
    padding: 9px 0 0 0;
    text-align: center;

}

div.button a:hover {
    background: url( 'http://itscalledwebdesign.com/files/gif_hover/bg03.gif' ) top center no-repeat;
    color: yellow;
}</pre>
<p>Next, the following div is placed:</p>
<pre>&lt;div id="nav"&gt;
    &lt;div class="button"&gt;&lt;a href="#"&gt;&lt;span&gt;Nav 1&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;div class="button"&gt;&lt;a href="#"&gt;&lt;span&gt;Nav 2&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
    &lt;div class="button"&gt;&lt;a href="#"&gt;&lt;span&gt;Nav 3&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;</pre>
<p>You are pretty much just making a div and placing the animated gif as the image for the hover.  In this example, the &#8220;a&#8221; simply has a white background.</p>
<p><a href="http://itscalledwebdesign.com/files/gif_hover/">CLICK HERE</a> to see how it looks, it&#8217;s the &#8220;Fast&#8221; example.</p>
<p>View the CSS and source of that example page to see that the other examples are set up using the same code.  You just need to use different animated GIFs as the hover image.</p>
<p>One thing you need to think about is the possibility that animations are turned off on the users computer.  The only problem this might cause will be if you have your hovered text turn into the same color as the original background.  That would then cause the text to disappear.</p>
<p>I would suggest trying it with the animation turned on and off just to see what it would look like.</p>
<p>So there you have it.  Simple, quick CSS animated hovers.</p>
]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/css-animated-hovers/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>XML driven FLV Player</title>
		<link>http://itscalledwebdesign.com/tutorials/xml-driven-flv-player/</link>
		<comments>http://itscalledwebdesign.com/tutorials/xml-driven-flv-player/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 15:12:37 +0000</pubDate>
		<dc:creator>eckert</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[commerical]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[playlist]]></category>
		<category><![CDATA[swf]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=20</guid>
		<description><![CDATA[You may have checked out THIS FIX to getting an FLV on your site, but now you want to pull data from an XML file.  Why would you want to do this?  Perhaps you want to add pre- or post-roll commercials with your video.  Maybe you want more than one video to play. Remember to [...]]]></description>
			<content:encoded><![CDATA[<p>You may have checked out <a href="http://itscalledwebdesign.com/?p=18">THIS FIX</a> to getting an FLV on your site, but now you want to pull data from an XML file.  Why would you want to do this?  Perhaps you want to add pre- or post-roll commercials with your video.  Maybe you want more than one video to play.<br />
<span id="more-20"></span></p>
<p>Remember to get the <a title="FLV Player" href="http://itscalledwebdesign.com/files/flvplayer.swf">flvplayer.swf</a> first.</p>
<p>Here&#8217;s the embed code -</p>
<pre id="line149">&lt;<span class="start-tag">embed</span><span class="attribute-name"> src</span>=<span class="attribute-value">"http://yourdomain.com/flvplayer.swf" </span><span class="attribute-name">width</span>=<span class="attribute-value">"480" </span><span class="attribute-name">height</span>=<span class="attribute-value">"360" </span><span class="attribute-name">allowscriptaccess</span>=<span class="attribute-value">"always" </span><span class="attribute-name">allowfullscreen</span>=<span class="attribute-value">"true" </span><span class="attribute-name">flashvars</span>=<span class="attribute-value">"height=360&amp;width=480&amp;file=http://yourdomain.com/yourplaylist.xml&amp;displaywidth=480&amp;autostart=false&amp;shuffle=false&amp;playlist=false&amp;scroll=true" </span><span class="error"><span class="attribute-name">/</span></span>&gt;</pre>
<p>Once again, you can modify any of the variables (height, width, autostart).  I have the display set so that it will hide the playlist.</p>
<p>Now for the xml playlist, you need to have your XML file and your FLV&#8217;s in the same folder.  The XML needs to be formatted like this -</p>
<pre>
&lt;?xml version='1.0' encoding='UTF-8'?&gt;
&lt;playlist version='1' xmlns='http://xspf.org/ns/0/'&gt;
&lt;trackList&gt;
&lt;track&gt;
&lt;location&gt;http://yourdomain.com/folder/video1.flv&lt;/location&gt;
&lt;/track&gt;
&lt;track&gt;
&lt;location&gt;http://yourdomain.com/folder/video2.flv&lt;/location&gt;
&lt;/track&gt;
&lt;track&gt;
&lt;location&gt;http://yourdomain.com/folder/video3.flv&lt;/location&gt;
&lt;/track&gt;
&lt;/trackList&gt;
&lt;/playlist&gt;
</pre>
<p>You can have as many or as few &#8220;tracks&#8221; as you&#8217;d like.  Just modify the XML to reflect that.</p>
]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/xml-driven-flv-player/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Flash embed</title>
		<link>http://itscalledwebdesign.com/tutorials/flash-embed/</link>
		<comments>http://itscalledwebdesign.com/tutorials/flash-embed/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 15:00:44 +0000</pubDate>
		<dc:creator>eckert</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[swf]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=18</guid>
		<description><![CDATA[You want a flash video on your website, and you want it there easily?  Look no further. You will need to put the following swf somewhere on your server &#8211; flvplayer.swf Then use the following code - &#60;embed src="http://yourdomain.com/flvplayer.swf" width="480" height="360" allowscriptaccess="always" allowfullscreen="true" flashvars="height=360&#38;width=480&#38;file=http://yourdomain.com/video.flv&#38;displaywidth=480&#38;autostart=false&#38;shuffle=false&#38;playlist=false&#38;scroll=true" /&#62; You will want to change the location of the swf [...]]]></description>
			<content:encoded><![CDATA[<p>You want a flash video on your website, and you want it there easily?  Look no further.<br />
<span id="more-18"></span></p>
<p>You will need to put the following swf somewhere on your server &#8211; <a title="FLV Player" href="http://itscalledwebdesign.com/files/flvplayer.swf">flvplayer.swf</a></p>
<p>Then use the following code -</p>
<pre id="line149">&lt;<span class="start-tag">embed</span><span class="attribute-name"> src</span>=<span class="attribute-value">"http://yourdomain.com/flvplayer.swf" </span><span class="attribute-name">width</span>=<span class="attribute-value">"480" </span><span class="attribute-name">height</span>=<span class="attribute-value">"360" </span><span class="attribute-name">allowscriptaccess</span>=<span class="attribute-value">"always" </span><span class="attribute-name">allowfullscreen</span>=<span class="attribute-value">"true" </span><span class="attribute-name">flashvars</span>=<span class="attribute-value">"height=360&amp;width=480&amp;file=http://yourdomain.com/video.flv&amp;displaywidth=480&amp;autostart=false&amp;shuffle=false&amp;playlist=false&amp;scroll=true" </span><span class="error"><span class="attribute-name">/</span></span>&gt;</pre>
<p>You will want to change the location of the swf and the filename and location of your flv.  The width and height can be modified to fit with whatever size flv you are playing.  If you do change these, make sure you change all of the heights and widths accordingly.</p>
<p>The other listed variables allow you to change things like autostart just by switching between &#8220;true&#8221; and &#8220;false&#8221;.</p>
<p>If you want to have more than one video to play in order, check this tutorial out -<br />
<a href="http://itscalledwebdesign.com/?p=20">XML Driven FLV Player</a></p>
]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/flash-embed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

