![]() |
|
|
|
![]() |
|
Thread Tools | Search this Thread | Display Modes |
#46
|
||||
|
||||
![]()
* Index updated.
![]() |
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
Sponsored Links |
#47
|
|||
|
|||
Quote:
|
The Following User Says Thank You to CrownRepack For This Useful Post: | ||
audiofeel (30-05-2024) |
#48
|
||||
|
||||
![]() Quote:
![]()
__________________
https://t.me/FMXInno |
The Following User Says Thank You to audiofeel For This Useful Post: | ||
hitman797 (31-05-2024) |
#49
|
||||
|
||||
![]() Quote:
![]() Last edited by audiofeel; 28-06-2024 at 04:38. |
#50
|
||||
|
||||
There are more than 10 shades in this script, are you sure that you will fit everything into the design? If you need to change a certain color for a certain object, that's another question and you can help with that. It's just that the story will repeat itself again, as with the Hitman installer, you create white buttons and you will reproach me and everyone that white symbols are not visible on it. And as for editing the style file, in this installer it is used only in two interfaces, these are "FComboBox" and "FFluentDirBrowse Edit". Shown in the screenshots. Everything else is done using code
__________________
https://t.me/FMXInno Last edited by audiofeel; 30-05-2024 at 02:01. |
The Following 3 Users Say Thank You to audiofeel For This Useful Post: | ||
#51
|
|||
|
|||
Quote:
Only thing i would like is to add music to this installer ![]() Last edited by CrownRepack; 31-05-2024 at 09:11. |
The Following User Says Thank You to CrownRepack For This Useful Post: | ||
audiofeel (31-05-2024) |
#52
|
||||
|
||||
Quote:
__________________
https://t.me/FMXInno Last edited by audiofeel; 31-05-2024 at 10:11. |
#53
|
|||
|
|||
Quote:
Code:
Button[1].FillGradient(<Some Color>, <Other Color>, gsLinear); Button[1].FillGradientLinearAngle(0); |
The Following User Says Thank You to Fak Eid For This Useful Post: | ||
Behnam2018 (19-06-2024) |
#54
|
||||
|
||||
![]() Quote:
|
The Following User Says Thank You to xjohnxedgex For This Useful Post: | ||
Behnam2018 (16-06-2024) |
#55
|
||||
|
||||
The latest version is from June 11, 2024, there is no newer version yet, What exactly happened to you?
|
The Following User Says Thank You to audiofeel For This Useful Post: | ||
Behnam2018 (13-06-2024) |
#56
|
|||
|
|||
Steam Limitless
Into the new era of FMXInno with the latest FNewINI implementation. This installer is a beast in terms of Code Optimization and new features.
- Enable or disable the use of DSG depending on your choice (Thanks to @Cesar82 for making it DSG compatible) - You can have as many AppExes (currently 4) and Data files - You can have upto 50 Redist, 50 Additional Component and 50 Languages files each. Limited because I don't want anyone to abuse the resources but if you want to increase the capacity more, check here - No need to make any changes to the script at all. The Installer.ini file inside the 'Game' folder supports everything, even Data, Redist, Component and Languages - Play Page to directly play your game by selecting AppExe from installer - Watch Game Trailer during installation. - More Installer Upgrades Benefits of the installer: - Separate .iss to read the installer script. - Code Optimized rendering of SidePanel component and Tab - Code Optimized rendering of Redist, Component and Language creation - Code Optimized for Shortcut Creation - Code Optimized for Data, Component and Language file decompression - Code Optimized for Post Install Redist Installation - Script is independent of changes in number of max Data, Redist or additional component count. You can have as many as UI can support - Better Error Handling - Fixed a bug where missing Data File still proceeded with Installation. - Variant of style.bin for FCheckbox (Thanks to @AgentV) Check out the Automate folder for: - MD5 verification of your files - Automatically creating the .iss for importing list of Tools - Automatically creating the .iss for extracting required tools during decompression What is DSG (DiskSpan) compatibility? The infamous DiskSpan compressor has been made compatible with this installer. Whether or not your compression was done using DSG, you can still extract your Data Files by: Copying the Setup.dll in the Unpack > Decomp_DSG Folder In case you don't know the compression method, open your Data#.bin with FreeArc and go to "INFO" > "Solid Blocks" tab to know exactly the name of the methods used. Within the "Setup DLL" tab of the DSG, access the "Maker" sub-tab and paste the methods one on each line. Example: Code:
xtool:mzlib+srep+lolz xtool:bk2 xtool:mkraken:core_2.9.2 More Info DiskSpan GUI PS: User also has an option to choose if they want to extract using their tools or DSG. In case they opt to choose their tools, they can put their files inside Unpack > Decomp_Custom > Tools. And run, Automate > Create Tools List.bat and Create Tools Init.bat This installer will have more upgrade if these pending requests are fulfilled. Last edited by Fak Eid; 24-06-2024 at 04:23. |
The Following 12 Users Say Thank You to Fak Eid For This Useful Post: | ||
ADMIRAL (18-06-2024), audiofeel (17-06-2024), Behnam2018 (17-06-2024), BLACKFIRE69 (17-06-2024), Cesar82 (18-06-2024), CrownRepack (18-06-2024), Gehrman (15-04-2025), hitman797 (17-06-2024), Jahan1373 (19-06-2024), ScOOt3r (18-06-2024), Wanterlude (20-05-2025), war100ck (18-06-2024) |
#57
|
|||
|
|||
hi audiofeel, in vesta installer, there isn't any Remaining Time in the installer, i added the link from another installer and now i have Remaining time in the installer when installing, the problem now is that i don't know how to change the "secs" and "mins" to display the full word as "Seconds" and "Minutes". Any idea?
Last edited by CrownRepack; 18-06-2024 at 09:06. |
#58
|
||||
|
||||
Quote:
Code:
{ IsArcEx 0.4.0.1 } function ISArcExInit(WinHandle: Longint; TimeFormat: Integer; Callback: TCallback): Boolean; external 'ISArcExInit@files:FMXInno.dll stdcall delayload'; (* > WinHandle: MainForm.Handle > TimeFormats. 1 = 00:00:00 2 = x hr y min | x min y sec 3 = x hours y minutes | x minutes y seconds > Callback: The callback function. *) function ISArcExInitEx(WinHandle: Longint; TimeFormat: Integer; Callback: TCallbackEx): Boolean; external 'ISArcExInitEx@files:FMXInno.dll stdcall delayload'; Last edited by audiofeel; 18-06-2024 at 09:21. |
The Following 2 Users Say Thank You to audiofeel For This Useful Post: | ||
CrownRepack (18-06-2024), Gehrman (15-04-2025) |
#60
|
||||
|
||||
You may need some kind of online service for selecting shades based on photos.
|
The Following User Says Thank You to audiofeel For This Useful Post: | ||
CrownRepack (18-06-2024) |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
FMXInno - Windows Fluent Design Installer UI for Inno | BLACKFIRE69 | Conversion Tutorials | 865 | 11-06-2025 11:48 |
ASIS: Advanced Simple Installer Script | KaktoR | Conversion Tutorials | 1420 | 03-06-2025 06:34 |
INDEX - Conversion Tutorial Index | Razor12911 | Conversion Tutorials | 5 | 11-06-2020 02:05 |
Installer Creator Source Code | Razor12911 | Conversion Tutorials | 19 | 13-12-2015 10:20 |