|
#496
|
|||
|
|||
|
Quote:
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? |
| Sponsored Links |
|
#497
|
||||
|
||||
|
Quote:
Quote:
- green (FF 00 80 00) color is just fine. |
|
#498
|
||||
|
||||
|
Quote:
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. |
|
#499
|
|||
|
|||
|
Quote:
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 |
|
#500
|
||||
|
||||
|
Quote:
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. |
|
#501
|
||||
|
||||
|
Quote:
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. |
| The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
|
#502
|
||||
|
||||
|
Quote:
Code:
function wGetUserUILanguageISO639: WideString; Last edited by BLACKFIRE69; 22-01-2024 at 21:48. |
| The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
|
#503
|
||||
|
||||
|
@Tihiy_Don,
Code:
- Updated FToggleCheckBox.FontColor method. Last edited by BLACKFIRE69; 22-01-2024 at 21:49. |
| The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
|
#504
|
|||
|
|||
|
Thanks, everything is working as it should now.
|
| The Following User Says Thank You to Tihiy_Don For This Useful Post: | ||
BLACKFIRE69 (10-01-2024) | ||
|
#505
|
||||
|
||||
|
Quote:
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. |
| 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
|
|||
|
|||
|
@Blackfire69
They look AWESOME. Such modern style features. |
| The Following 3 Users Say Thank You to Masquerade For This Useful Post: | ||
|
#508
|
||||
|
||||
|
FMXInno - Installer template Quote:
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
|
||||
|
||||
|
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;
. Last edited by BLACKFIRE69; 11-05-2024 at 09:04. |
| 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
|
||||
|
||||
|
@BLACKFIRE69, can you add these two events to the form object.
FForm: Code:
procedure OnActivate(Event: TNotifyEvent);
procedure OnDeactivate(Event: TNotifyEvent);
|
| The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (26-01-2024) | ||
![]() |
|
|
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 |