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

Reply
 
Thread Tools Display Modes
  #691  
Old 28-12-2023, 11:46
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 670
Thanks: 471
Thanked 2,400 Times in 544 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by Jahan1373 View Post
Hello friends, does anyone have a solution to extract these types of files in the installation

@Jahan1373,

it would be more suitable to address your questions through private messages or relevant threads. additionally, try to limit multiple messages on a single topic for the benefit of others searching through the content. thank you.
Reply With Quote
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (28-12-2023), Ele (28-12-2023), hitman797 (03-01-2024)
Sponsored Links
  #692  
Old 28-12-2023, 13:47
statics statics is offline
Registered User
 
Join Date: Dec 2023
Location: Brazil
Posts: 3
Thanks: 4
Thanked 1 Time in 1 Post
statics is on a distinguished road
Is there any way to include DSG compatibility in LizzardInstaller?
The changelog states that Cesar includes this module, but I can't find the scripts to use as a base
Reply With Quote
The Following User Says Thank You to statics For This Useful Post:
audiofeel (12-01-2024)
  #693  
Old 29-12-2023, 00:42
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 670
Thanks: 471
Thanked 2,400 Times in 544 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno v1.0.0.2 - New Updates



FMXInno Final Release: [2023-Dec-29] - Update 02


Quote:
@everyone who contributed to FMXInno,

As we wrap up the year, and with this being the last update for this year, i want to express my gratitude for your invaluable contributions—bug reports, feature requests, and creative ideas. Your involvement has played a key role in refining FMXInno throughout all the years since the start. Thanks for being part of the FMXInno journey. Wishing you all the best in the coming year!

Cheers!

- BLACKFIRE

New update uploaded to first post, check it out.


What's new:
Code:
1. Added:
   - function wSystemReboot(EWX_Flags: UINT): Boolean;
   - function WinElevenTime(const IsClock24: Boolean): WideString;
   - function WinElevenDate: WideString;
   - procedure WinElevenChangeTimeAbbrev(const sAM, sPM: WideString);
   - procedure WinElevenChangeTimeFormat(const sTimeFormat: WideString);
   - procedure WinElevenChangeDayStr(const DayIdx: Integer; DayStr: WideString);
   - procedure WinElevenChangeMonthStr(const MonthIdx: Integer; MonthStr: WideString);
   - procedure WinElevenChangeDateFormat(const sDateFormat: WideString);
   - New FTrackBarCustom class.

2. Updated:
   - function wGetShortCut(Key: Word; Shift: TShiftState): TShortCut;
   - FCmdOut class.
   - FVirtualAction class.
   - FInstNewProc class.
   - DrawFrame for FForm, FCustomFluentWindow, FFluentDirBrowse and FFluentStartBrowse classes. 

3. Fixed:
   - function InstallFMXFont(FontFileName: WideString): Boolean;
   - function DeleteFMXFont(FontFileName: WideString): Boolean;
   - procedure InvalidateFMXFont;
   - IsChecked for FToggleCheckBox.

4. FFluentDirBrowse, FFluentStartBrowse are now more customizable.
  - Added DisableDefaultAppName.
  - Button settings
  - and more.

5. Some improvements and minor bug fixes.

Last edited by BLACKFIRE69; 14-07-2024 at 03:14.
Reply With Quote
The Following 8 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (29-12-2023), ffmla (29-12-2023), hitman797 (30-12-2023), Jahan1373 (01-01-2024), Lord.Freddy (29-12-2023), nordi (09-01-2024), statics (29-12-2023), Tihiy_Don (29-12-2023)
  #694  
Old 29-12-2023, 02:45
Tihiy_Don Tihiy_Don is offline
Registered User
 
Join Date: Mar 2023
Location: Los Angeles Lakers
Posts: 42
Thanks: 89
Thanked 23 Times in 16 Posts
Tihiy_Don is on a distinguished road
Quote:
Originally Posted by BLACKFIRE69 View Post
FTrackBarCustom:



1. FTrackBar - this depends on the Style file, so you need the ability to create or modify a new Style file.

2. FPictureTrackBar - a botva2-like trackbar requires skill in Photoshop.

3. for users like me who aren't design experts, we need an easy but fully customizable trackbar for general use. so, FTrackBarCustom may be suitable for that purpose.

4. i'm quite busy right now, so the given example is a bit ugly (no color matching). i'm sure you can design a better one on your own.


