|
|
|
#1
|
|||
|
|||
|
Quote:
I tried to replace the normal PNG image, but the error still appears. Is it related to my operating system being in Chinese? |
| Sponsored Links |
|
#2
|
|||
|
|||
|
Last edited by TEAmo; 25-04-2023 at 09:04. |
|
#3
|
||||
|
||||
|
Quote:
Code:
Added new property. - FRadioButton.GroupName Last edited by BLACKFIRE69; 14-07-2024 at 01:58. |
|
#4
|
||||
|
||||
|
Quote:
i'm not sure about that. |
| The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
|
#5
|
||||
|
||||
|
Quote:
@audiofeel it seems that the opacity property is not functioning correctly on the FHTMLText custom component. Quote:
@Tihiy_Don it may not possible. "In Delphi FMX, the MediaControl component is designed to always appear on top of other components and objects on the form, even if it is placed lower in the Z-order (or stacking order) than other components. This is because the MediaControl component is responsible for rendering video and audio content on the form, and it needs to have priority over other components to ensure that the content is visible and accessible to the user." Quote:
@audiofeel In the provided example, the scrolling functionality of the scrollbox will respond to both the left/right arrow keys (FInstNewProc - Updated) and the two buttons. . Last edited by BLACKFIRE69; 14-07-2024 at 01:58. |
|
#6
|
||||
|
||||
|
Quote:
It's great that you were able to create this project using Inno setup. Is this going to be a setup or just an introduction of game? Another thing you forgot to add is the exit option
__________________
Search and Find Last edited by ADMIRAL; 04-05-2023 at 23:49. |
| The Following User Says Thank You to ADMIRAL For This Useful Post: | ||
audiofeel (05-05-2023) | ||
|
#7
|
||||
|
||||
|
Quote:
have you tried this? Code:
function ProgressCallback(OverallPct, CurrentPct, DiskTotalMB, DiskExtractedMB: integer; DiskName, CurrentFile, TimeStr1, TimeStr2, TimeStr3, Speed: WideString): longword;
var
S: WideString;
begin
S:= 'Unpacking: ' + CurrentFile;
if (length(CurrentFile) > 0) and (Page2Memo.LineStrings(Page2Memo.LineCount - 1) <> S) then
begin
Page2Memo.AddLine(S);
end;
Result:= ISArcExCancel;
end;
|
| The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (22-06-2023) | ||
|
#8
|
||||
|
||||
|
FMXInno - News update
Quote:
Code:
Tested OS: * Windows 11 Pro - latest. * Windows 10 Pro - latest. * Windows 8.1 Pro - latest. * Windows 7 Pro - Service Pack 1. , Last edited by BLACKFIRE69; 14-07-2024 at 01:59. |
|
#9
|
||||
|
||||
|
FMXInno - News Updates
Code:
* New DiskList Blueprint. Last edited by BLACKFIRE69; 14-07-2024 at 01:59. |
|
#10
|
|||
|
|||
|
White screen for some time on startup
Hi Audiofeel,
Thank you for sharing these amazing installers. However, I've found that while running the setup.exe files, for some a white screen initially loads followed by the content of the installer (attached in screenshot), which I feel can be annoying sometime. Is there any way we can bypass or fix? |
|
#11
|
|||
|
|||
|
Hi audiofeel,
Tried this and worked like a charm. I saw the changes and was able to even fix couple of other installers shared by you. However, I was unable to fix the same in Redshank Installer. FMXForm.FCreateImageForm was throwing an exception when trying to run setup.exe of Redshank Installer. Any recommendations? |
|
#12
|
||||
|
||||
|
Is it possible for you to make a diskspan plugin for your custom scripts
|
|
#13
|
|||
|
|||
|
What compression are you trying to extract using DiskSpan GUI that you want to extract from installer?
|
|
#14
|
||||
|
||||
|
I want to make backup of my games and store it each game series having a different type of installer
|
| The Following User Says Thank You to ravikant For This Useful Post: | ||
Behnam2018 (26-07-2023) | ||
|
#15
|
||||
|
||||
|
Quote:
Code:
AboutTabControl.FCreate(AboutPage.Handle);
AboutTabControl.SetBounds(100, 130, 1046, 448);
AboutTabControl.TabPosition(tpNone);
for i:= 1 to 3 do
begin
AboutTabItem[i].FCreateEx(AboutTabControl.Handle);
AboutLbl[i].FCreate(AboutTabItem[i].Handle);
AboutLbl[i].FontSetting('{#Font}', VCLFontSizeToFMX(22), ALWhiteSmoke);
AboutLbl[i].TextSetting(False, txCenter, txCenter);
AboutLbl[i].SetBounds(0, 18, 1046, 24)
AboutMemo[i].FCreate(AboutTabItem[i].Handle, True);
AboutMemo[i].SetBounds(28, 59, 1017, 358);
AboutMemo[i].FontSetting('{#Font}', VCLFontSizeToFMX2(12), ALWhiteSmoke);
AboutMemo[i].WordWrap(True);
AboutMemo[i].ReadOnly(True);
AboutMemo[i].ScrollAnimation(True);
end;
AboutLbl[1].Text(AnsiUppercase('About Game'));
AboutLbl[2].Text(AnsiUppercase('About Repack'));
AboutLbl[3].Text(AnsiUppercase('Credits'));
AboutMemo[1].AddLine(CnvtToWStr(S1));
AboutMemo[2].AddLine(CnvtToWStr(S2));
AboutMemo[3].AddLine(CnvtToWStr(S3));
AboutTabBtn[1].FCreate(AboutTabControl.Handle);
AboutTabBtn[1].SetBounds(572, 590, 50, 30);
AboutTabBtn[1].FillColor({#Color1});
AboutTabBtn[1].StrokeColor({#Color2});
AboutTabBtn[1].StrokeSetting(1.0, scFlat, sdSolid, sjMiter);
AboutTabBtn[1].CornerStyle(16, 16, [tcTopLeft, tcBottomLeft], ctBevel);
AboutTabBtnLbl[1].FCreate(AboutTabBtn[1].Handle);
AboutTabBtnLbl[1].Text(#$E938);
AboutTabBtnLbl[1].Align(Client)
AboutTabBtnLbl[1].AutoSize(True);
AboutTabBtnLbl[1].TextSetting(False, txCenter, txCenter);
AboutTabBtnLbl[1].FontSetting('Segoe MDL2 Assets', 14, ALBlack);
AboutTabBtnLbl[1].OnMouseEnter(@CommonMouseEnter);
AboutTabBtnLbl[1].OnMouseLeave(@CommonMouseLeave);
AboutTabBtnLbl[1].OnClick(@CommonOnClick);
AboutTabBtn[2].FCreate(AboutTabControl.Handle);
AboutTabBtn[2].SetBounds(622, 590, 50, 30);
AboutTabBtn[2].FillColor({#Color1});
AboutTabBtn[2].StrokeColor({#Color2});
AboutTabBtn[2].StrokeSetting(1.0, scFlat, sdSolid, sjMiter);
AboutTabBtn[2].CornerStyle(16, 16, [tcTopRight, tcBottomRight], ctBevel);
AboutTabBtnLbl[2].FCreate(AboutTabBtn[2].Handle);
AboutTabBtnLbl[2].Text(#$E937);
AboutTabBtnLbl[2].Align(Client)
AboutTabBtnLbl[2].AutoSize(True);
AboutTabBtnLbl[2].TextSetting(False, txCenter, txCenter);
AboutTabBtnLbl[2].FontSetting('Segoe MDL2 Assets', 14, ALBlack);
AboutTabBtnLbl[2].OnMouseEnter(@CommonMouseEnter);
AboutTabBtnLbl[2].OnMouseLeave(@CommonMouseLeave);
AboutTabBtnLbl[2].OnClick(@CommonOnClick);
|
| The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (27-08-2023) | ||
![]() |
|
|
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 |