Okay I’m going to try this as I really need to track all outbound clicks to Amazon within Analytics… I’ve looked into it a bit more and realise the code fragment I gave you isn’t representative of actual use…
_trackEvent(category, action, opt_label, opt_value, opt_noninteraction)
category (required)
The name you supply for the group of objects you want to track.
action (required)
A string that is uniquely paired with each category, and commonly used to define the type of user interaction for the web object.
label (optional)
An optional string to provide additional dimensions to the event data.
value (optional)
An integer that you can use to provide numerical data about the user event.
non-interaction (optional)
A boolean that when set to true, indicates that the event hit will not be used in bounce-rate calculation.
So we need:
_trackEvent(‘Affil’, ‘Amazon’, $ASIN)
Where $ASIN is my placeholder for the ASIN of the link they actually clicked…
Is that doable?