#271
|
||||
|
||||
This is great and understandable. What do users usually make a music (volume) button out of? Most likely from "FEqualizer" "FText" and "FColorButton". I just assumed.
__________________
https://t.me/FMXInno Last edited by audiofeel; 22-03-2023 at 12:46. |
Sponsored Links |
#272
|
||||
|
||||
Here, a little higher, a user under the nickname Behnam2018 posted a screenshot with the installer. An experienced eye will notice that the fonts that should be displayed are not displayed there. Most likely, Behnam2018 is installed "Windows7". On it, with the "temporary" installation of fonts, small problems sometimes arise. As a temporary solution, I propose this.
Code:
function InitializeSetup(): Boolean; var ResultCode: Integer; begin if not FontExists('My Font') then begin ExtractTemporaryFile('MyFont.ttf'); ExtractTemporaryFile('FontReg.exe'); Exec(ExpandConstant('{tmp}\FontReg.exe'), '/copy', '', SW_HIDE, ewWaitUntilTerminated, ResultCode); end; Result:= True; end;
__________________
https://t.me/FMXInno Last edited by audiofeel; 27-12-2023 at 11:08. |
The Following 3 Users Say Thank You to audiofeel For This Useful Post: | ||
#273
|
|||
|
|||
I thank and apologize to all my friends
made BY KaOs Repack
|
#274
|
|||
|
|||
No, made by audiofeel, as written in credits, and thanks to BLACKFIRE69 for the IsArcEx and FMXInno libraries!
|
The Following 3 Users Say Thank You to Masquerade For This Useful Post: | ||
#275
|
||||
|
||||
FMXInno v1.0.0.2 - Updates
FMXInno v1.0.0.2 - Updates
Code:
* Now almost all components are ready to work with FXPacker and FXStream. . Last edited by BLACKFIRE69; 14-07-2024 at 02:54. |
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
#276
|
||||
|
||||
Hi BLACKFIRE69, could you add an analog of the checklistbox
Perhaps the calculation of the size of components will also be implemented there Quote:
__________________
https://t.me/FMXInno Last edited by audiofeel; 26-03-2023 at 07:18. |
#277
|
||||
|
||||
FMXInno - Custom Fonts
Quote:
could you test this? Code:
function InitializeSetup(): Boolean; begin { Font } ExtractTemporaryFile('{#MyFont1}'); ExtractTemporaryFile('{#MyFont2}'); InstallFMXFont(ExpandConstant('{tmp}\{#MyFont1}')); InstallFMXFont(ExpandConstant('{tmp}\{#MyFont2}')); { Font } FMXInnoInit; Result := True; end; procedure DeinitializeSetup(); begin { Font } DeleteFMXFont(ExpandConstant('{tmp}\{#MyFont1}')); DeleteFMXFont(ExpandConstant('{tmp}\{#MyFont2}')); { Font } FMXInnoShutDown; end; procedure FMXDesigning; begin { FMX Blank Form } FMXForm.FCreateBlankForm(WizardForm.Handle, ALCrimson, ''); FMXForm.SetCursor(ExtractAndLoad('Dark2.ani')); // Font InvalidateFMXFont; .... end; Last edited by BLACKFIRE69; 31-03-2023 at 10:52. |
#278
|
||||
|
||||
I have no way to test this on Windows 7. On Windows 11, everything is fine.
__________________
https://t.me/FMXInno Last edited by audiofeel; 27-12-2023 at 11:08. |
#280
|
||||
|
||||
If you run and cancel the installation several times, this happens (I realized this by increasing the speed of the cooler). I can make a mistake, but nothing was launched except the installation
__________________
https://t.me/FMXInno Last edited by audiofeel; 27-12-2023 at 11:08. |
#281
|
||||
|
||||
oops...
|
#282
|
||||
|
||||
Win 7, works fine on win 10 though.
edit: multiple instances of taskkill.exe have been running in background, noticed 30 mins later and they've been eating cpu this whole time. Last edited by Razor12911; 27-03-2023 at 15:35. |
The Following 3 Users Say Thank You to Razor12911 For This Useful Post: | ||
#283
|
||||
|
||||
Quote:
does it happen even after executing DeleteFMXFont?? Last edited by BLACKFIRE69; 27-03-2023 at 17:20. |
#284
|
||||
|
||||
after executing DeleteFMXFont everything is clean
__________________
https://t.me/FMXInno |
The Following 2 Users Say Thank You to audiofeel For This Useful Post: | ||
BLACKFIRE69 (27-03-2023), Razor12911 (27-03-2023) |
#285
|
||||
|
||||
@BLACKFIRE69
I found another oddity or feature. On FMXForm.FCreateImageForm does not display VideoPlayer. Is it possible to implement it?
__________________
https://t.me/FMXInno Last edited by audiofeel; 11-04-2023 at 20:48. |
The Following User Says Thank You to audiofeel For This Useful Post: | ||
hitman797 (28-03-2023) |
Thread Tools | |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Windows Fluent Effects Standalone API - InnoSetup / VCL / FXM | BLACKFIRE69 | Conversion Tutorials | 0 | 15-11-2023 18:35 |
Windows Phone Installer similar to razor12911's original design? | Kitsune1982 | Conversion Tutorials | 0 | 02-07-2020 14:04 |
INDEX - Conversion Tutorial Index | Razor12911 | Conversion Tutorials | 5 | 11-06-2020 03:05 |
Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 10:48 |