
-----------------------------------
Geoson
Tue Jun 08, 2004 9:00 pm

moving imported images
-----------------------------------
my friends told me to use a loop, but how, i know how to move drawn pics in turing, but i don't know the codes for an imported pic, how do you move it?  anyone post a complete page of codes for it, thx  :D

Please post in the right section next time, thank you

-----------------------------------
aside
Tue Jun 08, 2004 9:04 pm


-----------------------------------
you are trying to do an animation of a moving picture?

var pic:=Pic.FileNew ("whatever.bmp")
View.Set ("offscreenonly")
for i:1..20
cls
Pic.Draw (pic, 0+i, 0, picCopy)
View.Update
end for


or you can use sprite, which I don't have, so I can't tell you anything about it.
