What is Event Tracking? Digital Media Digital Marketing by flyblackbox Does anyone have any experience with event tracking? (specifically on click) This tutorial for 'on click' goal setting is confusing to me: [url]http://www.google.com/support/googleanalytics/bin/answer.py?answer=55527[/url] I think this is the tutorial I need, but I don't have a lot of experience with Java Script, is this what I'm looking for? Re: What is Event Tracking? Digital Media Digital Marketing by Divito … is confusing to me: [url]http://www.google.com/support/googleanalytics/bin/answer.py?answer=55527[/url] I think this is… Using nested list with unicode data without it showing as such Programming Software Development by fingerpainting …] I'm retrieving data from Google Analytics (via the python-googleanalytics library, as Google's API is way too complex for… Re: Driving miss Google Community Center Geeks' Lounge by GrimJack Google's motto is "Do no evil" yet DoubleClick is evil and Google is buying it. I have DoubleClick on my 'forbidden' list and I have just added googleanalytics and googlesyndication as untrusted, sigh. Re: seo analyzer Digital Media Digital Marketing Search Engine Strategies by samauden I suggest a good combination would be ahrefs,googlewebmaster,googleanalytics and woorank. Re: How can use google api analystics in asp.net Programming by Jonas_1 Hi zack here is useful and helpful link.I hope it will help you http://www.asptricks.net/2016/02/google-analytics-api-c-example-complete.html https://www.mindstick.com/Articles/1513/data-reports-example-in-google-analytics-api-using-asp-dot-net-mvc https://www.nuget.org/packages/GoogleAnalytics.GoogleCharts.NET/ Re: What is Event Tracking? Digital Media Digital Marketing by flyblackbox Have you ever set a goal in GA for clicking an outbound link? I am having trouble following the above tutorial and I'm not sure where I am going wrong. I think it has something to do with the javascript. It should be simple! Re: What is Event Tracking? Digital Media Digital Marketing by rickymartin3 Event Tracking is a method available in the ga.js tracking code that you can use to record user interaction with website elements, such as a Flash-driven menu system. This is accomplished by attaching the method call to the particular UI element you want to track. When used this way, all user activity on such elements is calculated and displayed as… Re: What is Event Tracking? Digital Media Digital Marketing by mackone I have it available on a few of my sites and it works like a charm. I use it mainly to track PDF downloads and Email links. Re: Using nested list with unicode data without it showing as such Programming Software Development by TrustyTony Did you try: [CODE]clean = [] for rows in top10: for x in rows: for i in x: i = str(i) i = i.encode('ascii','ignore') clean.append(i)[/CODE] Re: Using nested list with unicode data without it showing as such Programming Software Development by Beat_Slayer Why not? [CODE]top10 = [ [[u'abcde', u'fghij'], [1]], [[u'abcde', u'fghij'], [2]], [[u'abcde', u'fghij'], [3]], [[u'abcde', u'fghij'], [4]], [[u'abcde', u'fghij'], [5]]] top10 = [[[str(a), str(b)], x] for [a, b], x in top10] for item in top10: print item[/CODE] [CODE]Output: [['abcde', 'fghij'], [1]] … Re: Using nested list with unicode data without it showing as such Programming Software Development by fingerpainting Thanks for your help tonyjv and beat slayer. When I do the str() first, I get each character with the strings in a separate table column and each string and integer in a separate table row. However, the list 'clean' does return the values I want, so I'll try and tweak the HTML output. When I use the list comprehension, the initial output is …