mouseTrack() Function

Hi,

I want to tack my mouse pos. I was using a timer to do it, working well but didn’t give me the accuracy I needed. So by searching a bit I have find the mouseTrack() Function whish could potentially do the same but without the timer constraint. But I am completely unable to use it ! The damn help keep not giving simple examples and it’s quite hard to find on google, so here where I am stuck so far :

mouseTrack trackCallback:FN_TrackMouse

Which it’s not at all calling the function.

Then, to tell max which kind of tracking I want, in my function at the begining I have add a :
Fn FN_TrackMouse msg =
(
case msg of
(
#mouseMove
)

Which I am pretty sure wont work.

EDIT :I just found something else better working.

	tool foo
	(
		On Mousemove click do
		(
			FN_TrackMouse() <= not calling the function anymore, hardcoded directly here.
		)
	)
		startTool foo prompt:"On"	

goodby mouseTrack() Function -_-

edit edit : Got it working this way. Still curious about the mouseTrack() Function though

Thanks
Bloby