Posted: 24th Oct 2011 21:51
i would like to make lots of sprites appear at random times and appear anywhere off from the top of the screen can anyone help me please?
Posted: 25th Oct 2011 0:11
Something like this:
+ Code Snippet
setVirtualAspect(4.0/3.0)
imageID = loadImage("my_image.png")
do
    time = timer()
    if time>spawnTime
        spawnTime=time+random(1,12)
        spr = createSprite(imageID)
        setSpritePosition(spr,random(0,100),0)
    endif
    sync()
loop


You'll need to play about with it to get it how you want it though...