Is there a list of T<> identifiers in Inno Setup 6?
I am trying to load an animated gif but I'm finding it hard. TBitmapImage is incorrect, I found references online to needing to use TGifImage or TImage but they don't appear to exist in inno.
Here's what I have so far (I understand that it isn't correct):
Code:
ExtractTemporaryFile('LOGOIMAGE.GIF');
LogoImage := TGifImage.Create(WizardForm);
with LogoImage do
begin
Name := 'LogoImage';
Parent := WizardForm;
SetBounds(ScaleX(10), ScaleY(10), ScaleX(300), ScaleY(60));
//Gif.LoadFromFile(ExpandConstant('{tmp}\LOGOIMAGE.GIF'));
end;
Thanks!