<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Gathering statistics using Google Analytics and Unity 3D</title>
	<atom:link href="http://blog.mostlytigerproof.com/2009/10/06/gathering-statistics-using-google-analytics-and-unity-3d/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mostlytigerproof.com/2009/10/06/gathering-statistics-using-google-analytics-and-unity-3d/</link>
	<description>Craig Timpany&#039;s weblog</description>
	<lastBuildDate>Sun, 23 May 2010 01:00:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: InfiniteUnity3D</title>
		<link>http://blog.mostlytigerproof.com/2009/10/06/gathering-statistics-using-google-analytics-and-unity-3d/#comment-121</link>
		<dc:creator>InfiniteUnity3D</dc:creator>
		<pubDate>Sun, 23 May 2010 01:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mostlytigerproof.com/?p=138#comment-121</guid>
		<description>How did I miss this post?  This would be interesting experimentation.</description>
		<content:encoded><![CDATA[<p>How did I miss this post?  This would be interesting experimentation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shweta Gupte</title>
		<link>http://blog.mostlytigerproof.com/2009/10/06/gathering-statistics-using-google-analytics-and-unity-3d/#comment-118</link>
		<dc:creator>Shweta Gupte</dc:creator>
		<pubDate>Thu, 22 Apr 2010 15:19:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mostlytigerproof.com/?p=138#comment-118</guid>
		<description>i will try that will see what happens.I was using the timetraker function mentioned in the google docs but looks like its recording something but not time stuff.Will try the above way and see what happens.

Thanks for the response</description>
		<content:encoded><![CDATA[<p>i will try that will see what happens.I was using the timetraker function mentioned in the google docs but looks like its recording something but not time stuff.Will try the above way and see what happens.</p>
<p>Thanks for the response</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.mostlytigerproof.com/2009/10/06/gathering-statistics-using-google-analytics-and-unity-3d/#comment-117</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 22 Apr 2010 07:13:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mostlytigerproof.com/?p=138#comment-117</guid>
		<description>In the case of time tracking, the length of time would go in &#039;Value&#039; parameter. 

Google&#039;s analysis system can also analyse the time between calls to _trackPageview(), although using that approach in a Unity game would require faking the page address to something meaningful, and I have no idea how to do that.</description>
		<content:encoded><![CDATA[<p>In the case of time tracking, the length of time would go in &#8216;Value&#8217; parameter. </p>
<p>Google&#8217;s analysis system can also analyse the time between calls to _trackPageview(), although using that approach in a Unity game would require faking the page address to something meaningful, and I have no idea how to do that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shweta Gupte</title>
		<link>http://blog.mostlytigerproof.com/2009/10/06/gathering-statistics-using-google-analytics-and-unity-3d/#comment-116</link>
		<dc:creator>Shweta Gupte</dc:creator>
		<pubDate>Wed, 21 Apr 2010 20:58:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mostlytigerproof.com/?p=138#comment-116</guid>
		<description>Hi,
I am trying to do time tracking for a game.How long it take to get to the end of the game or to move a item etc.Could you be able to help me with that?
Thanks
Shweta</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am trying to do time tracking for a game.How long it take to get to the end of the game or to move a item etc.Could you be able to help me with that?<br />
Thanks<br />
Shweta</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Timpany</title>
		<link>http://blog.mostlytigerproof.com/2009/10/06/gathering-statistics-using-google-analytics-and-unity-3d/#comment-85</link>
		<dc:creator>Craig Timpany</dc:creator>
		<pubDate>Fri, 16 Oct 2009 20:15:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mostlytigerproof.com/?p=138#comment-85</guid>
		<description>I don&#039;t think that Evaluate field evaluates the expression in the scope of any particular page. Running the snippet from there doesn&#039;t work on my pages either. I was suggesting looking at the javascript error list after the embedded Unity has sent events.

If you want to test the JS without anything else getting in the way, Google&#039;s documentation suggests dumping it in an OnClick handler. They&#039;ve got an example here:
http://code.google.com/intl/en-US/apis/analytics/docs/tracking/eventTrackerGuide.html

If you&#039;re getting pageviews through, I kinda doubt the problem is in the page. That indicates that at least pageTracker._trackPageview() is running. The worst that could happen would be Unity trying to send events before the browser has received the part of the page with the GA code. I&#039;ve never seen that happen though, I&#039;ve only been sending events in response to user input.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think that Evaluate field evaluates the expression in the scope of any particular page. Running the snippet from there doesn&#8217;t work on my pages either. I was suggesting looking at the javascript error list after the embedded Unity has sent events.</p>
<p>If you want to test the JS without anything else getting in the way, Google&#8217;s documentation suggests dumping it in an OnClick handler. They&#8217;ve got an example here:<br />
<a href="http://code.google.com/intl/en-US/apis/analytics/docs/tracking/eventTrackerGuide.html" rel="nofollow">http://code.google.com/intl/en-US/apis/analytics/docs/tracking/eventTrackerGuide.html</a></p>
<p>If you&#8217;re getting pageviews through, I kinda doubt the problem is in the page. That indicates that at least pageTracker._trackPageview() is running. The worst that could happen would be Unity trying to send events before the browser has received the part of the page with the GA code. I&#8217;ve never seen that happen though, I&#8217;ve only been sending events in response to user input.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Magnus</title>
		<link>http://blog.mostlytigerproof.com/2009/10/06/gathering-statistics-using-google-analytics-and-unity-3d/#comment-84</link>
		<dc:creator>Magnus</dc:creator>
		<pubDate>Fri, 16 Oct 2009 17:24:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mostlytigerproof.com/?p=138#comment-84</guid>
		<description>Maybe I didn&#039;t implement it correctly in my html.

This is what I get when trying to evaluate something similar in the firefox &quot;error console&quot;:
Error: pageTracker is not defined
Source File: javascript:%20pageTracker._trackEvent(&quot;Test&quot;,%20&quot;test&quot;,%20&quot;foo&quot;,%205);
Line: 1</description>
		<content:encoded><![CDATA[<p>Maybe I didn&#8217;t implement it correctly in my html.</p>
<p>This is what I get when trying to evaluate something similar in the firefox &#8220;error console&#8221;:<br />
Error: pageTracker is not defined<br />
Source File: javascript:%20pageTracker._trackEvent(&#8220;Test&#8221;,%20&#8243;test&#8221;,%20&#8243;foo&#8221;,%205);<br />
Line: 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Timpany</title>
		<link>http://blog.mostlytigerproof.com/2009/10/06/gathering-statistics-using-google-analytics-and-unity-3d/#comment-82</link>
		<dc:creator>Craig Timpany</dc:creator>
		<pubDate>Thu, 15 Oct 2009 23:48:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mostlytigerproof.com/?p=138#comment-82</guid>
		<description>The javascript console log in your web browser would be good to check too. That&#039;ll tell you whether the call to the GA page tracker is going OK or not.

There&#039;s no minimum of the amount of data. I was getting events listed as soon as I got pageviews listed.

One thing that I should&#039;ve mentioned in the article is that the _trackEvent call has 3 variations:
 - _trackEvent(category, action, label)
 - _trackEvent(category, action, value)
 - _trackEvent(category, action, label, value)

A call like _trackEvent(category, action, null, value), won&#039;t work.</description>
		<content:encoded><![CDATA[<p>The javascript console log in your web browser would be good to check too. That&#8217;ll tell you whether the call to the GA page tracker is going OK or not.</p>
<p>There&#8217;s no minimum of the amount of data. I was getting events listed as soon as I got pageviews listed.</p>
<p>One thing that I should&#8217;ve mentioned in the article is that the _trackEvent call has 3 variations:<br />
 &#8211; _trackEvent(category, action, label)<br />
 &#8211; _trackEvent(category, action, value)<br />
 &#8211; _trackEvent(category, action, label, value)</p>
<p>A call like _trackEvent(category, action, null, value), won&#8217;t work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Magnus</title>
		<link>http://blog.mostlytigerproof.com/2009/10/06/gathering-statistics-using-google-analytics-and-unity-3d/#comment-81</link>
		<dc:creator>Magnus</dc:creator>
		<pubDate>Thu, 15 Oct 2009 21:34:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mostlytigerproof.com/?p=138#comment-81</guid>
		<description>Nice article!

I think I&#039;m doing everything right, and I see the traffic in GA.. but I&#039;m not seeing the actual events.. any ideas? Is there like a minimum amount of events that need to be received before they are displayed, to prevent personally identifiable information?

Didn&#039;t check the unity webplayer log yet tho, might do that.</description>
		<content:encoded><![CDATA[<p>Nice article!</p>
<p>I think I&#8217;m doing everything right, and I see the traffic in GA.. but I&#8217;m not seeing the actual events.. any ideas? Is there like a minimum amount of events that need to be received before they are displayed, to prevent personally identifiable information?</p>
<p>Didn&#8217;t check the unity webplayer log yet tho, might do that.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
