03MaySWFAddress 2.1 supports Google Analytics

And it does it out of the box.

SWFAddress 2.1 is out and it supports Google Analytics with no extra effort. No code necessary except for the usual SCRIPT tags code provided by Google.

If you are like me and don't like to read all the fine print, keep in mind that you'll have to remove the following code

pageTracker._trackPageview();

from the HTML, because SWFAddress tracks the page view automatically for you. If you don't remove you'll end up with double page visits.

Pages are ready to be tracked. So now to track events:

public static function track(event:String):void
{
    ExternalInterface.call("pageTracker._trackPageview('"+event+"')");
}

And you are all set.