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

Reply
 
Thread Tools Display Modes
  #331  
Old 19-04-2023, 18:23
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,016
Thanks: 1,720
Thanked 2,177 Times in 741 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)
Sponsored Links
  #332  
Old 19-04-2023, 20:09
hitman797's Avatar
hitman797 hitman797 is offline
Registered User
 
Join Date: Feb 2013
Location: Algeria
Posts: 167
Thanks: 443
Thanked 180 Times in 117 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)
  #333  
Old 22-04-2023, 00:37
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 668
Thanks: 471
Thanked 2,374 Times in 542 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)
  #334  
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
  #335  
Old 24-04-2023, 04:07
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 668
Thanks: 471
Thanked 2,374 Times in 542 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)
  #336  
Old 24-04-2023, 04:11
audiofeel's Avatar
audiofeel audiofeel is offline
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 356
Thanks: 435
Thanked 818 Times in 299 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by BLACKFIRE69 View Post
that's awesome, dude!
I agree with you, boss
Reply With Quote
The Following 2 Users Say Thank You to audiofeel For This Useful Post:
BLACKFIRE69 (24-04-2023), hitman797 (24-04-2023)
  #337  
Old 24-04-2023, 04:56
crachlow's Avatar
crachlow crachlow is offline
Registered User
 
Join Date: Nov 2017
Location: Eka-burg
Posts: 21
Thanks: 39
Thanked 10 Times in 6 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
  #338  
Old 24-04-2023, 06:07
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 668
Thanks: 471
Thanked 2,374 Times in 542 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)
  #339  
Old 24-04-2023, 20:40
Behnam2018 Behnam2018 is offline
Registered User
 
Join Date: Jun 2018
Location: IRAN
Posts: 56
Thanks: 915
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, 62 views)
Reply With Quote
The Following User Says Thank You to Behnam2018 For This Useful Post:
audiofeel (24-04-2023)
  #340  
Old 24-04-2023, 21:25
audiofeel's Avatar
audiofeel audiofeel is offline
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 356
Thanks: 435
Thanked 818 Times in 299 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by Behnam2018 View Post
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.
No. This is a private script
Reply With Quote
  #341  
Old 25-04-2023, 08:29
crachlow's Avatar
crachlow crachlow is offline
Registered User
 
Join Date: Nov 2017
Location: Eka-burg
Posts: 21
Thanks: 39
Thanked 10 Times in 6 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
  #342  
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
  #343  
Old 25-04-2023, 08:48
audiofeel's Avatar
audiofeel audiofeel is offline
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 356
Thanks: 435
Thanked 818 Times in 299 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by TEAmo View Post
Extracting it into a folder is also the same. Look at the screenshot above.
the png file is corrupted
Reply With Quote
  #344  
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
  #345  
Old 25-04-2023, 15:02
audiofeel's Avatar
audiofeel audiofeel is offline
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 356
Thanks: 435
Thanked 818 Times in 299 Posts
audiofeel is on a distinguished road
There's a small problem with the FRadioButtons

@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

Last edited by audiofeel; 27-12-2023 at 10:07.
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 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 23:43.


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