|
#11
|
|||
|
|||
|
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;
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
| INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |