Google Analytic Custom Events + SWFAddress

Hello all.
Kirupa has helped me in the past and I’m hoping for some more of the same.

I was given a template type file to rework for a website. (That’s why it’s still AS2)

Using an External Interface call and the following Google Analytics code

<script type="text/javascript">
	var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
	document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
	var pageTracker = _gat._getTracker("UA-xxxxxxxx-1");
	pageTracker._trackPageview();
</script>

I was easily able to track custom events on a music player.

We then realized that google tracking wasn’t accurately tracking the time spent on page as it was a flash file.
I then did some research and found out that SWFAddress allows this with already built in features.
I’ve used SWFAddress before so it was no problem to set up.
I found this GA code that is gets everything working with SWFAddress 2.4

 <script type="text/javascript">
          var _gaq = _gaq || [];
          _gaq.push(['_setAccount', 'UA-xxxxxxxx-1']);
          _gaq.push(['_trackPageview']);
          (function() {
            var ga = document.createElement('script'); ga.type = 'text/javascript';
        ga.async = true;
            ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
        'http://www') + '.google-analytics.com/ga.js';
            var s = document.getElementsByTagName('script')[0];
        s.parentNode.insertBefore(ga, s);
          })();

        // Tracker for SWFAddress
        var pageTracker = {    _trackPageview: function (url) {_gaq.push (['_trackPageview', url ]);}}; 
</script>

My problem now though is that I’ve lost the custom events on my player and can’t seem to figure out how to make this call to google via SWFAddress and am finding no documentation (I can understand) on it.

It’s a little specific the problem being AS2 etc etc but any insight will be greatly appreciated!

If sharing the External Interface code helps I’ll happily post it as well.
Thanks