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

Reply
 
Thread Tools Display Modes
  #31  
Old 11-06-2022, 05:11
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 468
Thanks: 337
Thanked 1,457 Times in 353 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
please make examples of "SysFunc.iss". especially interested in "function BrowseDirModern".
SysFuncDLL Fix + BrowseDirModern Example

Quote:
Originally Posted by audiofeel View Post
why does the "FDirBrowse" already have a path "C:\Program Files (x86)" and can't apply {code:nosd} ?
oops. check this out.

FMXInnoDLL v1.0.0.1 + Fix (Lib Only)

Code:
[Setup]
...
DefaultDirName ={code:DefMyPath}\Inno Example with FMXInno Library
...

{Code]
...
function DefMyPath(Param: String): String;
begin
  Result:= ExpandConstant('{win}');
end;
...

procedure FMXDesigning; 
begin
...
{ Dir Browse Dlg }                                 
  DirBrowseDlg.FCreate(0, 'Select Install Directory', WizardForm.DirEdit.Text);
...
end;
Attached Images
File Type: png 1.png (18.5 KB, 291 views)
File Type: png 2.png (23.6 KB, 291 views)
Reply With Quote
The Following 8 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (12-06-2022), audiofeel (11-06-2022), Cesar82 (12-06-2022), Gehrman (11-06-2022), Harsh ojha (23-06-2022), houcine80 (11-06-2022), Razor12911 (19-06-2022), ScOOt3r (11-06-2022)
Sponsored Links
  #32  
Old 19-06-2022, 17:48
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 468
Thanks: 337
Thanked 1,457 Times in 353 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno v1.0.0.2 - Update

Update!

Code:
* Added color conversion between FMX and VCL (Testing).
* Added image slideshow api.
  -- Supports multi-transitions.
* Added some other functions.
  -- GetDesktopImgColorVCL
  -- GetDesktopImgColorFMX
* Added HTTP Client Api to work with single-thread.
* Fixed minor issues known so far.
* Updated Classes.
.
Attached Images
File Type: png FMXInno_img02.png (117.0 KB, 266 views)
File Type: png ImgSlideShow_01.png (69.2 KB, 260 views)
File Type: png ImgSlideShow_02.png (152.3 KB, 266 views)
File Type: png FDownloaderS.png (119.3 KB, 260 views)
File Type: png DirBrowse.png (25.9 KB, 260 views)

Last edited by BLACKFIRE69; 24-06-2022 at 11:03.
Reply With Quote
The Following 7 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (21-06-2022), audiofeel (20-06-2022), ffmla (21-06-2022), Gehrman (20-06-2022), Harsh ojha (22-06-2022), hitman797 (21-06-2022), Razor12911 (19-06-2022)
  #33  
Old 19-06-2022, 22:47
fabrieunko fabrieunko is offline
Registered User
 
Join Date: Sep 2021
Location: france
Posts: 129
Thanks: 187
Thanked 30 Times in 23 Posts
fabrieunko is on a distinguished road
hello, I have a question, is your setup usable with dsg?
Reply With Quote
  #34  
Old 20-06-2022, 02:55
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: USSR
Posts: 102
Thanks: 140
Thanked 186 Times in 69 Posts
audiofeel is on a distinguished road
Error - Exeption:.

Quote:
Originally Posted by BLACKFIRE69 View Post
Update!

Code:
* Added color conversion between FMX and VCL (Testing).
* Added image slideshow api.
  -- Supports multi-transitions.
* Added some other functions.
  -- GetDesktopImgColorVCL
  -- GetDesktopImgColorFMX
* Added HTTP Client Api to work with single-thread.
* Fixed minor issues known so far.
* Updated Classes.
.
Greetings. If a theme with multiple images (slide show) is selected in the system, an error occurs. I attach a screenshot. possible only on the Win 11 Dev 25410 build
https://ibb.co/sKr140s
Reply With Quote
  #35  
Old 20-06-2022, 06:50
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 468
Thanks: 337
Thanked 1,457 Times in 353 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by fabrieunko View Post
hello, I have a question, is your setup usable with dsg?
yes, after a few modifications, it can be done. but by default it doesn't work with dsg.
Reply With Quote
  #36  
Old 20-06-2022, 06:53
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 468
Thanks: 337
Thanked 1,457 Times in 353 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
Greetings. If a theme with multiple images (slide show) is selected in the system, an error occurs. I attach a screenshot. possible only on the Win 11 Dev 25410 build
https://ibb.co/sKr140s
fixed!

.
Attached Images
File Type: png Screenshot02.png (169.2 KB, 246 views)

Last edited by BLACKFIRE69; 12-07-2022 at 03:19.
Reply With Quote
The Following User Says Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (21-06-2022)
  #37  
Old 20-06-2022, 11:27
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 468
Thanks: 337
Thanked 1,457 Times in 353 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno v1.0.0.2 - Fix 02

FMXInno v1.0.0.2 - Fix 02

Code:
following functions have been fixed.

1. GetDesktopImgColorVCL
2. GetDesktopImgColorFMX

3. FMXColorToVCL
4. VCLColorToFMX

