I'm having the same issue as this question, but I am using an INT value, and I don't know why it's not working.
Here's what the source code looks like on the page:
<a href="#" onclick="_gaq.push(['_trackEvent', 'Headline click', 'HeadlineLabel', '1', 0, false]);">This is a headline link</a>
And this is what I'm getting in the console while using the Google Analytics debugger chrome extension (substituting X's in places for privacy):
_gaq.push processing "_setDomainName" for args: "[XXXXXXXXX.XX]":
ga_debug.js:24 _gaq.push processing "_setAccount" for args: "[UA-XXXXXXXX-X]":
ga_debug.js:24 _gaq.push processing "_trackPageview" for args: "[]":
ga_debug.js:24 Track Pageview
ga_debug.js:24 Found UA client id
ga_debug.js:24 _gaq.push processing "_setAccount" for args: "[UA-XXXXXXXX-X]":
ga_debug.js:24 _gaq.push processing "_trackPageview" for args: "[]":
ga_debug.js:24 Track Pageview
ga_debug.js:24 _gaq.push processing "_setAccount" for args: "[UA-XXXXXXXX-X]":
ga_debug.js:24 _gaq.push processing "_trackPageview" for args: "[]":
ga_debug.js:24 Track Pageview
The above looks as intended based on the Tag Manager's code provided by my client. Then I click on a link to test its event tracking.
ga_debug.js:24 _gaq.push processing "_trackEvent" for args: "[Headline click,HeadlineLabel,1,0,false]":
ga_debug.js:24 Track Event
The client sent along a picture of the debugger of what it's supposed to say if it's working correctly. In their version, there is only one line, instead of two, and it should say "Tracking Beacon Sent!"
So why is there no "Tracking Beacon Sent!"? Can someone point out my mistake, please? I thought maybe GA updated their extension and changed the output message, but I don't know where that information would be. Any help is appreciated. Thank you!