Code:
    function FCreate(FHandle, FFormHandle: TFmxObject; const FLeft, FTop, FWidth, FHeight, FBtnTop, FBtnWidth, FBtnHeight: Single; IsRoundSlide: Boolean): TFmxObject;
    procedure Left(FLeft: Single);
    procedure Top(FTop: Single);
    procedure Width(FWidth: Single);
    procedure Height(FHeight: Single);
    procedure Visible(FVisible: Boolean);
    procedure Enabled(FEnabled: Boolean);
    procedure FillColor(AlColor: Integer);
    procedure FillPicture(const Image: WideString; WrapMode: TWrapMode);
    procedure FillGradient(FColor1, FColor2: Integer; FStyle: TGradientStyle);
    procedure FillGradientLinearAngle(FAngle: Single);
    procedure FillGradientRadialAngle(FAngle: Single);
    procedure CusGradientPosition(X1, Y1, X2, Y2: Single);
    procedure StrokeColor(AlColor: Integer);
    procedure StrokeSetting(FThickness: Single; CapStyle: TStrokeCap; Dash: TStrokeDash; Join: TStrokeJoin);
    procedure StrokePicture(const Image: WideString; WrapMode: TWrapMode);
    procedure StrokeGradient(FColor1, FColor2: Integer; FStyle: TGradientStyle);
    procedure StrokeGradientLinearAngle(FAngle: Single);
    procedure StrokeGradientRadialAngle(FAngle: Single);
    procedure FillColorSlide(AlColor: Integer);
    procedure FillPictureSlide(const Image: WideString; WrapMode: TWrapMode);
    procedure FillGradientSlide(FColor1, FColor2: Integer; FStyle: TGradientStyle);
    procedure FillGradientLinearAngleSlide(FAngle: Single);
    procedure FillGradientRadialAngleSlide(FAngle: Single);
    procedure CusGradientPositionSlide(X1, Y1, X2, Y2: Single);
    procedure StrokeColorSlide(AlColor: Integer);
    procedure StrokeSettingSlide(FThickness: Single; CapStyle: TStrokeCap; Dash: TStrokeDash; Join: TStrokeJoin);
    procedure StrokePictureSlide(const Image: WideString; WrapMode: TWrapMode);
    procedure StrokeGradientSlide(FColor1, FColor2: Integer; FStyle: TGradientStyle);
    procedure StrokeGradientLinearAngleSlide(FAngle: Single);
    procedure StrokeGradientRadialAngleSlide(FAngle: Single);
    procedure Opacity(FOpacity: Single);
    procedure OpacitySlide(FOpacity: Single);
    procedure OpacityTotal(FOpacity: Single);
    procedure RotationAngleSlide(FRotationAngle: Single);
    procedure RotationCenterSlide(X, Y: Single);
    procedure CornerStyle(XRadi, YRadi: Single; FCorners: TCorners; CornerType: TCornerType);
    procedure Sides(Sides: TSides);
    procedure Scale(X, Y: Single);
    procedure CornerStyleSlide(XRadi, YRadi: Single; FCorners: TCorners; CornerType: TCornerType);
    procedure SidesSlide(Sides: TSides);
    procedure ScaleSlide(X, Y: Single);
    procedure SetValue(const FValue: Single);
    procedure SetMin(const FValue: Single);
    procedure SetMax(const FValue: Single);
    procedure OnChange(Event: TNotifyEvent);
    procedure AddProgress(AlColor: Integer);
    procedure AddProgressPicture(const Image: WideString; WrapMode: TWrapMode);
    procedure AddProgressGradient(FColor1, FColor2: Integer; FStyle: TGradientStyle);
    procedure ProgressVisible(FVisible: Boolean);
    procedure ProgressOpacity(FOpacity: single);
    procedure SetTag(Tag: Integer);
    procedure BringToFront;
    procedure BringToFrontSlide;
    procedure SendToBack;
    function GetTag: Integer;
    function GetValue: Single;
    function GetMax: Single;
    function GetMin: Single;
    function GetLeft: Single;
    function GetTop: Single;
    function GetWidth: Single;
    function GetHeight: Single;
    function GetObjectSlide: LongInt;
    function GetObjectBkg: LongInt;
    function GetObject: LongInt;
    function HandleSlide: TFmxObject;
    function HandleBkg: TFmxObject;
    function Handle: TFmxObject;
Thank you very much! This is what I've been waiting for! I just don't have the skills of a designer in graphic editors!
Reply With Quote
The Following 2 Users Say Thank You to Tihiy_Don For This Useful Post:
BLACKFIRE69 (29-12-2023), hitman797 (30-12-2023)
  #695  
Old 29-12-2023, 09:38
Tihiy_Don Tihiy_Don is offline
Registered User
 
