Logging mouse clicks in keynote

i apologize if this is the wrong place to post this:
im a complete beginner, even to macs. at work ive been handed an assignment to figure out a way to log mouse clicks in the application keynote. basically, we want a text file that shows a list of the seconds when the slide was advanced.

does this sound doable in applescript? from looking thru the examples on macscripter, it seems so, but im not seeing any exampels that would get me started with this.

thanks,

corey

You can try “Extra Suites” <http://www.kanzu.com>.
Sample code:

set countClicks to 0
set maxClicks to 2
repeat
	tell application "Extra Suites"
		if mouse down then
			set countClicks to countClicks + 1
			if countClicks = maxClicks then exit repeat
		end if
	end tell
end repeat
display dialog "You clicked twice!"