Hey Marcel,
There are a few ways to accomplish this. One way would be to use a SiteCat plugin but that would limit your tracking to only SiteCat. It would look something like this and requires the doPlugins function within a JS extension.
/* Plugin Config */
s.usePlugins=true
function s_doPlugins(s) {
if(s.linkType=="d"){
s.linkTrackVars = "eVar5,eVar6,events";
s.linkTrackEvents = "event7";
s.events="event7";
}
}
s.doPlugins=s_doPlugins
Alternatively you could make this vendor neutral by using an extension in TIQ to set a global variable on-click or mousedown called event_type. Then, in the mapping toolbox of SiteCat when event_type equals something like "download" you can set your events and evars accordingly.
Hope this helps. Let me know if you have any questions.
... View more