sync on
sync rate 30
load image "pic1.bmp", 1
load image "pic2.bmp", 2
img = 1
do
sprite 1,x,y,img
inc img
sync
cls
loop
try that, i hope thats wut ur looking for... hope i could help
(this will only do 2 images, becuase we only loaded 2, load more, and it will do more.)
EDIT:
orr... if you want to loop the thing try this code
sync on
sync rate 30
load image "pic1.bmp", 1
load image "pic2.bmp", 2
img = 1
do
sprite 1,x,y,img
if img=2 then img=1
inc img
sync
cls
loop
(replace the 2 in "if img=2" with as many pics as u want in the loop.
err.. it sounds kinda like u want to reposition the animation too... then just add
x=x+(a number)
and/or
y=y+(a number)
in the loop to make it move that amount forever...
You did what? For who?! For how many jellybeans?!?