Hi,
Beginner question again :) This code moves a image on the screen in x+1, y+1 direction. I then want to alter the direction after a few seconds without any user input.After another 5 seconds I want to move it another direction. How do I go about scripting it like that ? Any suggestions ? Thanks in advance.
Flake.png available at
Beginner question again :) This code moves a image on the screen in x+1, y+1 direction. I then want to alter the direction after a few seconds without any user input.After another 5 seconds I want to move it another direction. How do I go about scripting it like that ? Any suggestions ? Thanks in advance.
Graphics 800,600,32 'load an image to tile image=LoadImage("flake.png") While Not KeyHit(KEY_ESCAPE) TileImage image,x,y 'move the tiled background x=x+1 y=y+1 Flip;Cls Wend
Flake.png available at