<?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>Flash Speaks Actionscript &#187; XML</title>
	<atom:link href="http://flashspeaksactionscript.com/tag/xml/feed/" rel="self" type="application/rss+xml" />
	<link>http://flashspeaksactionscript.com</link>
	<description>Learn and Speak Actionscript</description>
	<lastBuildDate>Sat, 28 Jan 2012 03:11:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Loading XML Data Using AS3</title>
		<link>http://flashspeaksactionscript.com/loading-xml-data-using-as3/</link>
		<comments>http://flashspeaksactionscript.com/loading-xml-data-using-as3/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 21:00:59 +0000</pubDate>
		<dc:creator>Angel Romero</dc:creator>
				<category><![CDATA[AS2 to AS3]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://flashspeaksactionscript.com/?p=3245</guid>
		<description><![CDATA[Thanks to the Adobe Gods for making the lives of so many Flash developers much less complicated when dealing with XML Data. XML and AS2 just did not get along very well.

In AS3, the XML libraries have been completely overhauled. These new changes provide a much more seamless XML integration that is based on the web standards of E4X.]]></description>
			<content:encoded><![CDATA[<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fflashspeaksactionscript.com%252Floading-xml-data-using-as3%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Loading%20XML%20Data%20Using%20AS3%20%23AS2%20to%20AS3%20%23Beginner%20%23XML%22%20%7D);"></div>
<p>Thanks to the Adobe Gods for making the lives of so many Flash developers much less complicated when dealing with XML Data. XML and AS2 just did not get along very well. It was one of those situations where there was a love/hate relationship.</p>
<p>Love was there when you&#8217;ve hacked yourself an impressive solution that simple works well, but that hate returns when it was time to change the XML structure. Going back and rerouting the paths to the correct XML nodes was just painful.</p>
<p>It&#8217;s funny because I did not foresee a brighter day for dealing with Flash and XML data. Those brighter days have now finally come with the newly added XML classes that will basically do all the work for you.</p>
<p>The XML libraries have been completely overhauled in AS3. These new changes provide a much more seamless XML integration that is based on the web standards of E4X.</p>
<h2>What is E4X?</h2>
<p>E4X (ECMA for XML) is the current World Wide Web Consortium standard for reading and writing XML documents, and greatly reduces the amount of code and hoop-jumping required to communicate with XML. It allows you to treat XML objects like any other object with familiar dot syntax, and provides additional shortcuts for traversing XML trees.</p>
<p>By providing the support for E4X, the amount of code and maneuvering in and out of XML nodes is greatly reduced and easier to understand.</p>
<p>In the examples below, I will first demonstrate the AS2 integration of loading XML data followed by the AS3 comparison.</p>
<h2>Loading XML data using AS2</h2>
<p>&nbsp;</p>
<pre class="brush: as3; title: ; notranslate">
//Load XML Data
function loadXML(loaded) {
	if (loaded) {
		var xmlNode=this.firstChild;
		var total:Number=xmlNode.childNodes.length;
		//Creating the arrays needed for storing off the XML data
		var bookInfo:Array=new Array(total);
		var isbnNum:Array=new Array(total);
		var subNum:Array=new Array(total);
		for (var i:Number=0; i&amp;lt;total; i++) {
			//Storing off the ISBN values into an array
			isbnNum[i]=xmlNode.childNodes[i].attributes.isbn;
			//Storing off each parent's(book) children count
			subNum[i]=xmlNode.childNodes[i].childNodes.length;
			bookInfo[i]=new Array(subNum[i]);
			trace(&amp;quot;ISBN = &amp;quot;+isbnNum[i]);
			trace(&amp;quot;Book Info:&amp;quot;);
			for (var j:Number=0; j&amp;lt;subNum[i]; j++) {
				//Store the book info of all the books into a 2D Array
				//Thie is the path to the desired xml nodes
				bookInfo[i][j]=xmlNode.childNodes[i].childNodes[j].firstChild.nodeValue;
				trace(bookInfo[i][j]);
			}
		}
	} else {
		trace(&amp;quot;Error loading XML&amp;quot;);
	}
}
//Required syntax
xmlData=new XML  ;
xmlData.ignoreWhite=true;
xmlData.onLoad=loadXML;
xmlData.load(&amp;quot;book-list.xml&amp;quot;);
stop();
</pre>
<p>&nbsp;</p>
<h2>Loading XML data using AS3</h2>
<p>&nbsp;</p>
<pre class="brush: as3; title: ; notranslate">
var xmlLoader:URLLoader=new URLLoader  ;
var xmlData:XML=new XML  ;
//Adding an event listener to notify when loading is completed
xmlLoader.addEventListener(Event.COMPLETE,LoadXML);
//Load the XML file
xmlLoader.load(new URLRequest(&amp;quot;book-list.xml&amp;quot;));

function LoadXML(e:Event):void {
	xmlData=new XML(e.target.data);
	ParseBooks(xmlData);
}

function ParseBooks(bookInput:XML):void {
	//Creating an xml list that will store the book info
	var books:XMLList=bookInput.book.children();
	//Creating a xml list that will store the book's ISBN number
	var bookAttributes:XMLList=bookInput.book.attributes();
	//Extract the data from the populated XML lists
	for (var j:int=0; j&amp;lt;bookAttributes.length(); j++) {
		var bookISBNNum:XML=bookAttributes[i];
		trace(&amp;quot;ISBN = &amp;quot;+bookISBNNum);
	}
	for (var i:int=0; i&amp;lt;books.length(); i++) {
		var bookInfo:XML=books[i];
		trace(bookInfo);
	}
}
</pre>
<p>&nbsp;</p>
<h2>What&#8217;s the difference?</h2>
<h3>The Use of XML Lists</h3>
<p>A XML List is a list use to store specific XML nodes or attributes. The way I see it XML Lists are basically arrays formatted for dealing with XML data. This eliminates the need of creating all multiple arrays to store your data for further use &#8211; the XML List will do it all for you. If we wanted to, we can save off the an individual list for the author and book title by simply creating an XML List and filtering the specific node data. See code below.</p>
<h3>Returning any or all of the XML data</h3>
<p>Filtering and storing off any or all XML data becomes a more natural process.<br />
<!-- google_ad_section_start(weight=ignore) --></p>
<pre class="brush: as3; title: ; notranslate">
//This xml list stores all of each book's data
var bookChildren:XMLList = bookInput.Book.children();
//This xml list will only store the author's info
var authorList:XMLList=bookInput.book.author;
//This xml list will only store the title's info
var titleList:XMLList=bookInput.book.title;
</pre>
<p>&nbsp;</p>
<h3>No need to define ignoreWhite to true</h3>
<p>WithinAS3 there is not a need to define the ignoreWhite state to true. By default this is automatically set to true. Makes sense right!</p>
<p>Overall, you can see that loading XML data into Flash is as seamless as can be. No more headaches on trying to get your XML file to work for you. There&#8217;s more to the new XML classes than what you see on this page and I plan to touch on more of it in the next few days. If you are in need of additional resources, check out the ones below.</p>
<h2>Additional Resources:</h2>
<ul>
<li><a title="Using XML in Flash CS3/AS3" href="http://www.kirupa.com/developer/flashcs3/using_xml_as3_pg1.htm" target="_blank">Using XML in Flash CS3/AS3</a></li>
<li><a title="AS3 E4X Rundown" href="http://dispatchevent.org/roger/as3-e4x-rundown/" target="_blank">AS3 E4X Rundown</a></li>
<li><a title="ActionScript 3 XML Basics" href="http://www.gotoandlearn.com/play.php?id=64" target="_blank">ActionScript 3 XML Basics</a></li>
</ul>
<h3><a title="Download Source Files" href="http://flashspeaksactionscript.com/files/loading-xml-as3/loading-xml-as3.zip" target="_blank">Download Source</a></h3>
<p><em>I</em><em> hope this helps in your migration over into  AS3.  If there is something in particular you want to add or see with the Moving From AS2 to AS3 series, feel free to contact me via the <a title="Contact Us" href="../contact/" target="_self">contact page</a>. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://flashspeaksactionscript.com/loading-xml-data-using-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ImageViewer3D: An Image Gallery Using Away3D And Flash</title>
		<link>http://flashspeaksactionscript.com/imageviewer3d-an-image-gallery-using-away3d-and-flash/</link>
		<comments>http://flashspeaksactionscript.com/imageviewer3d-an-image-gallery-using-away3d-and-flash/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 16:20:27 +0000</pubDate>
		<dc:creator>Angel Romero</dc:creator>
				<category><![CDATA[Flash Components]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Away3D]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Image Gallery]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://flashspeaksactionscript.com/?p=1664</guid>
		<description><![CDATA[<a title="More info on ImageViewer3D" href="http://blog.arnomanders.nl/index.php/archives/imageviewer3d-final-release/">ImageViewer3D</a> is an image viewer with a little hint of the <a title="A Flickr Online Picture Gallery" href="http://flashspeaksactionscript.com/a-flickr-online-picture-gallery-tiltviewer/">Tiltviewer</a>, a Flickr image gallery <a href="http://www.airtightinteractive.com/">created by AirTightInteractive</a>.  ImageViewer3D has been created by Arno Manders using Away3D, Tweener, and Adobe Flash.]]></description>
			<content:encoded><![CDATA[<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fflashspeaksactionscript.com%252Fimageviewer3d-an-image-gallery-using-away3d-and-flash%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22ImageViewer3D%3A%20An%20Image%20Gallery%20Using%20Away3D%20And%20Flash%20%233D%20%23Away3D%20%23Flickr%20%23Image%20Gallery%20%23XML%22%20%7D);"></div>
<h3>What is ImageViewer3D?</h3>
<p><a title="More info on ImageViewer3D" href="http://blog.arnomanders.nl/index.php/archives/imageviewer3d-final-release/">ImageViewer3D</a> is an image viewer with a little hint of the <a title="A Flickr Online Picture Gallery" href="http://flashspeaksactionscript.com/a-flickr-online-picture-gallery-tiltviewer/">Tiltviewer</a>, a Flickr image gallery <a href="http://www.airtightinteractive.com/">created by AirTightInteractive</a>.  ImageViewer3D has been created by Arno Manders using Away3D, Tweener, and Adobe Flash.  The interactivity and feel for this image viewer is really eye-popping.  Its feature set is limited, however, being that this Flash component is free; I&#8217;d say it&#8217;s pretty impressive.</p>
<h3>Features to be expected of ImageViewer3D:</h3>
<ul>
<li>Slideshow option</li>
<li>Flickr integration &amp; search</li>
<li>XML picture load</li>
<li>Multipage option</li>
</ul>
<h3>Additional Resources:</h3>
<div>
<ul>
<li>Download <a title="simple ImageViewer3D " href="http://www.arnomanders.nl/blog/upload/imageviewer3dfinal/simple/imageviewer3d-simple-final.zip">simple ImageViewer3D</a></li>
<li>Download the <a href="http://www.arnomanders.nl/blog/upload/imageviewer3dfinal/component/imageviewer3d-final-component.zip">component</a></li>
<li><a href="http://www.arnomanders.nl/blog/upload/imageviewer3dfinal/simple/imageviewer3d.swf">Preview this file</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://flashspeaksactionscript.com/imageviewer3d-an-image-gallery-using-away3d-and-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IgalleryX: A Photo Stack Gallery Using Papervision3D</title>
		<link>http://flashspeaksactionscript.com/igalleryx-a-photo-stack-gallery-using-papervision3d/</link>
		<comments>http://flashspeaksactionscript.com/igalleryx-a-photo-stack-gallery-using-papervision3d/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 15:00:10 +0000</pubDate>
		<dc:creator>Angel Romero</dc:creator>
				<category><![CDATA[Flash Components]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Flashden]]></category>
		<category><![CDATA[Image Gallery]]></category>
		<category><![CDATA[PaperVision3D]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://flashspeaksactionscript.com/?p=1571</guid>
		<description><![CDATA[Coverflow and Papervision 3D hook up to create <a title="A Photo Stack Gallery" href="http://flashden.net/item/igalleryx-photo-stack-gallery-v2/9069?ref=solo1artist">IgalleryX</a>.  IgalleryX is a gallery that displays a stack of multiple photos, swfs, or videos with a reflection and perspective effect.]]></description>
			<content:encoded><![CDATA[<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fflashspeaksactionscript.com%252Figalleryx-a-photo-stack-gallery-using-papervision3d%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22IgalleryX%3A%20A%20Photo%20Stack%20Gallery%20Using%20Papervision3D%20%233D%20%23Flashden%20%23Image%20Gallery%20%23PaperVision3D%20%23XML%22%20%7D);"></div>
<p><img class="alignnone size-full wp-image-1574" title="igalleryx header" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/08/igalleryx_header.png" alt="IgalleryX Header" width="500" height="180" /></p>
<p>Coverflow and Papervision3D hook up to create IgalleryX.  IgalleryX is a gallery that displays a stack of multiple photos, swfs, or videos with a reflection and perspective effect.  All photos can be accessed by a skinnable scrollbar, mouse click or flipping by mouse wheel.  Not only is this XML driven menu very robust, but with the integration of Papervison3D  it is also pretty fast.</p>
<h3>Features to be expected of IgalleryX:</h3>
<div id="attachment_1575" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-1575" title="igalleryx feature #1" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/08/igalleryx-feature-1.png" alt="Extended Content Viewing With Desciption" width="500" height="180" />
<p class="wp-caption-text">Extended Content Viewing With Desciption</p>
</div>
<div id="attachment_1576" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-1576" title="igalleryx feature #2" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/08/igalleryx-feature-2.png" alt="Skinnable Scollbar" width="500" height="140" />
<p class="wp-caption-text">Skinnable Scollbar</p>
</div>
<div id="attachment_1573" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-1573" title="igalleryx feature 3" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/08/igalleryx-feature-3.png" alt="Support for Video, Images, and SWF Files" width="500" height="180" />
<p class="wp-caption-text">Support for Video, Images, and SWF Files</p>
</div>
<p><strong>Additional Features: </strong></p>
<ul>
<li>Fullscreen Support</li>
<li>CSS + XML Driven</li>
<li>Customize Reflection with 7 Parameters</li>
<li>Many more&#8230;</li>
</ul>
<h3>Additional Resources:</h3>
<ul>
<li>Preview this file</li>
<li>More components from creator</li>
<li><a title="Download Papervision3D" href="http://code.google.com/p/papervision3d/downloads/list">Download Papervision3D</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://flashspeaksactionscript.com/igalleryx-a-photo-stack-gallery-using-papervision3d/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create A Dynamic XML Navigation Menu</title>
		<link>http://flashspeaksactionscript.com/create-a-dynamic-xml-navigation-menu/</link>
		<comments>http://flashspeaksactionscript.com/create-a-dynamic-xml-navigation-menu/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 20:00:15 +0000</pubDate>
		<dc:creator>Angel Romero</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://flashspeaksactionscript.com/?p=684</guid>
		<description><![CDATA[This <a href="http://www.flashframer.com/how-to-create-a-dynamic-xml-navigation-menu/">tutorial</a> by <a title="Creator of PhotoShuffle" href="http://payloadz.com/go/jump?id=461249&#38;a=solo1artist@gmail.com&#38;merch_id=70908&#38;aff_id=2651357">Flash Farmer</a> covers how to create a <a href="http://flashden.net/searches?term=dynamic+Flash+XML+navigation+menu&#38;type=files?ref=solo1artist">dynamic Flash XML navigation menu</a> using Actionscript 2.0 and XML. Each button has a roll over and roll out animation. Control the clickthroughs, button titles and the total number of buttons with the external XML file.]]></description>
			<content:encoded><![CDATA[<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fflashspeaksactionscript.com%252Fcreate-a-dynamic-xml-navigation-menu%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Create%20A%20Dynamic%20XML%20Navigation%20Menu%20%23AS2%20%23XML%22%20%7D);"></div>
<p>This <a href="http://www.flashframer.com/how-to-create-a-dynamic-xml-navigation-menu/">tutorial</a> by <a title="Creator of PhotoShuffle" href="http://www.flashframer.com">Flash Farmer</a> covers how to create a <a title="Dynamic Flash XML Navigation Menus" href="http://activeden.net/searches?ref=FlashSpeaks">dynamic Flash XML navigation menu</a> using Actionscript 2.0 and XML. Each button has a roll over and roll out animation. Control the clickthroughs, button titles and the total number of buttons with the external XML file. Once the Flash file is created you can update the menu just by editing the XML file.</p>
<p>This file consists of a nice structure and code is well commented.  Also, files to be downloaded comes along with <a href="http://www.flashframer.com/wp-content/uploads/ff_navigation_menu_1.zip">full offline documentation</a>.</p>
<p><strong>Example of final product:</strong></p>
<table border="0">
<tbody>
<tr>
<td align="center">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_FF_Navigation_Menu_1_1308011671"
			class="flashmovie"
			width="120"
			height="250">
	<param name="movie" value="http://flashspeaksactionscript.com/files/dynamic_menu/FF_Navigation_Menu_1.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://flashspeaksactionscript.com/files/dynamic_menu/FF_Navigation_Menu_1.swf"
			name="fm_FF_Navigation_Menu_1_1308011671"
			width="120"
			height="250">
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://flashspeaksactionscript.com/create-a-dynamic-xml-navigation-menu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Create a Sleek News Slider with AS3</title>
		<link>http://flashspeaksactionscript.com/create-a-sleek-news-slider-with-as3/</link>
		<comments>http://flashspeaksactionscript.com/create-a-sleek-news-slider-with-as3/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 18:00:35 +0000</pubDate>
		<dc:creator>Angel Romero</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Image Gallery]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://flashspeaksactionscript.com/?p=589</guid>
		<description><![CDATA[This is a very sleek <a href="http://www.faustocarrera.com.ar/v2/index.php/archives/698"><strong>Flash news slider</strong></a> using AS3 functionality and<strong> </strong>XML for fetching the data.  The main purpose of this Flash news slider is to show news on the front page with a title, an <strong>image</strong>, some descriptive text, and a link<strong> </strong>to the full article.]]></description>
			<content:encoded><![CDATA[<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fflashspeaksactionscript.com%252Fcreate-a-sleek-news-slider-with-as3%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Create%20a%20Sleek%20News%20Slider%20with%20AS3%20%23AS3%20%23Image%20Gallery%20%23XML%22%20%7D);"></div>
<h3>This is a very sleek <a href="http://www.faustocarrera.com.ar/v2/automated-news-slider-with-as3"><strong>Flash news slider</strong></a> using AS3 functionality and<strong> </strong>XML for fetching the data.</h3>
<p>The main purpose of this Flash news slider is to show news on the front page with a title, an <strong>image</strong>, some descriptive text, and a link<strong> </strong>to the full article.</p>
<p>Also, the content being loaded is <strong>html formatted</strong> which allows for flexible customizations.  You can find the steps for creating this <a href="http://www.faustocarrera.com.ar/v2/automated-news-slider-with-as3">Flash news slider</a> along with the source files.</p>
<h3>Other Available Resources:</h3>
<p>Via <a href="http://www.faustocarrera.com.ar/v2/automated-news-slider-with-as3">faustocarrera.com</a><strong><br />
<a href="http://works.faustocarrera.com.ar/news_slider/">Demo</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://flashspeaksactionscript.com/create-a-sleek-news-slider-with-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Stock of the Day: 35 Flash Navigation Menus</title>
		<link>http://flashspeaksactionscript.com/35-flash-navigation-menus/</link>
		<comments>http://flashspeaksactionscript.com/35-flash-navigation-menus/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 13:30:48 +0000</pubDate>
		<dc:creator>Angel Romero</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Roundups]]></category>
		<category><![CDATA[Navigation Menu]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://flashspeaksactionscript.com/?p=544</guid>
		<description><![CDATA[<p>Check out this creative list of 35 Flash Navigation Menus.</p>
]]></description>
			<content:encoded><![CDATA[<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fflashspeaksactionscript.com%252F35-flash-navigation-menus%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Flash%20Stock%20of%20the%20Day%3A%2035%20Flash%20Navigation%20Menus%20%23Navigation%20Menu%20%23XML%22%20%7D);"></div>
<p><a href="http://activeden.net/item/elastic-xml-menu/3035?ref=FlashSpeaks"><img style="border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu81.jpg" border="0" alt="menu8" width="500" height="200" /></a><br />
<a href="http://activeden.net/item/elastic-xml-menu/3035?ref=FlashSpeaks">Elastic XML Menu</a> created by <a href="http://activeden.net/user/Richardson?ref=FlashSpeaks">Richardson</a><a href="http://www.activeden.net/item/hmenu/11097?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu21.jpg" border="0" alt="menu2" width="500" height="200" /></a><br />
<a href="http://www.activeden.net/item/hmenu/11097?ref=FlashSpeaks">H-Menu</a> Created by <a href="http://www.activeden.net/user/djankey?ref=FlashSpeaks">djankey</a><a href="http://activeden.net/item/professional-floating-menu/12825?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu41.jpg" border="0" alt="vert_menu4" width="500" height="162" /></a><br />
<a href="http://activeden.net/item/professional-floating-menu/12825?ref=FlashSpeaks">Professional Floating Menu</a> created by <a href="http://activeden.net/user/gogh?ref=FlashSpeaks">gogh</a><a href="http://activeden.net/item/3d-xml-menu-studio-2/3007?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu71.jpg" border="0" alt="menu7" width="500" height="200" /></a><br />
<a href="http://activeden.net/item/3d-xml-menu-studio-2/3007?ref=FlashSpeaks">3D XML Menu Studio 2</a> created by <a href="http://activeden.net/user/digitalscience?ref=FlashSpeaks">digitalscience</a><a href="http://activeden.net/item/accordion-v2/4357?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu61.jpg" border="0" alt="vert_menu6" width="500" height="254" /></a><br />
<a href="http://activeden.net/item/accordion-v2/4357?ref=FlashSpeaks">Accordion v2</a> created by <a href="http://activeden.net/user/bobocel?ref=FlashSpeaks">bobocel</a><a href="http://activeden.net/item/dynamic-accordion-menu/1359?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu18.jpg" border="0" alt="vert_menu1" width="500" height="213" /></a><br />
<a href="http://activeden.net/item/dynamic-accordion-menu/1359?ref=FlashSpeaks">Dynamic Accordion Menu</a> created by <a href="http://activeden.net/user/digitalscience?ref=FlashSpeaks">digitalscience</a><a href="http://www.activeden.net/item/rotation-menu/280?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu71.jpg" border="0" alt="vert_menu7" width="500" height="223" /></a><br />
<a href="http://www.activeden.net/item/rotation-menu/280?ref=FlashSpeaks">Rotation Menu</a> created by <a href="http://www.activeden.net/user/Richardson?ref=FlashSpeaks">Richardson</a><a href="http://activeden.net/item/horizontalmenustudio-v10/3592?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu31.jpg" border="0" alt="menu3" width="500" height="219" /></a><br />
<a href="http://activeden.net/item/horizontalmenustudio-v10/3592?ref=FlashSpeaks">HorizontalMenuStudio v1.0</a> created by <a href="http://activeden.net/user/jurgenv?ref=FlashSpeaks">jurgenv</a><a href="http://activeden.net/item/elastic-xml-menu-vertical/3223?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu51.jpg" border="0" alt="vert_menu5" width="500" height="230" /></a><br />
<a href="http://activeden.net/item/elastic-xml-menu-vertical/3223?ref=FlashSpeaks">Elastic XML Menu Vertical</a> created by <a href="http://activeden.net/user/Richardson?ref=FlashSpeaks">Richardson</a><a href="http://activeden.net/item/mysectionedmenu-xml/5201?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu31.jpg" border="0" alt="vert_menu3" width="500" height="200" /></a><br />
<a href="http://activeden.net/item/mysectionedmenu-xml/5201?ref=FlashSpeaks">mySectionedMenu (xml)</a> created by <a href="http://activeden.net/user/encryptme?ref=FlashSpeaks">encryptme</a><a href="http://activeden.net/item/flash-arrow-menu-xml-driven-vertical/10403?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu91.jpg" border="0" alt="vert_menu9" width="500" height="223" /></a><br />
<a href="http://activeden.net/item/flash-arrow-menu-xml-driven-vertical/10403?ref=FlashSpeaks">FLASH ARROW MENU XML DRIVEN &#8211; Vertical</a> created by <a href="http://activeden.net/user/djroots?ref=FlashSpeaks">djroots</a><a href="http://www.activeden.net/item/item-selection-v7/3904?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu141.jpg" border="0" alt="menu14" width="500" height="184" /></a><br />
<a href="http://www.activeden.net/item/item-selection-v7/3904?ref=FlashSpeaks">Item Selection v7</a> created by <a href="http://activeden.net/user/bobocel?ref=FlashSpeaks">bobocel</a><a href="http://activeden.net/item/xml-team-members/4663?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu51.jpg" border="0" alt="menu5" width="500" height="229" /></a><br />
<a href="http://activeden.net/item/xml-team-members/4663?ref=FlashSpeaks">XML Team Members</a> created by <a href="http://activeden.net/user/digitalscience?ref=FlashSpeaks">digitalscience</a><a href="http://activeden.net/item/vmenu-2/6970?ref=FlashSpeaks"><img style="margin: 13px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu81.jpg" border="0" alt="vert_menu8" width="500" height="200" /></a><br />
<a href="http://activeden.net/item/vmenu-2/6970?ref=FlashSpeaks">V-Menu 2</a> created by <a href="http://activeden.net/user/djankey?ref=FlashSpeaks">djankey</a><a href="http://activeden.net/item/3d-box-menu/11?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu101.jpg" border="0" alt="vert_menu10" width="500" height="223" /></a><br />
<a href="http://activeden.net/item/3d-box-menu/11?ref=FlashSpeaks">3d Box Menu</a> created by <a href="http://activeden.net/user/collis?ref=FlashSpeaks">collis</a><a href="http://www.activeden.net/item/dynamic-proximity-menu/294?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu121.jpg" border="0" alt="menu12" width="500" height="200" /></a><br />
<a href="http://www.activeden.net/item/dynamic-proximity-menu/294?ref=FlashSpeaks">Dynamic Proximity Menu</a> created by <a href="http://www.activeden.net/user/Richardson?ref=FlashSpeaks">Richardson</a></p>
<p><a href="http://activeden.net/item/apple-like-menu/4609?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu171.jpg" border="0" alt="menu17" width="500" height="198" /></a><br />
<a href="http://activeden.net/item/apple-like-menu/4609?ref=FlashSpeaks">Apple like menu</a> created by <a href="http://activeden.net/user/luke?ref=FlashSpeaks">luke</a><a href="http://activeden.net/item/two-level-horizontal-xml-menu/2951?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu91.jpg" border="0" alt="menu9" width="500" height="178" /></a><br />
<a href="http://activeden.net/item/two-level-horizontal-xml-menu/2951?ref=FlashSpeaks">Two level Horizontal XML menu</a> created by <a href="http://activeden.net/user/Chuckanucka?ref=FlashSpeaks">Chuckanucka</a><a href="http://activeden.net/item/powerful-menu-xml-4-expanding-text-v/12118?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu151.jpg" border="0" alt="vert_menu15" width="500" height="200" /></a><br />
<a href="http://activeden.net/item/powerful-menu-xml-4-expanding-text-v/12118?ref=FlashSpeaks">Powerful Menu XML 4 &#8211; Expanding Text (V)</a> created by <a href="http://activeden.net/user/Random?ref=FlashSpeaks">Random</a><a href="http://activeden.net/item/vertical-multilevel-drop-down-menu/6776?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu161.jpg" border="0" alt="vert_menu16" width="500" height="200" /></a><br />
<a href="http://activeden.net/item/vertical-multilevel-drop-down-menu/6776?ref=FlashSpeaks">Vertical multilevel drop down menu</a> created by <a href="http://activeden.net/user/OXYLUS?ref=FlashSpeaks">OXYLUS</a><a href="http://activeden.net/item/mymacishmenu-verticle/4819?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu171.jpg" border="0" alt="vert_menu17" width="500" height="198" /></a><br />
<a href="http://activeden.net/item/mymacishmenu-verticle/4819?ref=FlashSpeaks">myMacishMenu &#8211; Verticle</a> created by <a href="http://activeden.net/user/encryptme?ref=FlashSpeaks">encryptme</a><a href="http://activeden.net/item/cool-image-folio-menu/10966?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu151.jpg" border="0" alt="menu15" width="500" height="212" /></a><br />
<a href="http://activeden.net/item/cool-image-folio-menu/10966?ref=FlashSpeaks">Cool Image Folio Menu</a> created by <a href="http://activeden.net/user/OXYLUS?ref=FlashSpeaks">OXYLUS</a><a href="http://activeden.net/item/tweened-menu/6529?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu19.jpg" border="0" alt="menu1" width="500" height="200" /></a><br />
<a href="http://activeden.net/item/tweened-menu/6529?ref=FlashSpeaks">Tweened Menu</a> created by <a href="http://activeden.net/user/djankey?ref=FlashSpeaks">djankey</a><a href="http://activeden.net/item/two-level-xml-accordion-menu/4659?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu21.jpg" border="0" alt="vert_menu2" width="499" height="214" /></a><br />
<a href="http://activeden.net/item/two-level-xml-accordion-menu/4659?ref=FlashSpeaks">Two Level XML Accordion Menu</a> created by <a href="http://activeden.net/user/digitalscience?ref=FlashSpeaks">digitalscience</a><a href="http://activeden.net/category/flash/menus-buttons?ref=FlashSpeaks%2Fmenus-buttons&amp;page=1?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu181.jpg" border="0" alt="menu18" width="500" height="199" /></a><br />
<a href="http://activeden.net/category/flash/menus-buttons?ref=FlashSpeaks%2Fmenus-buttons&amp;page=1?ref=FlashSpeaks">Fan / Circle Menu Navigation &#8211; XML Driven</a> created by <a href="http://activeden.net/user/Suicidesquirrel?ref=FlashSpeaks">Suicidesquirrel</a><a href="http://activeden.net/item/dynamic-xml-menu/5316?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu121.jpg" border="0" alt="vert_menu12" width="500" height="216" /></a><br />
<a href="http://activeden.net/item/dynamic-xml-menu/5316?ref=FlashSpeaks">Dynamic XML Menu</a> created by <a href="http://activeden.net/user/Betillo555?ref=FlashSpeaks">Betillo555</a><a href="http://activeden.net/item/scrolling-images-menu/2248?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu101.jpg" border="0" alt="menu10" width="500" height="200" /></a><br />
<a href="http://activeden.net/item/scrolling-images-menu/2248?ref=FlashSpeaks">Scrolling Images Menu</a> created by <a href="http://activeden.net/user/digitalscience?ref=FlashSpeaks">digitalscience</a><br />
<a href="http://activeden.net/user/KINGro83?ref=FlashSpeaks"></a><a href="http://activeden.net/item/twirling-button/69?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/vert-menu141.jpg" border="0" alt="vert_menu14" width="500" height="227" /></a><br />
<a href="http://activeden.net/item/twirling-button/69?ref=FlashSpeaks">Twirling Button</a> created by <a href="http://activeden.net/user/doLLie?ref=FlashSpeaks">doLLie</a><a href="http://activeden.net/item/horizontal-expand-xml-menu/4953?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu61.jpg" border="0" alt="menu6" width="500" height="167" /></a><br />
<a href="http://activeden.net/item/horizontal-expand-xml-menu/4953?ref=FlashSpeaks">Horizontal Expand XML Menu</a> created by <a href="http://activeden.net/user/Chuckanucka?ref=FlashSpeaks">Chuckanucka</a><a href="http://www.activeden.net/item/item-selection-v2/760?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu111.jpg" border="0" alt="menu11" width="500" height="182" /></a><br />
<a href="http://www.activeden.net/item/item-selection-v2/760?ref=FlashSpeaks">Item Selection v2</a> created by <a href="http://activeden.net/user/bobocel?ref=FlashSpeaks">bobocel</a><a href="http://activeden.net/item/horizontal-xml-image-menu-/3919?ref=FlashSpeaks"><img style="margin: 18px 3px 3px; border: 0px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/06/menu131.jpg" border="0" alt="menu13" width="500" height="199" /></a><br />
<a href="http://activeden.net/item/horizontal-xml-image-menu-/3919?ref=FlashSpeaks">Horizontal XML Image Menu</a> created by <a href="http://activeden.net/user/digitalscience?ref=FlashSpeaks">digitalscience</a></p>
]]></content:encoded>
			<wfw:commentRss>http://flashspeaksactionscript.com/35-flash-navigation-menus/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Flash Stock of the Day: Flash Countdown Timers</title>
		<link>http://flashspeaksactionscript.com/flash-stock-of-the-day-flash-countdown-timers/</link>
		<comments>http://flashspeaksactionscript.com/flash-stock-of-the-day-flash-countdown-timers/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 13:00:39 +0000</pubDate>
		<dc:creator>Angel Romero</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Roundups]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://flashspeaksactionscript.com/?p=2887</guid>
		<description><![CDATA[Here is a nice collection of Flash countdown timers. They range from XML driven to an old film countdown timer. I've noticed that there are many individuals looking for a solid Flash countdown timer, so here they are. Enjoy!]]></description>
			<content:encoded><![CDATA[<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fflashspeaksactionscript.com%252Fflash-stock-of-the-day-flash-countdown-timers%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Flash%20Stock%20of%20the%20Day%3A%20Flash%20Countdown%20Timers%20%23AS2%20%23AS3%20%23XML%22%20%7D);"></div>
<p>Here is a nice collection of <a href="http://activeden.net/searches?ref=FlashSpeaks">Flash countdown timers</a>. They range from XML driven to an old film countdown timer. I&#8217;ve noticed that there are many individuals looking for a solid Flash countdown timer, so here they are. Enjoy!</p>
<h2><a title="Countdown Timer by Flabell" href="http://www.flabell.com/flash/Countdown-Timer-202?referral=223" target="_blank">Countdown Timer</a> by <a title="Flash Components" href="http://www.flabell.com/?referral=223" target="_blank">Flabell</a></h2>
<p><a href="http://www.flabell.com/flash/Countdown-Timer-202?referral=223"><img class="alignnone size-full wp-image-4934" title="Countdown Timer" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/04/flabell-countdown-timer.png" alt="Countdown Timer by Flabell" width="500" height="278" /></a></p>
<h2><a title="Flip Countdown Timer by Flabell" href="http://www.flabell.com/flash-components/countdown?referral=223" target="_blank">Flip Countdown Timer</a> by <a title="Flash Components" href="http://www.flabell.com/?referral=223" target="_blank">Flabell</a></h2>
<p><a href="http://www.flabell.com/flash-components/countdown?referral=223"><img class="alignnone size-full wp-image-4935" title="Flip Countdown Timer" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/04/flabell-flip-countdow-timer.png" alt="Flip Countdown Timer by Flabell" width="500" height="264" /></a></p>
<h2><a title="Valentine's Day Countdown Timer" href="http://activeden.net/item/valentines-day-countdown/26090?ref=FlashSpeaks" target="_blank">Valentine&#8217;s Day Countdown Timer</a> by <a title="handmadesign Portfolio Page" href="http://activeden.net/user/handmadesign?ref=FlashSpeaks" target="_blank">handmadesign</a></h2>
<p><a title="Valentine's Day Countdown Timer" href="http://activeden.net/item/valentines-day-countdown/26090?ref=FlashSpeaks"><img class="alignnone size-full wp-image-2873" style="margin-bottom: 20px;" title="Valentine's Day Countdown Timer" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/04/valentines-day-countdown-timer.png" alt="Valentine's Day Countdown Timer" width="500" height="200" /></a></p>
<h2><a title="Flash Countdown Timer" href="http://flashspeaksactionscript.com/flash-countdown-timer-in-as3-using-a-class/">Simple Flash Countdown Timer</a> by <a title="Flash and ActionScript Blog" href="http://flashspeaksactionscript.com/">Angel Romero</a></h2>
<p><a href="http://flashspeaksactionscript.com/flash-countdown-timer-in-as3-using-a-class/"><img class="alignnone size-full wp-image-4930" title="Flash Countdown Timer" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/04/flashspeaks-simple-countdown-timer.png" alt="Creating a Flash Countdown Timer" width="500" height="279" /></a></p>
<h3><a title="Fifa World Cup 2010 Final" href="http://activeden.net/item/countdown-timer-fifa-world-cup-2010-final/15773?ref=FlashSpeaks">Countdown Timer &#8211; FIFA World Cup 2010 Fina</a>l By <a title="Pedrodonkey's Portfolio" href="http://activeden.net/user/pedrodonkey?ref=FlashSpeaks">pedrodonkey</a></h3>
<p><a title="FIFA World Cup 2010 Final Countdown Timer" href="http://activeden.net/item/countdown-timer-fifa-world-cup-2010-final/15773?ref=FlashSpeaks"><img class="alignnone size-full wp-image-2247" style="margin-bottom: 20px;" title="FIFA World Cup 2010 Final Countdown Timer" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/10/timer18.png" alt="FIFA World Cup 2010 Final Countdown Timer" width="500" height="250" /></a></p>
<h3><a title="Countdown Timer v2" href="http://activeden.net/item/countdown-timer-v2/19979?ref=FlashSpeaks">Countdown Timer v2</a> By <a title="Flashnos's Portfolio" href="http://activeden.net/user/flashnos?ref=FlashSpeaks">flashnos</a></h3>
<p><a title="Countdown Timer v2" href="http://activeden.net/item/countdown-timer-v2/19979?ref=FlashSpeaks"><img class="alignnone size-full wp-image-2248" style="margin-bottom: 20px;" title="Countdown Timer v2" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/10/timer17.png" alt="Countdown Timer v2" width="500" height="250" /></a></p>
<h3><a href="http://activeden.net/item/xml-countdown-with-universal-time-and-multiple-events/14887?ref=FlashSpeaks">XML Countdown With Universal Time and Multiple Events</a> By <a href="http://activeden.net/user/dxc381?ref=FlashSpeaks">dxc381</a></h3>
<p><a href="http://activeden.net/item/xml-countdown-with-universal-time-and-multiple-events/14887?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/08/timer16.jpg" alt="timer10" width="500" height="250" border="0" /></a></p>
<h3><a href="http://activeden.net/item/flash-analogue-countdown-clock/13036?ref=FlashSpeaks">Flash Analouge Countdown Clock</a> By <a href="http://activeden.net/user/biteMedia?ref=FlashSpeaks">biteMedia</a></h3>
<p><a href="http://activeden.net/item/flash-analogue-countdown-clock/13036?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/05/timer12.jpg" alt="timer10" width="500" height="250" border="0" /></a></p>
<h3><a href="http://activeden.net/item/xml-strongcountdownstrong-customizeable-to-the-millisecond/8054?ref=FlashSpeaks">XML Countdown Customizable to the Millisecond</a> By <a href="http://activeden.net/user/dxc381?ref=FlashSpeaks">dxc381</a></h3>
<p><a href="http://activeden.net/item/xml-strongcountdownstrong-customizeable-to-the-millisecond/8054?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/05/timer1.jpg" alt="timer1" width="500" height="250" border="0" /></a></p>
<h3><a href="http://activeden.net/item/strongcountdownstrong-timer-to-regionbased-eventsxml-driven-using-gmt/723?ref=FlashSpeaks">Countdown Timer to Region-Based Events(XML Driven using GMT)</a> By <a href="http://activeden.net/user/meerkatlookout?ref=FlashSpeaks">meerkatlookou</a></h3>
<p><a href="http://activeden.net/item/strongcountdownstrong-timer-to-regionbased-eventsxml-driven-using-gmt/723?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/05/timer2.jpg" alt="timer2" width="500" height="219" border="0" /></a></p>
<h3><a href="http://activeden.net/item/old-film-strongcountdownstrong/259?ref=FlashSpeaks">Old Film Countdown</a> By <a href="http://activeden.net/user/collis?ref=FlashSpeaks">collis</a></h3>
<p><a href="http://activeden.net/item/old-film-strongcountdownstrong/259?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/05/timer3.jpg" alt="timer3" width="500" height="241" border="0" /></a></p>
<h3><a href="http://activeden.net/item/final-strongcountdownstrong/1320?ref=FlashSpeaks">Final countdown</a> By <a href="http://activeden.net/user/samss100?ref=FlashSpeaks">samss100</a></h3>
<p><a href="http://activeden.net/item/final-strongcountdownstrong/1320?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/05/timer4.jpg" alt="timer4" width="500" height="245" border="0" /></a></p>
<h3><span style="text-decoration: underline;"><a href="http://activeden.net/item/game-strongcountdownstrong-timer-component/980?ref=FlashSpeaks">Game Countdown Timer Component</a> By <a href="http://activeden.net/user/RobertaD?ref=FlashSpeaks">RobertaD</a></span></h3>
<p><a href="http://activeden.net/item/game-strongcountdownstrong-timer-component/980?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/05/timer5.jpg" alt="timer5" width="500" height="226" border="0" /></a></p>
<h3><a href="http://activeden.net/item/digital-wow-strongclockstrong/1552?ref=FlashSpeaks">::Digital wow clock::</a> By <a href="http://activeden.net/user/samss100?ref=FlashSpeaks">samss100</a></h3>
<p><a href="http://activeden.net/item/digital-wow-strongclockstrong/1552?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/05/timer6.jpg" alt="timer6" width="500" height="236" border="0" /></a></p>
<h3><a href="http://activeden.net/item/grunge-strongcountdownstrong-timer/3339?ref=FlashSpeaks">Grunge Countdown Timer</a> By <a href="http://activeden.net/user/JackSparrow?ref=FlashSpeaks">JackSparrow</a></h3>
<p><a href="http://activeden.net/item/grunge-strongcountdownstrong-timer/3339?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/05/timer7.jpg" alt="timer7" width="500" height="249" border="0" /></a></p>
<h3><a href="http://activeden.net/item/date-and-time-strongcountdownstrong-timer-and-time-elapsed-and-remaining/11424?ref=FlashSpeaks">Date and Time, Countdown Timer, and Time Elapsed and Remaining</a> By <a href="http://activeden.net/user/scottexpo?ref=FlashSpeaks">scottexpo</a></h3>
<p><a href="http://activeden.net/item/date-and-time-strongcountdownstrong-timer-and-time-elapsed-and-remaining/11424?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/05/timer8.jpg" alt="timer8" width="500" height="247" border="0" /></a></p>
<h3><a href="http://activeden.net/item/strongcountdownstrong/6565?ref=FlashSpeaks">Strong Countdown</a> By <a href="http://activeden.net/user/Nemo?ref=FlashSpeaks">Nemo</a></h3>
<p><a href="http://activeden.net/item/strongcountdownstrong/6565?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/05/timer9.jpg" alt="timer9" width="500" height="250" border="0" /></a></p>
<h3><a href="http://activeden.net/item/strongcountdownstrong-before-new-years-day/5122?ref=FlashSpeaks">Countdown before New Year&#8217;s day</a> By <a href="http://activeden.net/user/fab-shamane?ref=FlashSpeaks">fab-shamane</a></h3>
<p><a href="http://activeden.net/item/strongcountdownstrong-before-new-years-day/5122?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/05/timer10.jpg" alt="timer10" width="500" height="250" border="0" /></a></p>
<h3><a href="http://activeden.net/item/digital-countdown-preloader/13067?ref=FlashSpeaks">Digital Countdown Preloader</a> By <a href="http://activeden.net/user/designesia?ref=FlashSpeaks">designesia</a></h3>
<p><a href="http://activeden.net/item/digital-countdown-preloader/13067?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/05/timer11.jpg" alt="timer10" width="500" height="250" border="0" /></a></p>
<h3><a href="http://activeden.net/item/strongcountdownstrong-clock/4928?ref=FlashSpeaks">Countdown Clock</a> By <a href="http://activeden.net/user/zainesarruke?ref=FlashSpeaks">zainesarruke</a></h3>
<p><a href="http://activeden.net/item/strongcountdownstrong-clock/4928?ref=FlashSpeaks"><img style="margin-bottom: 20px;" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/05/timer13.jpg" alt="timer10" width="500" height="250" border="0" /></a></p>
<h3><a href="http://activeden.net/item/3d-clock/14947?ref=FlashSpeaks" target="_self">3D Clock</a> by <a href="http://activeden.net/user/zizther?ref=FlashSpeaks">zizther</a></h3>
<p><a href="http://activeden.net/item/3d-clock/14947?ref=FlashSpeaks"><img class="alignnone size-full wp-image-731" style="margin-bottom: 20px;" title="3D timer" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/07/timer14.jpg" alt="3D timer" width="500" height="250" /></a></p>
<h3><a href="http://activeden.net/item/bubbles-clock/14937?ref=FlashSpeaks" target="_self">Bubbles Clock</a> by <a href="http://activeden.net/user/drfisher?ref=FlashSpeaks">drfisher</a></h3>
<p><a href="http://activeden.net/item/bubbles-clock/14937?ref=FlashSpeaks"><img class="alignnone size-full wp-image-730" style="margin-bottom: 20px;" title="Bubbles Clock" src="http://flashspeaksactionscript.com/wp-content/uploads/2008/07/timer15.jpg" alt="Bubbles Clock" width="500" height="250" /></a></p>
<p>[box type="note"] <strong>Further Reading:</strong> <a title="Creating a Flash Countdown Timer" href="http://flashspeaksactionscript.com/flash-countdown-timer-in-as3-using-a-class/">Create A Flash Countdown Timer in AS3 Using A Class</a>[/box]</p>
]]></content:encoded>
			<wfw:commentRss>http://flashspeaksactionscript.com/flash-stock-of-the-day-flash-countdown-timers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash-XML Music Player in AS2</title>
		<link>http://flashspeaksactionscript.com/flash-xml-music-player/</link>
		<comments>http://flashspeaksactionscript.com/flash-xml-music-player/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 16:20:36 +0000</pubDate>
		<dc:creator>Angel Romero</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[MP3 Player]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[XML + Flash]]></category>

		<guid isPermaLink="false">http://flashspeaksactionscript.com/flash-xml-music-player/</guid>
		<description><![CDATA[Craig Campbell just created a new Flash/XML music player. The design is loosely based on the old school iPod. The player is very easy to update using the supplied XML file that points directly to all you necessary files. For those of you hoping that this is built in AS3, sorry it is not. However, [...]]]></description>
			<content:encoded><![CDATA[<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fflashspeaksactionscript.com%252Fflash-xml-music-player%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Flash-XML%20Music%20Player%20in%20AS2%20%23AS2%20%23Flash%20%23MP3%20Player%20%23XML%20%23XML%20%2B%20Flash%22%20%7D);"></div>
<p><a title="Craig Campbell's Blog" href="http://schoolofflash.com/" target="_blank">Craig Campbell</a> just created a new <a title="Flash + XML" href="http://flashspeaksactionscript.com/tag/xml-flash/" target="_blank">Flash/XML</a> music player.  The design is loosely based on the old school iPod.  The player is very easy to update using the supplied XML file that points directly to all you necessary files.  For those of you hoping that this is built in AS3, sorry it is not.  However, it is still a nice music player.</p>
<p>Here is the Flash/XML music player created by <a title="Craig Campbell's Blog" href="http://schoolofflash.com/" target="_blank">Craig Campbell</a>.</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_jukebox_197015646"
			class="flashmovie"
			width="400"
			height="120">
	<param name="movie" value="http://www.angellromero.com/exampleSwfs/jukeBox_craigCampbell/jukebox.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.angellromero.com/exampleSwfs/jukeBox_craigCampbell/jukebox.swf"
			name="fm_jukebox_197015646"
			width="400"
			height="120">
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p><strong>Original source files</strong>:<br />
<a title="Download Source" href="http://schoolofflash.com/files/freebies/jukebox-flash8.zip" target="_blank">jukebox.zip</a></p>
<p><strong>Source</strong>: Craig Campbell&#8217;s Flash Blog</p>
]]></content:encoded>
			<wfw:commentRss>http://flashspeaksactionscript.com/flash-xml-music-player/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A Flickr Online Picture Gallery: TiltViewer</title>
		<link>http://flashspeaksactionscript.com/a-flickr-online-picture-gallery-tiltviewer/</link>
		<comments>http://flashspeaksactionscript.com/a-flickr-online-picture-gallery-tiltviewer/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 11:00:03 +0000</pubDate>
		<dc:creator>Angel Romero</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Image Gallery]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://flashspeaksactionscript.com/a-flickr-online-picture-gallery-tiltviewer/</guid>
		<description><![CDATA[The internet is clouded with many online picture galleries using Adobe Flash and the Flickr API. Some of these are even free and some you can get for a small price, however, many of these are very predictable, repetitive and don&#8217;t offer expandability like XML support. I came across this free, customizable 3D Flash image [...]]]></description>
			<content:encoded><![CDATA[<div class="topsy_widget_data topsy_theme_blue" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fflashspeaksactionscript.com%252Fa-flickr-online-picture-gallery-tiltviewer%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22A%20Flickr%20Online%20Picture%20Gallery%3A%20TiltViewer%20%23Flash%20%23Flickr%20%23Image%20Gallery%20%23Videos%20%23XML%22%20%7D);"></div>
<p><!-- google_ad_section_start --><br />
The internet is clouded with many online picture galleries using Adobe Flash and the Flickr API. Some of these are even free and some you can get for a small price, however, many of these are very predictable, repetitive and don&#8217;t offer expandability like XML support.</p>
<p>I came across this free, customizable 3D Flash image viewing application, called <a href="http://www.simpleviewer.net/tiltviewer/" target="_blank">TiltViewer</a> and I am excited about its features. This Flickr Online Picture Gallery displays your pictures in a very creative manner and indicates the popularity of 3D in the Adobe Flash environment. The online gallery tool is built in Flash and even supports XML for a personal library along with a Flickr account. Simply the interaction between the user and the gallery is worth giving this online gallery tool a try.</p>
<h3>Below is a video showing the off this innovative online picture gallery:</h3>
<table width="504" border="0" align="center">
<tbody>
<tr>
<td><object id="VideoPlayback" width="100" height="100" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://video.google.com/googleplayer.swf?docId=2470698594439734143&amp;hl=en" /><embed id="VideoPlayback" width="100" height="100" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=2470698594439734143&amp;hl=en" /></object><br />
<!--adsense#banner_468x60--></td>
</tr>
</tbody>
</table>
<p><!-- google_ad_section_end --><br />
<!-- google_ad_section_start(weight=ignore) --></p>
<h2>Here are the controls so you can give it <a href="http://www.simpleviewer.net/tiltviewer/app/" target="_blank">test run</a></h2>
<p><strong>Mouse</strong></p>
<ul>
<li>Click images to zoom-in, click again to zoom-out.</li>
<li>Click the background to zoom-out.</li>
<li>Click the &#8216;reload&#8217; button (below the image grid) to load a new set of images.</li>
<li>Click the &#8216;flip&#8217; button (bottom-right of a zoomed-in image) to see image details.</li>
</ul>
<p><strong>Keyboard</strong></p>
<ul>
<li><strong>Cursor keys</strong> to navigate between images.</li>
<li><strong>Space-bar</strong> to zoom in/out.</li>
<li><strong>&#8216;F&#8217;</strong> key to flip an image (when zoomed in).</li>
</ul>
<p><strong>Right-Click Menu</strong></p>
<ul>
<li><strong>Go Fullscreen. </strong>Opens<br />
TiltViewer in fullscreen mode. Right-click and select &#8216;Exit Fullscreen&#8217;<br />
to revert to regular mode. Note keyboard navigation does not work in<br />
full-screen mode.</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://flashspeaksactionscript.com/a-flickr-online-picture-gallery-tiltviewer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Object Caching 1379/1459 objects using disk: basic

Served from: flashspeaksactionscript.com @ 2012-02-07 21:29:33 -->