5. SetVCLColorLighter
6. SetVCLColorDarker

7. GetImgColorVCL
8. GetImgColorFMX
.
Attached Images
File Type: png 1 (1).png (193.5 KB, 245 views)
File Type: png 2 (1).png (207.8 KB, 239 views)
File Type: png 3.png (180.8 KB, 241 views)

Last edited by BLACKFIRE69; 12-07-2022 at 03:19.
Reply With Quote
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (21-06-2022), audiofeel (21-06-2022), ffmla (21-06-2022), Harsh ojha (23-06-2022)
  #38  
Old 22-06-2022, 13:26
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 468
Thanks: 337
Thanked 1,457 Times in 353 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno Updates

FMXInno Updates

Code:
* Customizable lock screen.
  -- AutoMode
  -- Animations
  -- Blur Effect
  -- Custom Font Settings
  -- Custom positions
  -- Lockscreen Image
  -- Lockscreen Text
.
Attached Images
File Type: png LockScreen0.png (197.0 KB, 226 views)
File Type: png LockScreen2.png (121.2 KB, 225 views)
File Type: png LockScreen1.png (30.0 KB, 222 views)

Last edited by BLACKFIRE69; 12-07-2022 at 03:20.
Reply With Quote
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (22-06-2022), Gehrman (24-06-2022), Harsh ojha (23-06-2022)
  #39  
Old 23-06-2022, 14:20
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 468
Thanks: 337
Thanked 1,457 Times in 353 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno Updates

FMXInno Updates

Code:
Just added Button sounds and LockScreen lock/unlock sounds. ;)

* Button Sounds:
   1. Clear Buttons.
   2. ClearGradient Buttons.
   3. Color Buttons.
   4. ColorGradient Buttons.
   5. Picture Buttons.
   6. WinRound Buttons.
   7. FMX Default Buttons.

* Custom Dlgs:	
   1. Exit Page Buttons.
   2. DirBrowse Dlg Buttons.
   3. StartMenu Dlg Buttons.
	
* LockScreen Sounds: 
   1. Lock.
   2. Unlock.
Code:
Examples:

{ Dir Browse Btn }
  BrowseBtn.FCreate(FMXForm.Handle, Ns(WizardForm.InnerNotebook.Left + WizardForm.DirBrowseButton.Left),
    Ns(WizardForm.InnerNotebook.Top + WizardForm.DirBrowseButton.Top), '&Browse...');
  BrowseBtn.BackColor($FF3DFA85, $FF0885EB);
  BrowseBtn.GradientPosition(False);
  BrowseBtn.OnClick(@BrowseBtnOnClick);
#ifdef ButtonSounds
  BrowseBtn.ButtonSounds(ExtractAndLoad('Enter.wav'), '', ExtractAndLoad('Click.wav'));
#endif


{ Dir Browse Dlg }
  DirBrowseDlg.FCreate(0, 'Select Install Directory', WizardForm.DirEdit.Text);
  DirBrowseDlg.ChangeBckgndClr($00AAFA05);
  DirBrowseDlg.Transparency(26);
#ifdef ButtonSounds
  DirBrowseDlg.ButtonSounds(ExtractAndLoad('Enter.wav'), '', ExtractAndLoad('Click.wav'));
#endif


{ Exit Page }
  ExitMsg.FCreate(FMXForm.Handle, NS(170), ALCrimson, CustomMessage('YesBtn'), 
	CustomMessage('NoBtn'), CustomMessage('ExitMsg1'), CustomMessage('ExitMsg2'), False, False, False);
  ExitMsg.Opacity(0.9);
  ExitMsg.YesBtnClick(@ExitYesBtnOnClick);
  ExitMsg.NoBtnClick(@ExitNoBtnOnClick);
#ifdef ButtonSounds
  ExitMsg.ButtonSounds(ExtractAndLoad('Enter.wav'), '', ExtractAndLoad('Click.wav'));
#endif


{ Lock Screen }
  LockScreen.FCreate(FMXForm.Handle, txCenter, True);
  LockScreen.AutoActivate(FMXForm.HandleHWND, WizardForm.Handle);
#ifdef LockScreenSounds
  LockScreen.LockSounds(ExtractAndLoad('Lock.wav'), ExtractAndLoad('UnLock.wav'));
#endif

Last edited by BLACKFIRE69; 12-07-2022 at 03:20.
Reply With Quote
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (14-07-2022), audiofeel (26-06-2022)
  #40  
Old 26-06-2022, 08:13
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 468
Thanks: 337
Thanked 1,457 Times in 353 Posts
BLACKFIRE69 is on a distinguished road
Thumbs up FMXInno v1.0.0.2 - Final Release

Quote:
Originally Posted by BLACKFIRE69 View Post
FMXInno v1.0.0.2 - Fix 02
Code:
following functions have been fixed.

1. GetDesktopImgColorVCL
2. GetDesktopImgColorFMX

3. FMXColorToVCL
4. VCLColorToFMX

5. SetVCLColorLighter
6. SetVCLColorDarker

7. GetImgColorVCL
8. GetImgColorFMX

two additional functions were added if needed.

