mouse event

Guiserver, GTK-server, OpenGL, PostScript,
HTML 5, MIDI, IDE
Locked
didi
Posts: 166
Joined: Fri May 04, 2007 8:24 pm
Location: Germany

mouse event

Post by didi »

Code: Select all

 (define (mouse-pressed-action id type x y button cnt mods)
     (println "id:" id " type:" type " x:" x " y:" y " button:" button " count:" cnt " mods:" mods))
results in :> id:189 type:146 x:1 y:16 button:() count:nil mods:nil

id:189 is not correct it is the x-value
type:146 this is the y-value

it seems that the order is somewhere messed .

didi
Posts: 166
Joined: Fri May 04, 2007 8:24 pm
Location: Germany

Post by didi »

Sorry , it seems, that i mixed the general mouse-event-sample , with the mouse-demos - i wonder why this worked at all.

Locked