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
  #496  
Old 07-01-2024, 08:33
Jahan1373 Jahan1373 is offline
Registered User
 
Join Date: Jan 2022
Location: Yes
Posts: 46
Thanks: 104
Thanked 9 Times in 9 Posts
Jahan1373 is on a distinguished road
Quote:
Originally Posted by BLACKFIRE69 View Post
oh boy, are you serious? sorry to say this but you need to have common sense. yes, indeed, texts with a font color close to white is difficult to see on a white background or vice versa. so what's the magic here?
Why is yellow a problem?
Why colors with a little white in them are not readable
Why do some greens have problems?
FF AD FF 2F
FF FF FF 00
You are the great designers of the forum
Why is there no such problem in similar facilities?
Reply With Quote
Sponsored Links
  #497  
Old 07-01-2024, 08:43
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 Jahan1373 View Post
I mentioned the list of problematic colors, except for white and black, other colors have problems. I tested all the installed colors one by one.
- i mean colors that are close to the white color, not the exact white. colors like 'Aliceblue', 'AntiqueWhite', 'Azure', etc., that you marked are not very bright colors; they are very close to the white color.



Quote:
Originally Posted by Jahan1373 View Post
But the manufacturer just says that I have to learn to design. You are a designer
If this problem is not solved, we will all face problems.
- no one will face any issue with colors except you.



Quote:
Originally Posted by Jahan1373 View Post
Why should green have a problem with white, but the manufacturer does not agree
- green (FF 00 80 00) color is just fine.
Reply With Quote
  #498  
Old 07-01-2024, 08:53
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 Jahan1373 View Post
Why is yellow a problem?
Why colors with a little white in them are not readable
Why do some greens have problems?
FF AD FF 2F
FF FF FF 00
You are the great designers of the forum
Why is there no such problem in similar facilities?


i can't believe this. there's no problem with the colors; the only thing is that some colors are hard to see on a white background. Please, grow up.


1. FF AD FF 2F
2. FF FF FF 00

.

Last edited by BLACKFIRE69; 14-07-2024 at 02:15.
Reply With Quote
  #499  
Old 07-01-2024, 09:44
Jahan1373 Jahan1373 is offline
Registered User
 
Join Date: Jan 2022
Location: Yes
Posts: 46
Thanks: 104
Thanked 9 Times in 9 Posts
Jahan1373 is on a distinguished road
Quote:
Originally Posted by BLACKFIRE69 View Post
i can't believe this. there's no problem with the colors; the only thing is that some colors are hard to see on a white background. Please, grow up.


1. FF AD FF 2F
2. FF FF FF 00

.
I'm glad I didn't grow up with a programmer.
That part should always be black to be readable
My problem was mostly only on Autoran's page. Thank you again. Good night my friend
Reply With Quote
  #500  
Old 07-01-2024, 15:00
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.A question about the Google translator. Why does he add extra characters to the translation? and the translation differs from the result of an online translator?

Here is my code.
Code:
StatusLB.Text(GoogleTranslate('Welcome to Installation', 'en', 'ru'));
And that's what happens online (not a single mistake in meaning).
Добро пожаловать в установку.

And that's what happens through the function.
Добро пожаловать%20to%20Установка

And another question.... how do I get the language code where the installation is running?



the decoding issue was fixed, but it seems like the translated output is incorrect. this is out of my hands because it's up to Google's APIs. we'll see what we can do about it.


.

Last edited by BLACKFIRE69; 14-07-2024 at 02:15.
Reply With Quote
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (07-01-2024), hitman797 (08-01-2024)
  #501  
Old 07-01-2024, 16:12
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
Code:
StatusLB.Text(GoogleTranslate('WelcomeToInstallation', 'en', 'en'));

yes it seems like it's working without spaces, (hey Google, what the f*ck? ),


but we cannot use it that way. i just updated the Google API, and now it works.


.

Last edited by BLACKFIRE69; 14-07-2024 at 02:16.
Reply With Quote
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (07-01-2024), hitman797 (08-01-2024), Lord.Freddy (07-01-2024)
  #502  
