If you want Real time data on your Sprite movements, for example for debugging, you can always refer to the variable and use it in a print/text statement.
For example if you had a sprite using XPOS and YPOS.
Paste Sprite 1, XPOS, YPOS
you could then use something like
Print "Sprite Xpos: " + Str$(XPOS)
Print "Sprite Ypos: " + Str$(YPOS)
Working Example:
sync on
`get Sprite
box 0,0,100,100
get image 1,0,0,100,100
sprite 1,0,0,1
hide sprite 1
Xpos#=100
Ypos#=100
do
cls
`Use Var to position sprites
paste sprite 1,Xpos#, Ypos#
`Simple Controls to Change sprite X Position
if rightkey()=1 then inc Xpos#,1
if leftkey()=1 then dec Xpos#,1
`Check the Var value to see if it changed, or if the sprite is moving
Print "Sprite Xpos: " + Str$(Xpos#)
Print "Sprite Ypos: " + Str$(Ypos#)
sync
loop
<ahref="http://dsarchy.deviantart.com/">My deviant page </a>