Quote:
function GetImgPartColorFMX(AImage: WideString; PixelX, PixelY, PixelH, PixelW: Integer): Integer;
function GetImgPartColorVCL(AImage: WideString; PixelX, PixelY, PixelH, PixelW: Integer): Integer;


Example:

{ TranslucentRect }
TranslucentRect.FCreate(BackgroundImage.Handle);
TranslucentRect.SetBounds(NS(76), NS(32), NS(485), NS(128));
TranslucentRect.BlurColor(GetImgPartColorFMX(ExtractAndLoad('wallpaper_color.jpg'), 290, 700, 43, 148));
TranslucentRect.OnMouseDown(@FormMouseDown);

{ TranslucentCircle }
TranslucentCircle.FCreate(BackgroundImage.Handle);
TranslucentCircle.SetBounds(NS(32), NS(192), NS(200), NS(200));
TranslucentCircle.BlurColor(GetImgPartColorFMX(ExtractAndLoad('wallpaper_color.jpg'), 773, 277, 26, 57));
TranslucentCircle.OnMouseDown(@FormMouseDown);

{ TranslucentCallout }
TranslucentCallout.FCreate(BackgroundImage.Handle) ;
TranslucentCallout.SetBounds(NS(408), NS(192), NS(200), NS(200));
TranslucentCallout.BlurColor(GetImgPartColorFMX(ExtractAndLoad('wallpaper_color.jpg'), 681, 658, 34, 91));
TranslucentCallout.OnMouseDown(@FormMouseDown);


FMXInno v1.0.0.2 - Final Release [06/26/22] has been uploaded to the first post. you can download it now.

Code:
FMXInno External Plugins:

  - CLILib v1.0.0.0
  - CmdOut v1.0.0.2
  - FDownloader_multi v1.0.0.0
  - ImgSlideShow v1.0.0.0 
  - ISArcEx v0.4.0.0
  - MFT v1.1.0.0
  - Sysfunc v1.0.0.0
  - SplitterLib v1.0.0.0
  - XBass_f v4.0.0.0
  - ZipperLib v1.0.0.0
Reply With Quote
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ffmla (26-06-2022), Harsh ojha (26-06-2022), houcine80 (30-06-2022)
  #41  
Old 30-06-2022, 12:52
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 468
Thanks: 337
Thanked 1,457 Times in 353 Posts
BLACKFIRE69 is on a distinguished road
Wink FMXInno Tests

( just an attempt to test the FMXInno library. this concept was taken from the @hitman797's OLD Installer post.
i won't recreate it with the FMXInno. just to give you an idea of the capabilities of FMXInno. )

.
Attached Images
File Type: png installer2.png (1,002.0 KB, 145 views)

Last edited by BLACKFIRE69; 12-07-2022 at 03:21.
Reply With Quote
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (14-07-2022), audiofeel (30-06-2022), hitman797 (30-06-2022), ScOOt3r (30-06-2022)
  #42  
Old 30-06-2022, 18:02
ScOOt3r ScOOt3r is offline
Registered User
 
Join Date: Jun 2019
Location: Canada
Posts: 56
Thanks: 380
Thanked 28 Times in 25 Posts
ScOOt3r is on a distinguished road
Blackfire is there any way to add more Compos at least 8, i tried and couldnt get it to work

thanks
ScOOt3r
Reply With Quote
  #43  
Old 01-07-2022, 07:42
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 468
Thanks: 337
Thanked 1,457 Times in 353 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by ScOOt3r View Post
Blackfire is there any way to add more Compos at least 8, i tried and couldnt get it to work

thanks
ScOOt3r
i increased it to 12 compos.
press "Ctrl + F", then search for the word "NewCompos". you'll find the implementation.

.
Attached Images
File Type: png FMXInnoComponents.png (137.7 KB, 140 views)
File Type: png FMXInnoComponents2.png (148.7 KB, 138 views)

Last edited by BLACKFIRE69; 12-07-2022 at 03:21.
Reply With Quote
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (01-07-2022), houcine80 (04-07-2022)
  #44  
Old 01-07-2022, 08:22
ScOOt3r ScOOt3r is offline
Registered User
 
Join Date: Jun 2019
Location: Canada
Posts: 56
Thanks: 380
Thanked 28 Times in 25 Posts
ScOOt3r is on a distinguished road
Thanks so much BlackFire. this works perfect now..

cheers

ScOOt3r

Last edited by ScOOt3r; 01-07-2022 at 10:44.
Reply With Quote
The Following 2 Users Say Thank You to ScOOt3r For This Useful Post:
BLACKFIRE69 (01-07-2022), houcine80 (04-07-2022)
  #45  
Old 05-07-2022, 18:30
ScOOt3r ScOOt3r is offline
Registered User
 
Join Date: Jun 2019
Location: Canada
Posts: 56
Thanks: 380
Thanked 28 Times in 25 Posts
ScOOt3r is on a distinguished road
is there a way to change the time from 14:50 to like 2:50 if so how..

thanks
ScOOt3r
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 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
Windows Phone Installer Enhanced Mod (HMI 7.2 Final) Chayan Manna Conversion Tutorials 93 02-10-2019 13:42
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 10:28.


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