<?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: How To Track Events in Flash Movies using WebTrends</title>
	<atom:link href="http://davidsimpson.me/2009/03/09/how-to-track-events-in-flash-movies-using-webtrends/feed/" rel="self" type="application/rss+xml" />
	<link>http://davidsimpson.me/2009/03/09/how-to-track-events-in-flash-movies-using-webtrends/</link>
	<description>Developing the web, one page at a time.</description>
	<lastBuildDate>Mon, 08 Mar 2010 19:53:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Steve Fleckenstein</title>
		<link>http://davidsimpson.me/2009/03/09/how-to-track-events-in-flash-movies-using-webtrends/comment-page-1/#comment-513</link>
		<dc:creator>Steve Fleckenstein</dc:creator>
		<pubDate>Thu, 04 Jun 2009 15:42:22 +0000</pubDate>
		<guid isPermaLink="false">http://davidsimpson.me/?p=106#comment-513</guid>
		<description>&lt;span class=&quot;topsy_trackback_comment&quot;&gt;&lt;span class=&quot;topsy_twitter_username&quot;&gt;&lt;span class=&quot;topsy_trackback_content&quot;&gt;Useful:How To Track Events in Flash Movies using WebTrends http://bit.ly/uhuUE #analytics #flash&lt;/span&gt;&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p><span class="topsy_trackback_comment"><span class="topsy_twitter_username"><span class="topsy_trackback_content">Useful:How To Track Events in Flash Movies using WebTrends <a href="http://bit.ly/uhuUE" rel="nofollow">http://bit.ly/uhuUE</a> #analytics #flash</span></span></span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://davidsimpson.me/2009/03/09/how-to-track-events-in-flash-movies-using-webtrends/comment-page-1/#comment-76</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 17 Apr 2009 18:58:46 +0000</pubDate>
		<guid isPermaLink="false">http://davidsimpson.me/?p=106#comment-76</guid>
		<description>&lt;strong&gt;Media:&lt;/strong&gt; You could add the page location to the event tracking 
