I think theres no native support to gif animated images.
How is the best way? any free component that allow that? I was thinking in using a TImage and a ImageList +
this is simply loading an animated gif and not making one
procedure TForm1.FormCreate(Sender: TObject);
begin
( Image1.Picture.Graphic as TGIFImage ).Animate := True;// gets it goin'
( Image1.Picture.Graphic as TGIFImage ).AnimationSpeed:= 500;// adjust your speed
Form1.DoubleBuffered := True;// stops flickering
end;
stackoverflow has helped me and so my little bit in return :)