Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #226  
Old 19-04-2023, 10:23
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
Quote:
Originally Posted by audiofeel View Post
You can do the same for all child forms
FCustomFluentWindow. and so on....
P.S. I'm not a fan of angles, but sometimes you need them to get into the style
Updated,


.

Last edited by BLACKFIRE69; 14-07-2024 at 01:57.
Reply With Quote
The Following 6 Users Say Thank You to BLACKFIRE69 For This Useful Post:
alexachu (20-04-2023), audiofeel (19-04-2023), Cesar82 (19-04-2023), ffmla (20-04-2023), hitman797 (19-04-2023), Razor12911 (20-04-2023)
Sponsored Links
  #227  
Old 19-04-2023, 18:23
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,073
Thanks: 1,814
Thanked 2,302 Times in 786 Posts
Cesar82 is on a distinguished road
@BLACKFIRE69, I don't follow your project very much, but I have a question.
Is it possible to define shadows in the labels and define a position for them with respect to the text like in CIU?
If you still don't have support for this, it would be interesting to have X and Y options to move the shadow with a default value of 1px position in relation to left and Top, or parameters for X and Y position for the shadow, with the default position being the shadow exactly in the position of the text.
Code:
procedure ShadowSetting(FColor: Integer; FOpacity, FSoftness: Single; FPosX, FPosY: Integer);
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
BLACKFIRE69 (19-04-2023)
  #228  
Old 19-04-2023, 20:09
hitman797's Avatar
hitman797 hitman797 is offline
Registered User
 
Join Date: Feb 2013
Location: Algeria
Posts: 168
Thanks: 486
Thanked 202 Times in 122 Posts
hitman797 is on a distinguished road
hi, blackfire69,
thank you for everything you give to this community.
In fact I learned a lot from you.
thank you.

Last edited by hitman797; 19-04-2023 at 20:11.
Reply With Quote
The Following 4 Users Say Thank You to hitman797 For This Useful Post:
alexachu (19-04-2023), audiofeel (19-04-2023), BLACKFIRE69 (19-04-2023), Razor12911 (20-04-2023)
  #229  
Old 22-04-2023, 00:37
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 - Optional Updates

FMXInno - Optional Updates

Code:
* Synthesizing user input is made easy with FMXInno's support for 
  generating keystrokes, mouse motions, and button clicks.


Examples:

Code:
Keyboard:   Press Win + X

  { Method 1 }
  VirtualAction.PressedKey(vkLWin);  // Left Win
  VirtualAction.PressKey(vkX);       // X
  VirtualAction.ReleasePressedKey(vkLWin);
  VirtualAction.Flush;

  { Method 2 }
  VirtualAction.PressedShiftKey([F_ssWin]);  // Left\Right Win
  VirtualAction.PressKey(vkX);
  VirtualAction.ReleasePressedShiftKey([F_ssWin]);
  VirtualAction.Flush;

  { Method 3 }
  VirtualAction.CallShortcut([F_ssWin], vkX);
  VirtualAction.Flush;
Code:
Mouse:   Click on Btn[3]

  // New MousePos: Btn[3] center.
  VirtualAction.FormMouseMove(Round(Btn[3].GetLeft + Btn[3].GetWidth / 2), 
                              Round(Btn[3].GetTop + Btn[3].GetHeight / 2)); 
  VirtualAction.MouseClick(mbLeft);
  VirtualAction.Flush;

.

Last edited by BLACKFIRE69; 14-07-2024 at 01:57.
Reply With Quote
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post:
alexachu (22-04-2023), audiofeel (22-04-2023), crachlow (22-04-2023), hitman797 (22-04-2023)
  #230  
Old 22-04-2023, 07:58
kozmik kozmik is offline
Registered User
 
Join Date: Feb 2023
Location: Kepler186f
Posts: 2
Thanks: 20
Thanked 0 Times in 0 Posts
kozmik is on a distinguished road
thanks for your work.I have a question, how can I use the Lizard installation with DiskSpan GUI?
Reply With Quote
  #231  
Old 24-04-2023, 04:07
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
Quote:
Originally Posted by audiofeel View Post
A small model of the site Cyberpunk 2077
Rate?
---------------
English version
---------------
UP + FXPcker.exe

that's awesome, dude!
Reply With Quote
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (24-04-2023), hitman797 (24-04-2023)
  #232  
Old 24-04-2023, 04:56
crachlow's Avatar
crachlow crachlow is offline
Registered User
 
