vote up 0 vote down star
1

I'm trying to program some user-behavior-monitoring functionality and it's a bit tricky. For example how do you go about recording a user's clicking path to be used in future analysis? Am I trying to reinvent the wheel? is it easy? is it harder than what I'm thinking?

flag

2 Answers

vote up 1 vote down

ClickHeat can track clicks and generate heatmaps.

Freetale tracks mouse movements and scrolling and can generate replays ala the commercial ClickTale.

Both of these are open source, so you can find plenty of answers by looking at the source.

link|flag
I'm assuming you need to track users on the web. Come to think of it, I wonder if there's anything similar for desktop applications. – bhseo Oct 21 at 17:49
I was indeed asking the question for web. +1 for the useful links. – Chris Oct 21 at 18:37
vote up 1 vote down

You can add additional listeners for mouse clicks and insert event and some useful data in DB. Than you can analyze them.

If you are going to monitor program and you can't change source code, than it's quit hard or maybe impossible.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.