|
#421
|
||||
|
||||
|
Radiant Shapes:
RadiantShapes.exe |
| The Following 2 Users Say Thank You to hitman797 For This Useful Post: | ||
audiofeel (19-10-2023), Behnam2018 (20-10-2023) | ||
| Sponsored Links |
|
#422
|
||||
|
||||
|
CorePack Installer: Simple - [Demo]
. |
| The Following 7 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
ADMIRAL (14-11-2023), audiofeel (20-10-2023), Behnam2018 (20-10-2023), hitman797 (20-10-2023), Lord.Freddy (20-10-2023), ScOOt3r (20-10-2023), war100ck (18-03-2024) | ||
|
#423
|
|||
|
|||
|
Hello, thanks, but the shortcut does not work on the desktop
|
|
#424
|
||||
|
||||
|
Edit the Setup.ini
Code:
[Execs]
; AppExe<1>=Tile Caption|Exec Directory|Exec File|Shortcut Name/Action Name|IconFilename|IconIndex
; ex:
; AppExe1=Red Dead Redemption 2||Launcher.exe|Red Dead Redemption 2 v1.0.1436|{app}\Launcher.exe|0
AppExe1=Red Dead Redemption 2||Launcher.exe|Red Dead Redemption 2 v1.0.1436|{app}\RDR2_icon.ico|0
Last edited by hitman797; 20-10-2023 at 22:21. |
|
#425
|
||||
|
||||
|
FMXInno Updates - [2023-Nov-13]
Code:
* Added new functions:
-- function wGetRecycleBinInfo(ARootPath: WideString; var TotalSizeMB: Extended; var FileCount: Integer): Boolean;
-- function wCopyToClipboard(const AStr: WideString): Boolean;
-- function wPasteFromClipboard: WideString;
* Updated FForm class.
* Updated FluentApi (Internal + External).
-- Make sure to update your current scripts as follows:
function EnableFluent(const WinHandle: HWND; DarkTheme, NoBorders, NoTitleBar: Boolean; Opacity: Single; BrightnessPct: Byte): Integer;
external 'EnableFluent@{tmp}\FluentApi.dll stdcall uninstallonly delayload';
to
function EnableFluent(const WinHandle: HWND; DarkTheme, NoBorders, NoTitleBar: Boolean; Opacity: Single; BrightnessPct: Byte): Integer;
external 'faC1222296@{tmp}\FluentApi.dll stdcall uninstallonly delayload';
* Updated ISArcEx (Internal + External).
-- Added a new method:
> ISArcExIsSuspended.
-- The following methods have been renamed and updated:
> Suspend/Resume Proc, ChangeLanguage.
* Updated Botva2-like classes:
-- FPictureButton2, FPictureVisiblePart, FPictureProgressBar, and FPictureTrackBar.
* Some improvements and bug fixes.
Code:
* Compiled in RadStudio 12 Athens.
-- Embarcadero claims that the performance has been improved for FMX.
-- FMXInno already comes with built-in support for SKIA, but since RadStudio 12
and onward, Delphi has native support for SKIA.
If you need me to update SKIA in FMXInno, I'll do that on request.
Note: This update doesn't use the RadStudio 12 native SKIA (v6.0.0); instead,
this update uses the previous version (v5.0.0).
The first post has been updated. |
|
#426
|
||||
|
||||
|
Quote:
The installation path selection section in windows 10 pro new Updates. it has a problem and does not work I tried to change the codes but it doesn't work
__________________
Search and Find Last edited by ADMIRAL; 14-11-2023 at 07:01. |
|
#427
|
|||
|
|||
|
@BLACKFIRE69
I'd like to continue my discussion from Krinkels.org about my font issue, I downloaded and ran your test project and the font does display correctly but the setup will not close - it just hangs once close button is pressed. Is it possible that there's a bug in my Windows? |
|
#428
|
||||
|
||||
|
thanks for answer but it's was about metro0 script that you posted
__________________
Search and Find |
|
#429
|
||||
|
||||
|
Quote:
@Masquerade, can you tell me which of the following tests works for you? . Last edited by BLACKFIRE69; 22-01-2024 at 21:54. |
|
#430
|
||||
|
||||
|
everything is working fine. . Last edited by BLACKFIRE69; 14-07-2024 at 02:12. |
| The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
Behnam2018 (05-12-2023) | ||
|
#431
|
||||
|
||||
|
Quote:
after making a few changes to the code, you can make it work. however, if i'm correct, there're some aspects in the script that need further implementation. it would be better to ask the authors to complete the script. ![]() Code:
Edit1:
* Replace the current 'ListBoxOnChange' code with this.
procedure ListBoxOnChange(Sender: TObject);
var
ADir: String;
begin
if (FMXListBox[2].GetItemIndex > -1) then
begin
ADir := FMXEdit[1].GetText;
StringChange(ADir, ExtractFileDrive(ADir), FMXListBox[2].GetItemText(FMXListBox[2].GetItemIndex));
FMXLabel[197].Text(MinimizePathName(ADir, WizardForm.DirEdit.Font, WizardForm.DirEdit.Width));
FMXEdit[1].Text(MinimizePathName(ADir, WizardForm.DirEdit.Font, WizardForm.DirEdit.Width));
WizardForm.DirEdit.Text:= ADir;
FMXDiskUsage.SetDir(WizardForm.DirEdit.Text);
FMXLabel[82].Text(MbOrTb(FMXDiskUsage.FreeSpace, 1));
FMXLabel[85].Text(MbOrTb(FMXDiskUsage.FreeSpace, 1) + ' is available from the selected drive');
FMXArc[5].Angle(FMXDiskUsage.FreeSpace, FMXDiskUsage.TotalSpace);
end;
end;
procedure ListBx3OnChange(Sender: TObject);
var
ADir: WideString;
begin
if FMXListBox[3].GetItemIndex > -1 then
begin
ADir:= ExtractFileDrive(FMXEdit[1].GetText) + '\' + AddBackslash(FMXListBox[3].GetItemText(FMXListBox[3].GetItemIndex)) + '{#MyAppName}';
FMXLabel[197].Text(MinimizePathName(ADir, WizardForm.DirEdit.Font, WizardForm.DirEdit.Width));
FMXEdit[1].Text(MinimizePathName(ADir, WizardForm.DirEdit.Font, WizardForm.DirEdit.Width));
WizardForm.DirEdit.Text:= ADir;
FMXDiskUsage.SetDir(WizardForm.DirEdit.Text);
FMXLabel[82].Text(MbOrTb(FMXDiskUsage.FreeSpace, 1));
FMXLabel[85].Text(MbOrTb(FMXDiskUsage.FreeSpace, 1) + ' is available from the selected drive');
FMXArc[5].Angle(FMXDiskUsage.FreeSpace, FMXDiskUsage.TotalSpace);
end;
end;
Code:
Edit2: * Comment out the following line in the code. //FMXEdit[1].OnChange(@ListBoxOnChange); Code:
Edit3: * Replace the ListBoxOnChange event with ListBx3OnChange for the FMXListBox[3]. FMXListBox[3].OnChange(@ListBx3OnChange); Last edited by BLACKFIRE69; 14-07-2024 at 02:12. |
|
#432
|
|||
|
|||
|
Quote:
Test 1A: Font works, hangs on closing Test 2: Font works, window closes but hangs in taskbar. Test 2A: Font works, window closes but hangs in taskbar. |
|
#433
|
||||
|
||||
|
Quote:
ok mate. maybe try it on a different PC. here, everything works fine, even on virtual machines. also, try disabling the antivirus. |
|
#434
|
||||
|
||||
|
Quote:
Thank you for your quick reply, but even with the edit's codes, I am still facing the same problem. Are there any problems for you with these codes in the script?
__________________
Search and Find |
|
#435
|
||||
|
||||
|
In the first test, my partitions and folders were not displayed at all, and by adding codes, I only encountered errors.
__________________
Search and Find |
![]() |
|
|
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 |