Old 07-01-2024, 17:00
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
Then one more counter question. how do I get the correct geocode from the system from where the installer is launched consisting of only two letters, that is, the language code, these functions, in my opinion, do not cause it, but only the full name of the country? = ISO-639
Code:
function GetUILanguage: Integer;
function wGetUserCountryName: WideString;
external 'wGetUserCountryName@files:FMXInno.dll stdcall delayload';

Code:
function wGetUserUILanguageISO639: WideString;

Last edited by BLACKFIRE69; 22-01-2024 at 21:48.
Reply With Quote
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (07-01-2024), hitman797 (08-01-2024), Lord.Freddy (07-01-2024)
  #503  
Old 10-01-2024, 05: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
@Tihiy_Don,

Code:
- Updated FToggleCheckBox.FontColor method.

Last edited by BLACKFIRE69; 22-01-2024 at 21:49.
Reply With Quote
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (10-01-2024), hitman797 (11-01-2024), Lord.Freddy (11-01-2024), Tihiy_Don (10-01-2024)
  #504  
Old 10-01-2024, 10:15
Tihiy_Don Tihiy_Don is offline
Registered User
 
Join Date: Mar 2023
Location: Los Angeles Lakers
Posts: 43
Thanks: 91
Thanked 26 Times in 18 Posts
Tihiy_Don is on a distinguished road
Quote:
Originally Posted by BLACKFIRE69 View Post
@Tihiy_Don,

Code:
- Updated FToggleCheckBox.FontColor method.
Thanks, everything is working as it should now.
Reply With Quote
The Following User Says Thank You to Tihiy_Don For This Useful Post:
BLACKFIRE69 (10-01-2024)
  #505  
Old 12-01-2024, 00:36
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 Dev crazy stuff

Quote:
The FMXInno Dev is getting new features daily. guys, i need your thoughts on the following specific features, as some of them are extra features and may not be necessary for every user in our FMXInno community. if you want these features in the final release, let me know.

1. Desktop Widgets:
Code:
* Similar to MacOS Sonoma, these widgets will be positioned on the active desktop,
  not on the installer interface.

-- Includes CPU / RAM / DISK / Network / Battery usage.
-- Temperature.

-- (The weather widget is currently in the development stage, not fully finished)

-- Clock (available in both Digital and Analog).
-- Image gallery slideshow.
-- Installation status: Remaining / Elapsed time, Installing speed, etc.
-- Users can create custom widgets as desired.
-- Fully customizable.


2. Co-Pilot sidebar Panel:
Code:
* Similar to Windows Co-pilot, Co-pilot sidebar will be shown in an extended space of 
  the installer on the left or right. meaning, the installer will automatically be 
  resized (expanded/collapsed) when the Co-pilot side-bar is activated/deactivated.

-- Powered by GPT-3.5 Turbo (paid users can use GPT-4 +).
-- DALL-E is not yet available (even for paid users).

-- Ability to define custom error codes or grammar queries for the corresponding
   installer. so, the Co-pilot will describe these errors or specific statuses and 
   recommend suggestions when the user asks about them.

