#616
|
||||
|
||||
![]()
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 |
#617
|
||||
|
||||
![]()
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) |
#618
|
|||
|
|||
Hello, thanks, but the shortcut does not work on the desktop
|
#619
|
||||
|
||||
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. |
#620
|
||||
|
||||
![]()
Another example. A simple installer. All colors change.
Code:
#define OpacueColor "$FFFFFFFF" #define Opacue "0.5" #define ColorButton "$FFFF753A" #define ColorText "$FF282828" #define Shadow "$FF000000"
__________________
https://t.me/FMXInno Last edited by audiofeel; 27-12-2023 at 10:06. |
The Following 4 Users Say Thank You to audiofeel For This Useful Post: | ||
#621
|
||||
|
||||
![]()
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. |
#622
|
||||
|
||||
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. |
#623
|
|||
|
|||
@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? |
#624
|
||||
|
||||
Quote:
![]() ![]()
__________________
https://t.me/FMXInno |
#625
|
||||
|
||||
thanks for answer but it's was about metro0 script that you posted
__________________
Search and Find |
#626
|
||||
|
||||
Well, I'm not the only one sometimes doing it all. My friends from this forum and from ours help me. I didn't do this part of the code. As far as I remember, we requested some kind of function from the author of the dll. nothing comes out without it. But I could be wrong.
__________________
https://t.me/FMXInno |
#627
|
||||
|
||||
Quote:
@Masquerade, can you tell me which of the following tests works for you? . Last edited by BLACKFIRE69; 22-01-2024 at 21:54. |
#628
|
||||
|
||||
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) |
#629
|
||||
|
||||
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. |
#630
|
||||
|
||||
![]() Quote:
![]()
__________________
https://t.me/FMXInno Last edited by audiofeel; 16-11-2023 at 06:25. |
The Following 3 Users Say Thank You to audiofeel For This Useful Post: | ||
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
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 |