Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 05-12-2022, 03:55
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno + FMXInnoSk - Updates

What's new:

Code:
* Updated MFT.exe and Added some features.
  (Thanks Cesar82 for the ideas, suggestions and test runs) 

* Integrated BlendOnMoving function into library.

* Updated XHashNext. (internal)

* Added DirectX version.
   - function GetDirectXVersion(const SupportedByOS: Boolean): WideString;

* Added delayload flag.

* Bug fixing and Improvements.

checkout the first post.
Reply With Quote
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (05-12-2022), Cesar82 (05-12-2022), hitman797 (09-12-2022), MojoW (05-12-2022)
Sponsored Links
  #2  
Old 09-12-2022, 14:34
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno + FMXInnoSk - Examples

Code:
[*] Lizzard Installer  -  Another example from FMXInno.
,
Attached Images
File Type: jpg 10.jpg (88.3 KB, 474 views)
File Type: jpg 9.jpg (123.4 KB, 476 views)
File Type: jpg 8.jpg (97.5 KB, 473 views)
File Type: jpg 7.jpg (106.8 KB, 474 views)
File Type: jpg 6.jpg (70.0 KB, 478 views)
File Type: jpg 5.jpg (76.4 KB, 478 views)
File Type: jpg 4.jpg (89.3 KB, 488 views)
File Type: jpg 3.jpg (85.6 KB, 493 views)
File Type: jpg 1.jpg (79.9 KB, 500 views)
File Type: jpg 2.jpg (113.7 KB, 489 views)
File Type: jpg 11.jpg (100.6 KB, 483 views)

Last edited by BLACKFIRE69; 22-12-2022 at 10:35.
Reply With Quote
The Following 17 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (10-12-2022), audiofeel (09-12-2022), Cesar82 (09-12-2022), Dunnowho69 (13-06-2025), ffmla (11-12-2022), Gehrman (09-12-2022), Harsh ojha (11-12-2022), hitman797 (09-12-2022), houcine80 (09-12-2022), joker85 (17-06-2025), KaktoR (09-12-2022), kj911 (10-12-2022), Razor12911 (17-12-2022), Saifuddin (03-01-2026), ScOOt3r (10-12-2022), war100ck (18-03-2024), yasserdivar (07-05-2025)
  #3  
Old 14-12-2022, 08:19
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno - Updates

FMXInno (Alpha) - Updates

Code:
* A style file was injected into the DLL. 
  - Now it'll be the default skin for FMXInno until you load another style file.

* Stripped unused resources. ( 2.53 MB  -->  2.21 MB )

* Added Trackbar. (Regular and Botva-like)


__________________________________________________ ___________

Quote:
Extra:

* More styles will be added to FMXinno if someone can change the colors of the attached PNGs to the colors provided.

