|
#11
|
||||
|
||||
|
Quote:
i just updated it. it may work. Quote:
this 'white square' issue can be bypassed. however, after doing so, you'll need to call 'FMXForm.Show' following the 'FMXDesigning' procedure; otherwise, it won't display anything. if this solution works for you, i'll implement this fix in the next update. (the DLL file in the example is in developer mode, so please refrain from using it in the main stream.) if i specify the changes in the code: Code:
procedure InitializeWizard();
begin
...
FMXDesigning;
// New - FMXInnoDev.dll: [2023-08-28]
Page1.Visible(False);
Page2.Visible(False);
Page3.Visible(False);
Page4.Visible(False);
Page5.Visible(False);
FMXForm.Show;
//
...
end;
procedure CurPageChanged(CurPageID: Integer);
begin
...
if CurPageID = wpWelcome then
begin
...
if FMXFirstRun then
begin
FMXFirstRun := false;
// New
//Page1.AnimDelay(0.5);
//
end else
Page1.AnimDelay(0);
...
end;
...
end;
. Last edited by BLACKFIRE69; 14-07-2024 at 02:03. |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Windows Fluent Effects Standalone API - InnoSetup / VCL / FXM | BLACKFIRE69 | Conversion Tutorials | 0 | 15-11-2023 17:35 |
| Windows Phone Installer similar to razor12911's original design? | Kitsune1982 | Conversion Tutorials | 0 | 02-07-2020 13:04 |
| INDEX - Conversion Tutorial Index | Razor12911 | Conversion Tutorials | 5 | 11-06-2020 02:05 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |