Animated Pictures

Blitz3D Forums/Blitz3D Programming/Animated Pictures

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
==============================================

Nevermind I figured it out my self.