Peter Williams a écrit:
Also, I still can not get the mouse cursor to disappear.
Trick: set the cursor size to 1.
Written in Pascal:
var pCursor:GrCursorPtr;
pCursor:=GrMouseGetCursor; with pCursor^ do begin XSize:=1; YSize:=1; end; GrMouseSetCursor(pCursor);
Maurice