(i can't do it nice and smoothly, not good at stuff like editing )

* PNGs and colors are attached below.

Last edited by BLACKFIRE69; 14-07-2024 at 01:43.
Reply With Quote
The Following 6 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (16-12-2022), audiofeel (14-12-2022), ffmla (14-12-2022), Gehrman (22-01-2023), Harsh ojha (29-01-2023), hitman797 (14-12-2022)
  #4  
Old 14-12-2022, 09:02
ffmla ffmla is offline
Registered User
 
Join Date: Nov 2014
Location: Digital world
Posts: 112
Thanks: 609
Thanked 65 Times in 41 Posts
ffmla is on a distinguished road
Quote:
Originally Posted by BLACKFIRE69 View Post
FMXInno (Alpha) - Updates

Code:
* A style file was injected into the DLL. 
  - Now it'll be the default skin for FMXInno until you load another style file.

* Stripped unused resources. ( 2.53 MB  -->  2.21 MB )

* Added Trackbar. (Regular and Botva-like)


__________________________________________________ ___________
I am testing this in win 10(I only have this).
In the example script ie. Example_DefaultSkin.iss, while compiling(Inno EE 5.5.1) it throws the following exception msg.

Code:
[22:29:28.728]   InitializeWizard raised an exception (fatal).
[22:29:28.730]   Exception message:
[22:29:28.732]   Message box (OK):
	Runtime Error (at 301:2942):
	
	Exception "EFOpenError" at address 00497587.
Reply With Quote
  #5  
Old 14-12-2022, 14:15
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Arrow

Quote:
Originally Posted by ffmla View Post
I am testing this in win 10(I only have this).
In the example script ie. Example_DefaultSkin.iss, while compiling(Inno EE 5.5.1) it throws the following exception msg.
Code:

Code:
[22:29:28.728]   InitializeWizard raised an exception (fatal).
[22:29:28.730]   Exception message:
[22:29:28.732]   Message box (OK):
	Runtime Error (at 301:2942):
	
	Exception "EFOpenError" at address 00497587.
found out what the problem was...

Code:
Error:

Memo1.LoadFromfile('C:\Program Files (x86)\Inno Setup 5\license.txt');
Code:
Fix:

[Files]
...

Source: ".\license.txt"; DestDir: "{tmp}"; Flags: dontcopy;


{Code]
...

Memo1.LoadFromfile(ExtractAndLoad('license.txt'));
Code:
Hint:

* Use BlankForm instead of FluentForm for Windows 10.


Example:

#define Windows10

....

#ifdef Windows10
  FMXForm.FCreateBlankForm(WizardForm.Handle, ALCoral, '');
#else
  FMXForm.FCreateFluent(WizardForm.Handle, True, False, 0.56, 0);
#endif

...

,

Last edited by BLACKFIRE69; 14-07-2024 at 01:43.
Reply With Quote
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (16-12-2022), audiofeel (14-12-2022), ffmla (15-12-2022), Razor12911 (17-12-2022)
  #6  
Old 03-01-2026, 00:55
Saifuddin Saifuddin is offline
Registered User
 
Join Date: May 2019
Location: India
Posts: 9
Thanks: 12
Thanked 3 Times in 2 Posts
Saifuddin is on a distinguished road

1. How to fix: Selecting Drive other than C drive does'nt update free space
2. How to add command-line parameters to desktop shortcut
Reply With Quote
  #7  
Old 06-01-2026, 22:23
Saifuddin Saifuddin is offline
Registered User
 
Join Date: May 2019
Location: India
Posts: 9
Thanks: 12
Thanked 3 Times in 2 Posts
Saifuddin is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
Code:
[Execs]
; AppExe1=Tile Caption|Exec Directory|Exec File|Shortcut Name|Parameters|IconFilename|IconIndex
AppExe1=Red Dead Redemption 2||Launcher.exe|Red Dead Redemption 2 v1.0.1436|-fullscreen -skipintro|{app}\RDR2_icon.ico|0

[Icons]
#ifdef AppExe1
Name: {group}\{#E1[62]}; Filename: {app}\{#E1[60]}\{#E1[61]}; Parameters: {#E1[63]}; IconFilename: {#E1[64]}; IconIndex: {#E1[65]}; WorkingDir: {app}\{#E1[60]}; Check: CreateShortcuts1;
Name: {commondesktop}\{#E1[62]}; Filename: {app}\{#E1[60]}\{#E1[61]}; Parameters: {#E1[63]}; IconFilename: {#E1[64]}; IconIndex: {#E1[65]}; WorkingDir: {app}\{#E1[60]}; Check: CreateShortcuts1;
#endif
Thank you!
Reply With Quote
The Following 2 Users Say Thank You to Saifuddin For This Useful Post:
ADMIRAL (07-01-2026), audiofeel (07-01-2026)
  #8  
Old 08-04-2026, 12:33
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Smile It took long to respond

I’m really sorry it took me a long time to come up with something new for the FMXInno project.
There were several personal matters I had to go through,
and I didn’t have enough time to focus on the project I started.

Long story short,
I am a Full Stack Engineer, and my younger sister is a Software Engineer.
We both received new career opportunities far away from our hometown.
We decided to take those opportunities and moved away.

It took much longer than expected to settle down, and I am currently doing a few remote jobs,
so it hasn’t been easy to find free time.

I couldn’t finish the FMXInno December 2024 update (more than a year ago).
I will come back with an update, but please give me some time.

Thanks.

Last edited by BLACKFIRE69; 09-04-2026 at 01:13.
Reply With Quote
The Following 7 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (08-04-2026), Cesar82 (08-04-2026), Ele (14-04-2026), l38m (14-04-2026), Razor12911 (09-04-2026), ScOOt3r (09-04-2026), Tihiy_Don (10-04-2026)
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

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



All times are GMT -7. The time now is 08:24.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com