Join Date: Mar 2023
Location: Los Angeles Lakers
Posts: 42
Thanks: 89
Thanked 23 Times in 16 Posts
Tihiy_Don is on a distinguished road
When changing the visible property of the FTrackBarCustom component to false for the first time, part of the Progress element does not disappear. It disappears when switching again. even if you register these properties together, the problem is similar:
Quote:
VolTrackbar.Visible(false);
VolTrackbar.ProgressVisible(false);
Example:
Reply With Quote
The Following 2 Users Say Thank You to Tihiy_Don For This Useful Post:
Behnam2018 (29-12-2023), Jahan1373 (01-01-2024)
  #696  
Old 01-01-2024, 12:04
Jahan1373 Jahan1373 is offline
Registered User
 
Join Date: Jan 2022
Location: Yes
Posts: 46
Thanks: 94
Thanked 8 Times in 8 Posts
Jahan1373 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
Adaptation - localization of Jiva newstone script
(Translation into Russian. Changing the size of some objects, etc.).
Everything has been transferred to the FMXInno library by Blackfire69 dated November 06, 2023.
Unboxing via IsArcEx by Blackfire69.
All functionality is in place.
Comparison of systems requirements, Site verification. Animation. Gaussian Blur.
About the game page.
Splash screensaver.
Music.
Pause while unpacking
Restarting (itself) the installation after an unsuccessful installation.
Removing the game (if there is a key in the registry) before installation
Requires Inno Setup 5.6.1 and higher.
Thanks to Blackfire69
Please use the English language in the installation, as I do not know Russian
Reply With Quote
The Following User Says Thank You to Jahan1373 For This Useful Post:
Behnam2018 (01-01-2024)
  #697  
Old 02-01-2024, 04:06
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 670
Thanks: 471
Thanked 2,400 Times in 544 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno - Missing features

Quote:
>>> i've noticed that some of the useful features in the FMXInno developer edition(dev) are missing in the final release. therefore, i plan to include them in future updates.

What's new:

Code:
* Added missing FTypedText class.
* Added missing FTypedLine class.
.

Last edited by BLACKFIRE69; 14-07-2024 at 03:14.
Reply With Quote
The Following 6 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (02-01-2024), audiofeel (02-01-2024), Behnam2018 (02-01-2024), hitman797 (02-01-2024), Lord.Freddy (02-01-2024), Tihiy_Don (02-01-2024)
  #698  
Old 02-01-2024, 08:49
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 372
Thanks: 444
Thanked 860 Times in 312 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by Jahan1373 View Post
Please use the English language in the installation, as I do not know Russian
All the scripts that I post here in the public are just examples of the excellent work of the dll library. We have more than 170 languages in our country. And what am I supposed to do? Translate it all into 170 languages? My scripts are not the final solution. I do not have megalomania and I do not require anyone to specify me as the author, if I am a healthy person, then I should not care what you do next with my scripts. Use Google Translator
Reply With Quote
The Following 5 Users Say Thank You to audiofeel For This Useful Post:
Behnam2018 (04-01-2024), DomoVoi_94 (02-01-2024), hitman797 (03-01-2024), Masquerade (03-01-2024), Tihiy_Don (02-01-2024)
  #699  
Old 03-01-2024, 13:56
Jahan1373 Jahan1373 is offline
Registered User
 
Join Date: Jan 2022
Location: Yes
Posts: 46
Thanks: 94
Thanked 8 Times in 8 Posts
Jahan1373 is on a distinguished road
://www.mediafire.com/file/gh4um1dsm92xbeg/Help.zip/file
Hello
Can someone help me, I have a problem with this installation
CPU will be 100% after installation
Second, after the installation is finished, the installation icons are opened, the problem is that they are white on the desktop, the game icon is not visible.
Friends, how to solve this problem?
Reply With Quote
The Following User Says Thank You to Jahan1373 For This Useful Post:
Behnam2018 (04-01-2024)
  #700  
Old 05-01-2024, 23:24
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 670
Thanks: 471
Thanked 2,400 Times in 544 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by Jahan1373 View Post
://www.mediafire.com/file/gh4um1dsm92xbeg/Help.zip/file
Hello
Can someone help me, I have a problem with this installation
CPU will be 100% after installation

1. the following functions have been updated:
Code:
1. DeleteFMXFont.
2. FMXInnoShutDown.
2. the updated version has been tested on both Windows 10 and 11. replace the old files with the attached files below and

3. ensure the following order in your script file:

Code:
procedure DeinitializeSetup();
begin
  { Font }
  DeleteFMXFont(ExpandConstant('{tmp}\Your_Font_File_Here.ttf'));

  { ISArcEx }
  ISArcExCleanUp;

  { FMXInno }
  FMXInnoShutDown;
