I have Google Analytics setup on my site, and it is definitely recording page views. But I have added some code to call pageTracker._trackEvent(category, action, labe
The problem was the values that I was putting in the final argument, the "value" parameter.
pageTracker._trackEvent(category, action, label, value)
I was passing non-integer strings to the "value" parameter:
pageTracker._trackEvent("UserAction", "ShowHelp", "Page", "http://mysite/UrlGoesHere");
but the docs say it needs to be an integer value.
pageTracker._trackEvent("UserAction", "ShowHelp", "http://mysite/UrlGoesHere", 1);
I posed the question on Google Help Forums here.
And here is a link to the Event Tracking docs
Thanks for the help Török