what i want my program to do is simply draw a series of sprites, in an order along an imaginary \'shelf\' starting from 0,0, right next to each other. each image is 78 x 149 in size. and i am using the dimensions themselves to determine the position with my nested for loops.
this is my code, i dont understand why these images are all being displayed on top of each other.
load image \"imageOne.jpg\", 4
load image \"imageOne.jpg\", 5
load image \"imageOne.jpg\", 6
for temp = 4 to 6 step 1
for tempx = 0 to 234 step 78`234 = 78x3
for tempy = 0 to 447 step 149`447 = 149x3
sprite temp, tempx, tempy, temp
next tempy
next tempx
next temp
----------------------------------------------------
Just because they are paranoid, doesnt mean they arent out to get you.