-- By default, an animated image/button (like Apple's Siri) will indicate the 
   Co-pilot on the installer until the user changes it.

-- Fully customizable.

.

Last edited by BLACKFIRE69; 14-07-2024 at 02:16.
Reply With Quote
The Following 5 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (12-01-2024), Harsh ojha (12-01-2024), hitman797 (12-01-2024), Lord.Freddy (12-01-2024), Masquerade (12-01-2024)
  #506  
Old 12-01-2024, 01:42
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,404 Times in 637 Posts
Masquerade is on a distinguished road
@Blackfire69
They look AWESOME. Such modern style features.
Reply With Quote
The Following 3 Users Say Thank You to Masquerade For This Useful Post:
audiofeel (12-01-2024), BLACKFIRE69 (12-01-2024), hitman797 (12-01-2024)
  #507  
Old 18-01-2024, 05:15
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 audiofeel Thank you very much for your 👌

Last edited by Behnam2018; 18-01-2024 at 05:19.
Reply With Quote
The Following User Says Thank You to Behnam2018 For This Useful Post:
audiofeel (18-01-2024)
  #508  
Old 22-01-2024, 02: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 - Installer Template

FMXInno - Installer template



Quote:
-- A common question that the FMXInno community always asks is whether there's a tutorial or guidance to create their own installer from scratch using FMXInno. however, there's currently no such tutorial because there're many areas to cover for beginners, making it a challenging task.

-- A possible and effective solution, i believe, is to provide a common template. this way, people can use it as a base and make changes on top of it until they gain enough experience to build their own installer.

-- Take the following provided script as the template; i've tried to keep everything simple and included average features to match modern styles. also, study the examples included in the attachment to the first post for more information.

-- If you've any questions or if anything is unclear, feel free to ask me or the FMXInno community. we'd be happy to help you.

Quote:
Features:

* Splash: Static png
* Music: Equalizer
* Taskbar: Preview / Progress
* Buttons: Botva2-Like
* ProgressBar: DotGauge / Botva2-Like / ThinProgressBar

* Installer: Background image
* Browse Dir: Fluent UI
* Uninstaller: Background image

* Shortcut: Desktop / StartMenu
* ISArcEx: Srep+lolz


.
Attached Images
File Type: png 1.png (256.9 KB, 630 views)
File Type: png 2.png (249.3 KB, 614 views)
File Type: png 3.png (253.1 KB, 617 views)
File Type: png 4.png (251.9 KB, 607 views)
File Type: png 5.png (261.7 KB, 607 views)
File Type: png 6.png (256.6 KB, 604 views)
File Type: png w.png (258.3 KB, 601 views)
File Type: png x.png (177.3 KB, 623 views)
Attached Files
File Type: rar FMXInno-Installer-Template.rar (7.71 MB, 219 views)
Reply With Quote
The Following 11 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (22-01-2024), audiofeel (22-01-2024), Behnam2018 (22-01-2024), Ele (22-01-2024), hitman797 (22-01-2024), Jahan1373 (22-01-2024), Lord.Freddy (22-01-2024), Noname1966 (28-11-2024), nordi (12-02-2024), pcblizzard (27-01-2024), Tihiy_Don (22-01-2024)
  #509  
Old 23-01-2024, 09:17
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 v1.0.0.2 - Extra

i've added two new functions to retrieve the build date of the FMXInno library. i hope they'll be helpful in some cases.

Code:
function wGetFMXInnoBuildDate: Integer;
procedure wGetFMXInnoBuildDateEx(var YearW, MonthW, DayW: Word);

1. Method - 01

Code:
function FMXInnoBuildDate_1: String;
var
  YearW, MonthW, DayW: Word;
begin
  wGetFMXInnoBuildDateEx(YearW, MonthW, DayW);

  Result := Format('Build Date:  %d-%d-%d', [YearW, MonthW, DayW]);
end;

2. Method - 02

Code:
function FMXInnoBuildDate_2: String;
var
  YearW, MonthW, DayW: Word;
  EncodedDate: Integer;
begin
  EncodedDate := wGetFMXInnoBuildDate;

  YearW   :=  EncodedDate shr 9;
  MonthW  := (EncodedDate shr 5) and $0F;
  DayW    :=  EncodedDate and $1F;

  Result := Format('Build Date:  %d-%d-%d', [YearW, MonthW, DayW]);
end;

.
Attached Images
File Type: png 00.png (5.0 KB, 262 views)

Last edited by BLACKFIRE69; 11-05-2024 at 09:04.
Reply With Quote
The Following 6 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (23-01-2024), Behnam2018 (23-01-2024), Cesar82 (13-02-2024), hitman797 (23-01-2024), Lord.Freddy (24-01-2024), Tihiy_Don (23-01-2024)
  #510  
Old 24-01-2024, 13:53
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
@BLACKFIRE69, can you add these two events to the form object.
FForm:
Code:
    procedure OnActivate(Event: TNotifyEvent);
    procedure OnDeactivate(Event: TNotifyEvent);
Reply With Quote
The Following User Says Thank You to hitman797 For This Useful Post:
audiofeel (26-01-2024)
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 20:27.


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