Well I'm trying to do, is to make trails on the mouse, just like when you do it in windows.
Thanks for the fix, rapscaLLion.
I tried it my self and found some errors in the mouse cursor graphic. I fixed it and here it is. Also easier to control.
Sync On
Sync Rate 40
Hide Mouse
Color Backdrop 0
Type Coords
x As Float
y As Float
EndType
REM Draw Mouse Cursor
Cls
Line 1,1,1,12
Line 2,2,2,12
Line 3,3,3,11
Line 4,4,4,10
Line 5,5,5,11
Line 6,6,6,8
Line 6,11,6,13
Line 7,13,7,15
Dot 7,7
Dot 8,15
Get Image 1,1,1,10,18
REM Have to be 2 or more.
NrOfTrails=7
Dim Trail(NrOfTrails) As Coords
For Objects=1 To NrOfTrails
Make Object Plain Objects,8,18
Texture Object Objects,1
Scale Object Texture Objects,0.9,0.9
If Objects>1 Then Ghost Object On Objects
Next Objects
Position Camera 0,0,-300
Do
Move Object Right 1,MouseMoveX()
Move Object Up 1,-MouseMoveY()
Trail(1).x=Object Position X(1)
Trail(1).y=Object Position Y(1)
For Trails=NrOfTrails To 2 Step-1
Trail(Trails).x=Trail(Trails-1).x
Trail(Trails).y=Trail(Trails-1).y
Position Object Trails,Trail(Trails).x,Trail(Trails).y,0
Next Trails
Sync
Loop