I'm looking for some assistance on an issue i am having,i am getting
massive direct traffic reported in analytics.
I have created a set of banners which are being distributed via
multiple ad-networks/agencies. I have implemented the GA tracking and
utilized;
import com.greensock.*;
import com.greensock.easing.*;
import com.google.analytics.AnalyticsTracker;
import com.google.analytics.GATracker;
var tracker:AnalyticsTracker = new GATracker( this, "removedforpost",
"AS3", false );
//bespoke tween in
TweenLite.to(bespoke, 1, {delay:1, x:3.35, y:104.55,
ease:Sine.easeOut, onComplete:bespoketweenout}) ;
// end
//track page view using event track
tracker.trackEvent("intendedwebiste" ,"300x250caramelHome");
//end
I have used the event track to track impressions of the banner
campaign, these report fine in analytics under the event section.
I have also implemented the track page view attribute on a button
click to track the page view;
//click here button code
clickmeffs.addEventListener(MouseEvent.MOUSE_UP, meClick);
function meClick(ev:MouseEvent):void
{
var request:URLRequest = new URLRequest("http://
www.uniquetagedurl.com"); // this is tagged with a url constructed
with google url builder
navigateToURL(request,"_self");
tracker.trackPageview("/Website300x250caramelHome");
//End
The information of the event is reported in analytics but my issue is
i have a MASSIVE increase in direct traffic, the events appear as
desired in the event section of the analytics, the page views come
through fine i need some assistance in working out what is causing the
direct traffic to be reported. Everything appears to be working as
intended but the distorted direct traffic results are causing me a
headache any suggestions on where i have gone wrong?
This is an urgent request so any help would be appreciated.
Many thanks
Guy