Join Date: Nov 2017
Location: Eka-burg
Posts: 22
Thanks: 44
Thanked 11 Times in 7 Posts
crachlow is on a distinguished road
Blackfire69. There was a question on Downloader_Example_SingleThread.iss. From version 6.0.5 to 6.2.2 it gives the same error. Could you see what's wrong?
Reply With Quote
  #233  
Old 24-04-2023, 06:07
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
Quote:
Originally Posted by crachlow View Post
Blackfire69. There was a question on Downloader_Example_SingleThread.iss. From version 6.0.5 to 6.2.2 it gives the same error. Could you see what's wrong?

Updated ISS, tested with innosetup v6.2.2.

.

Last edited by BLACKFIRE69; 14-07-2024 at 01:58.
Reply With Quote
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (24-04-2023), crachlow (24-04-2023), hitman797 (24-04-2023)
  #234  
Old 24-04-2023, 20:40
Behnam2018 Behnam2018 is offline
Registered User
 
Join Date: Jun 2018
Location: IRAN
Posts: 57
Thanks: 973
Thanked 24 Times in 20 Posts
Behnam2018 is on a distinguished road
Smile thank you

audiofeel

Hello, thank you so much for your hard work, how beautiful and beautiful

If you don't mind making this script, I will archive all your scripts because they are beautiful and beautiful. I have already posted the executable file.
Attached Files
File Type: rar Setup.rar (7.63 MB, 69 views)
Reply With Quote
The Following User Says Thank You to Behnam2018 For This Useful Post:
audiofeel (24-04-2023)
  #235  
Old 25-04-2023, 08:29
crachlow's Avatar
crachlow crachlow is offline
Registered User
 
Join Date: Nov 2017
Location: Eka-burg
Posts: 22
Thanks: 44
Thanked 11 Times in 7 Posts
crachlow is on a distinguished road
Quote:
Originally Posted by TEAmo View Post
I didn't replace the original picture.
Thank you

Last edited by crachlow; 26-04-2023 at 11:37.
Reply With Quote
  #236  
Old 25-04-2023, 08:33
TEAmo TEAmo is offline
Registered User
 
Join Date: Aug 2016
Location: china
Posts: 3
Thanks: 1
Thanked 0 Times in 0 Posts
TEAmo is on a distinguished road
Quote:
Originally Posted by crachlow View Post
Before you write what an error is, you probably need to create a report where and when and what you did at the same time. What do you think?
This error message occurred before the first startup.

I tried to replace the normal PNG image, but the error still appears. Is it related to my operating system being in Chinese?
Reply With Quote
  #237  
Old 25-04-2023, 08:53
TEAmo TEAmo is offline
Registered User
 
Join Date: Aug 2016
Location: china
Posts: 3
Thanks: 1
Thanked 0 Times in 0 Posts
TEAmo is on a distinguished road
Smile

Quote:
Originally Posted by audiofeel View Post
the png file is corrupted

Problem solved, thank you

Thanks

Last edited by TEAmo; 25-04-2023 at 09:04.
Reply With Quote
  #238  
Old 25-04-2023, 20:28
Behnam2018 Behnam2018 is offline
Registered User
 
Join Date: Jun 2018
Location: IRAN
Posts: 57
Thanks: 973
Thanked 24 Times in 20 Posts
Behnam2018 is on a distinguished road
Hi, this script is muted by default. You can turn it on in this script
Attached Images
File Type: jpg Capture.JPG (201.4 KB, 291 views)
Reply With Quote
  #239  
Old 25-04-2023, 21:10
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
Quote:
Originally Posted by audiofeel View Post
@BLACKFIRE69
There's a small problem with the FRadioButtons. They switch each other but belong to different components. And even being on different FCustomPage, they continue to influence each other. What should I do?
I attach a file for demonstration


Code:
Added new property.
 - FRadioButton.GroupName
.

Last edited by BLACKFIRE69; 14-07-2024 at 01:58.
Reply With Quote
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (26-04-2023), Tihiy_Don (26-04-2023)
  #240  
Old 26-04-2023, 04:10
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



Quote:
* Please find attached two FMXInno examples that support DiskSpan GUI. I would appreciate it if you could conduct some test runs to confirm its functionality.

* Due to additional requirements, upgraded XHashNext to XHashEx.

* Component properties have been extended.

DSG functionality has been added by Cesar82.

Last edited by BLACKFIRE69; 02-09-2023 at 09:16.
Reply With Quote
The Following 7 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (28-04-2023), Behnam2018 (02-05-2023), Cesar82 (26-04-2023), Gehrman (26-04-2023), hitman797 (26-04-2023), Jahan1373 (12-04-2024), kozmik (26-04-2023)
Reply


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 21:49.


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