Order Now AdSolution Sign Up | Login » Bits on the Run Sign Up | Login »

Forums

/

Can't get GAPro working

3 replies [Last post]

Hi There:

As a non-programmer I'm struggling thirough this but I have no choice and with your contniued help I am hopeful.

The problem: I cannot get any tracking results in Google Analytics for my JW Player video on my homepage. (www.websbyu.com)

Action taken: Ethan gave me the code I need to include with the rest of my code to embed my video. (See code) below.

The problem: Still no tracking showing in Google Analytics after 2 days.

Action taken: I read posting in the Forum and surmised the issue may be that I am using swfobject.js v 1.5 instead of v 2.2. When to Google site and download and installed v 2.2.

The problem: My video no longer played bu displayed the messaage "Get the Adobe Flash Player to see this video." I assume this means that the new swfobject does not work with the version of JW Player I'm using. Is that correct?

Here is the code, can someone take a look and let me know what might be wrong? Thanks so much.

Rudy

<script type='text/javascript' src='http://www.websbyu.com/swfobject.js'></script>
<div id="mediaspace"><a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">Get the Adobe Flash Player to see this video.</a></div>
<script type='text/javascript'>
var so = new SWFObject('http://www.websbyu.com/player.swf','mpl','486','282','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','http://www.websbyu.com/websbyu.flv');
so.addVariable('image','http://www.websbyu.com/preview.jpg');
so.addVariable('stretching','fill');
so.addVariable('skin','http://www.websbyu.com/xstijl.swf');
so.addVariable('plugins','gapro-1');
so.addVariable('gapro.accountid','UA-15093478');
so.addVariable('gapro.tracktime = true');
so.write('mediaspace');
</script>

so.addVariable('gapro.tracktime = true'); is not correct.

Make it:

so.addVariable('gapro.tracktime','true');

Hi Ethan:

Thanks so much. I really appreciate the help!

Rudy

Np!