end;
4. if you are unsure how to modify your script, feel free to send it to us.

.

Last edited by BLACKFIRE69; 22-01-2024 at 22:51.
Reply With Quote
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (06-01-2024), hitman797 (06-01-2024), Lord.Freddy (06-01-2024), Tihiy_Don (06-01-2024)
  #701  
Old 07-01-2024, 01:43
Tihiy_Don Tihiy_Don is offline
Registered User
 
Join Date: Mar 2023
Location: Los Angeles Lakers
Posts: 42
Thanks: 89
Thanked 23 Times in 16 Posts
Tihiy_Don is on a distinguished road
An error started to occur deleting the font after I replaced the library with a new one. Do the others have this problem or am I the only one?

Quote:
procedure DeinitializeSetup();
begin
DeleteFMXFont(ExpandConstant('{tmp}\segmdl2.ttf')) ;
ISArcExCleanUp;
FMXInnoShutDown;
end;
Moreover, I noticed an interesting feature, if you leave the order that I had earlier, then everything works fine.

Quote:
ISArcExCleanUp;
DeleteFMXFont(ExpandConstant('{tmp}\segmdl2.ttf')) ;
FMXInnoShutDown;

Last edited by Tihiy_Don; 07-01-2024 at 02:40.
Reply With Quote
  #702  
Old 07-01-2024, 02:19
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 372
Thanks: 444
Thanked 860 Times in 312 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by Tihiy_Don View Post
An error started to occur deleting the font after I replaced the library with a new one. Do the others have this problem or am I the only one?
Moreover, I noticed an interesting feature, if you leave the order that I had earlier, then everything works fine.
First we delete the font, and only then we kill the IsArcEx and FMXInnoShutDown.
Code:
DeleteFMXFont(ExpandConstant('{tmp}\segmdl2.ttf')) ;
ISArcExCleanUp;
FMXInnoShutDown;
And also, if your repack will not be deployed on Windows 7, then you do not need to install this font (Segoe MDL2 Assets), it is available in both Windows 10 and Windows 11

Last edited by audiofeel; 07-01-2024 at 02:26.
Reply With Quote
  #703  
Old 07-01-2024, 02:43
Tihiy_Don Tihiy_Don is offline
Registered User
 
Join Date: Mar 2023
Location: Los Angeles Lakers
Posts: 42
Thanks: 89
Thanked 23 Times in 16 Posts
Tihiy_Don is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
First we delete the font, and only then we kill the IsArcEx and FMXInnoShutDown.
Code:
DeleteFMXFont(ExpandConstant('{tmp}\segmdl2.ttf')) ;
ISArcExCleanUp;
FMXInnoShutDown;
And also, if your repack will not be deployed on Windows 7, then you do not need to install this font (Segoe MDL2 Assets), it is available in both Windows 10 and Windows 11
this is exactly the error that occurs if the font is deleted in the first place. As recommended by the author of the library.

Quote:
DeleteFMXFont(ExpandConstant('{tmp}\segmdl2.ttf')) ;
ISArcExCleanUp;
FMXInnoShutDown;
Reply With Quote
  #704  
Old 07-01-2024, 03:08
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 372
Thanks: 444
Thanked 860 Times in 312 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by Tihiy_Don View Post
this is exactly the error that occurs if the font is deleted in the first place. As recommended by the author of the library.
To remove a font from the system, how to understand that it is installed?, find it along this path (C:\Users \????\AppData\Local\Microsoft\Windows\Fonts ). Restart the machine, rename the font file and try again.
Reply With Quote
  #705  
Old 07-01-2024, 03:21
Tihiy_Don Tihiy_Don is offline
Registered User
 
Join Date: Mar 2023
Location: Los Angeles Lakers
Posts: 42
Thanks: 89
Thanked 23 Times in 16 Posts
Tihiy_Don is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
To remove a font from the system, how to understand that it is installed?, find it along this path (C:\Users \????\AppData\Local\Microsoft\Windows\Fonts ). Restart the machine, rename the font file and try again.
For now, I want to deal with this problem at the file level in the folder that is being created in the temporary folder. I checked, the file "segmdl2.ttf" is there. I don't quite understand yet, and there should be a Windows font directory here.
Reply With Quote
Reply

Thread Tools
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 18:35
Windows Phone Installer similar to razor12911's original design? Kitsune1982 Conversion Tutorials 0 02-07-2020 14:04
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 03:05
Frequently Asked Questions Joe Forster/STA PC Games - Frequently Asked Questions 0 29-11-2005 10:48



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


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