If you want to move the crosshair, and set it in any position you like,you should use it as a sprite.
create bitmap 1,100,100: `create a bitmap of the size 100x100 pixels
`create the crosshairs
line 0,50,100,50
line 50,0,50,100
circle 50,50,25
get image 1,0,0,100,100: `grab the bitmap and convert it to an image
delete bitmap 1: `delete the unused bitmap for improved performance
x=200: `x coordinate of sprite
y=200: `y coordinate of sprite
sprite 1,x,y,1: `use image 1 and place it on position x,y
Whatever I did I didn't do it!