e.g. for WebTrends:
&lt;pre class=&quot;overflowAuto&quot;&gt;&lt;code&gt;function myFlashEvent(eventDescription, eventValue){

	// Get the page location
	var pageLocation = location.href.substr( (location.protocol + &#039;://&#039; +location.host).length - 1);

	// Register Event with WebTrends
	dcsMultiTrack(
		&#039;DCS.dcsuri&#039;, eventValue,                  // name/value pair for URL
		&#039;WT.ti&#039;, &#039;FlashEvent:&#039; + pageLocation + &#039;/&#039; + eventDescription  // name/value pair for page title
	);

	// Go to URL
	document.location.href = eventValue;
}&lt;/code&gt;&lt;/pre&gt;

...or for Google Analytics:
&lt;pre class=&quot;overflowAuto&quot;&gt;&lt;code&gt;function myFlashEvent(eventDescription, eventValue){

	// Get the page location
	var pageLocation = location.href.substr( (location.protocol + &#039;://&#039; +location.host).length - 1);

	// Register event with Google Analytics
	pageTracker._trackEvent(
		&#039;Flash&#039;, &#039;Link&#039;,
		eventDescription, pageLocation + &#039;/&#039; + eventValue
	);

	// Go to URL
	document.location.href = eventValue;
}&lt;/code&gt;&lt;/pre&gt;

This would mean that the flash could be exactly the same, but now you&#039;d also be tracking a combination of the web page location and the flash event value.</description>
		<content:encoded><![CDATA[<p><strong>Media:</strong> You could add the page location to the event tracking<br />
e.g. for WebTrends:</p>
<pre class="overflowAuto"><code>function myFlashEvent(eventDescription, eventValue){

	// Get the page location
	var pageLocation = location.href.substr( (location.protocol + '://' +location.host).length - 1);

	// Register Event with WebTrends
	dcsMultiTrack(
		'DCS.dcsuri', eventValue,                  // name/value pair for URL
		'WT.ti', 'FlashEvent:' + pageLocation + '/' + eventDescription  // name/value pair for page title
	);

	// Go to URL
	document.location.href = eventValue;
}</code></pre>
<p>&#8230;or for Google Analytics:</p>
<pre class="overflowAuto"><code>function myFlashEvent(eventDescription, eventValue){

	// Get the page location
	var pageLocation = location.href.substr( (location.protocol + '://' +location.host).length - 1);

	// Register event with Google Analytics
	pageTracker._trackEvent(
		'Flash', 'Link',
		eventDescription, pageLocation + '/' + eventValue
	);

	// Go to URL
	document.location.href = eventValue;
}</code></pre>
<p>This would mean that the flash could be exactly the same, but now you&#8217;d also be tracking a combination of the web page location and the flash event value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Media</title>
		<link>http://davidsimpson.me/2009/03/09/how-to-track-events-in-flash-movies-using-webtrends/comment-page-1/#comment-74</link>
		<dc:creator>Media</dc:creator>
		<pubDate>Thu, 16 Apr 2009 20:03:10 +0000</pubDate>
		<guid isPermaLink="false">http://davidsimpson.me/?p=106#comment-74</guid>
		<description>If I were to place the same Flash movie on two different locations and would like to track these two Flash movies separately, how would I do this? Do I need to create two separate instances of the Flash movie and have two separate function parameters for the movies?

Appreciate your help.</description>
		<content:encoded><![CDATA[<p>If I were to place the same Flash movie on two different locations and would like to track these two Flash movies separately, how would I do this? Do I need to create two separate instances of the Flash movie and have two separate function parameters for the movies?</p>
<p>Appreciate your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: webtrends hacks</title>
		<link>http://davidsimpson.me/2009/03/09/how-to-track-events-in-flash-movies-using-webtrends/comment-page-1/#comment-514</link>
		<dc:creator>webtrends hacks</dc:creator>
		<pubDate>Sat, 14 Mar 2009 05:39:25 +0000</pubDate>
		<guid isPermaLink="false">http://davidsimpson.me/?p=106#comment-514</guid>
		<description>&lt;span class=&quot;topsy_trackback_comment&quot;&gt;&lt;span class=&quot;topsy_twitter_username&quot;&gt;&lt;span class=&quot;topsy_trackback_content&quot;&gt;Track Events in Flash Movies http://tinyurl.com/bjtt8z&lt;/span&gt;&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p><span class="topsy_trackback_comment"><span class="topsy_twitter_username"><span class="topsy_trackback_content">Track Events in Flash Movies <a href="http://tinyurl.com/bjtt8z" rel="nofollow">http://tinyurl.com/bjtt8z</a></span></span></span></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aknecht</title>
		<link>http://davidsimpson.me/2009/03/09/how-to-track-events-in-flash-movies-using-webtrends/comment-page-1/#comment-515</link>
		<dc:creator>aknecht</dc:creator>
		<pubDate>Tue, 10 Mar 2009 10:54:47 +0000</pubDate>
		<guid isPermaLink="false">http://davidsimpson.me/?p=106#comment-515</guid>
		<description>&lt;span class=&quot;topsy_trackback_comment&quot;&gt;&lt;span class=&quot;topsy_twitter_username&quot;&gt;&lt;span class=&quot;topsy_trackback_content&quot;&gt;Good article on tracking Flash events in both #WebTrends and Google Analytics -  http://is.gd/mGvG #wa&lt;/span&gt;&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p><span class="topsy_trackback_comment"><span class="topsy_twitter_username"><span class="topsy_trackback_content">Good article on tracking Flash events in both #WebTrends and Google Analytics &#8211;  <a href="http://is.gd/mGvG" rel="nofollow">http://is.gd/mGvG</a> #wa</span></span></span></p>
]]></content:encoded>
	</item>
</channel>
</rss>
