Open GoogleCodeExporter opened 8 years ago
I can confirm that this is an issue. We have a flash media player offered
through our software and it throws the same debug error and halts execution of
the player when the page is loaded from an Adwords redirect link. Refreshing
the page or loading it normally gets rid of this error.
Original comment by seanhsmi...@gmail.com
on 14 Jan 2011 at 7:18
Has anyone found a solution for this error???
Original comment by rafalgad...@gmail.com
on 20 Feb 2011 at 9:10
Yes this is caused when the click through uses a different GA library than the
target site. If your site is using the library available as an SWC from here
http://code.google.com/p/gaforflash/downloads/list then the _addIfNotEmpty
function that the campaign tracker is attempting to access does not exist. You
must ensure your site is instead using the library available via SVN in the
source section here http://code.google.com/p/gaforflash/source/checkout.
Original comment by firebell...@googlemail.com
on 2 Aug 2011 at 12:35
Looking at the library in SVN, which files am I suppose to download to correct
this issue?
Original comment by globalin...@gmail.com
on 7 Jun 2012 at 7:49
Attachments:
For solution you need modify CampaignTracker.as with this fix:
private function _addIfNotEmpty( arr:Array, field:String, value:String ):void
{
if( value != "" && value!=null )
{
value = value.split( "+" ).join( "%20" );
value = value.split( " " ).join( "%20" );
arr.push( field + value );
}
}
Original comment by arek.mat...@gmail.com
on 20 Jun 2012 at 4:11
I have the same error, I imported http://gaforflash.googlecode.com/svn/trunk in
FlashBuilder, I can change CampaignTracker.as as you said, but I don't know how
to build the SWC from it !!
Original comment by eprevo...@gmail.com
on 12 Dec 2012 at 4:33
I agree with you, explanations about how to build SWC from source would be
welcomed.
Did anybody already do it?
Original comment by christophe.bismuth
on 6 Mar 2013 at 9:44
Original issue reported on code.google.com by
eric.c.decker
on 9 Dec 2010 at 5:19