<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Example files and tips for deeplinking with Flash SWF Address</title>
	<atom:link href="http://www.innovativeinteractivity.com/2009/02/25/example-files-and-tips-for-deeplinking-with-flash-swf-address/feed/lang/en/" rel="self" type="application/rss+xml" />
	<link>http://www.innovativeinteractivity.com/2009/02/25/example-files-and-tips-for-deeplinking-with-flash-swf-address/</link>
	<description>a digital watering hole for multimedia enthusiasts</description>
	<lastBuildDate>Mon, 15 Mar 2010 06:43:43 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: CR</title>
		<link>http://www.innovativeinteractivity.com/2009/02/25/example-files-and-tips-for-deeplinking-with-flash-swf-address/comment-page-1/#comment-900</link>
		<dc:creator>CR</dc:creator>
		<pubDate>Tue, 02 Jun 2009 13:12:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.innovativeinteractivity.com/?p=1375#comment-900</guid>
		<description>This may be the clearest description on using swfAddress with AS2, I have read yet! Thanks so much. I&#039;ll let you know how it goes!</description>
		<content:encoded><![CDATA[<p>This may be the clearest description on using swfAddress with AS2, I have read yet! Thanks so much. I&#8217;ll let you know how it goes!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Faculak</title>
		<link>http://www.innovativeinteractivity.com/2009/02/25/example-files-and-tips-for-deeplinking-with-flash-swf-address/comment-page-1/#comment-864</link>
		<dc:creator>Scott Faculak</dc:creator>
		<pubDate>Tue, 28 Apr 2009 15:13:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.innovativeinteractivity.com/?p=1375#comment-864</guid>
		<description>How do you suggest handling Query Params?  I added a test param to your base URL and then after clicking around the swf address gets concatenated to the end.</description>
		<content:encoded><![CDATA[<p>How do you suggest handling Query Params?  I added a test param to your base URL and then after clicking around the swf address gets concatenated to the end.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tracy Boyer</title>
		<link>http://www.innovativeinteractivity.com/2009/02/25/example-files-and-tips-for-deeplinking-with-flash-swf-address/comment-page-1/#comment-805</link>
		<dc:creator>Tracy Boyer</dc:creator>
		<pubDate>Thu, 26 Feb 2009 12:58:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.innovativeinteractivity.com/?p=1375#comment-805</guid>
		<description>Thanks, Eirik! I will look into your code and try it on my example files. I am assuming that you still need the .js and .as files with the js call in the html file?</description>
		<content:encoded><![CDATA[<p>Thanks, Eirik! I will look into your code and try it on my example files. I am assuming that you still need the .js and .as files with the js call in the html file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eirik Wallem Fossan</title>
		<link>http://www.innovativeinteractivity.com/2009/02/25/example-files-and-tips-for-deeplinking-with-flash-swf-address/comment-page-1/#comment-804</link>
		<dc:creator>Eirik Wallem Fossan</dc:creator>
		<pubDate>Thu, 26 Feb 2009 08:47:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.innovativeinteractivity.com/?p=1375#comment-804</guid>
		<description>SWFaddress works well, perhaps too well. If you only need to read and change a URL, then look into the following functions:

function getUrl():String {
	var sUrl = flash.external.ExternalInterface.call (&quot;function ( ) { return window.location.href; }&quot;);
	var sNum:String = sUrl.substr(sUrl.lastIndexOf(&quot;#&quot;) + 1);
	return sNum;
}

function setUrl(s:String):Void {
	var sUrl = flash.external.ExternalInterface.call (&quot;function ( ) { return window.location.href; }&quot;);
	var sNum:String = sUrl.substr(sUrl.lastIndexOf(&quot;#&quot;) + 1);
	sUrl = sUrl.substr(0, sNum)
	var newUrl:String = sUrl + &quot;#&quot; + s;
	var jsFunc:String = &quot;function ( ) { window.location.href=\&quot;&quot; + newUrl + &quot;\&quot;; }&quot;;
	flash.external.ExternalInterface.call (jsFunc);
}

---

A bit of tweaking and you&#039;re there.</description>
		<content:encoded><![CDATA[<p>SWFaddress works well, perhaps too well. If you only need to read and change a URL, then look into the following functions:</p>
<p>function getUrl():String {<br />
	var sUrl = flash.external.ExternalInterface.call (&#8220;function ( ) { return window.location.href; }&#8221;);<br />
	var sNum:String = sUrl.substr(sUrl.lastIndexOf(&#8220;#&#8221;) + 1);<br />
	return sNum;<br />
}</p>
<p>function setUrl(s:String):Void {<br />
	var sUrl = flash.external.ExternalInterface.call (&#8220;function ( ) { return window.location.href; }&#8221;);<br />
	var sNum:String = sUrl.substr(sUrl.lastIndexOf(&#8220;#&#8221;) + 1);<br />
	sUrl = sUrl.substr(0, sNum)<br />
	var newUrl:String = sUrl + &#8220;#&#8221; + s;<br />
	var jsFunc:String = &#8220;function ( ) { window.location.href=\&#8221;" + newUrl + &#8220;\&#8221;; }&#8221;;<br />
	flash.external.ExternalInterface.call (jsFunc);<br />
}</p>
<p>&#8212;</p>
<p>A bit of tweaking and you&#8217;re there.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
