Animated Pictures

Blitz3D Forums/Blitz3D Programming/Animated Pictures

Zach3D(Posted 2006) [#1]
I know this is a noob question but I never actually figured out how to make a picture animated and draw it to a screen
Could someone configure this code to make it work if the picture is an animated gif with 5 frames.


==============================================
Graphics 900,700,32,2
IMG = LoadImage("D.gif") ; I know this needs to be
Loadanimimage
While Not Keyhit(1)
cls

DrawImage IMG,200,200

flip
wend
==============================================


Zach3D(Posted 2006) [#2]
Nevermind I figured it out my self.