#346
|
|||
|
|||
Hi, this script is muted by default. You can turn it on in this script
|
Sponsored Links |
#347
|
||||
|
||||
Quote:
Code:
Added new property. - FRadioButton.GroupName Last edited by BLACKFIRE69; 14-07-2024 at 01:58. |
#348
|
||||
|
||||
FMXInno - Updates
Quote:
DSG functionality has been added by Cesar82. Last edited by BLACKFIRE69; 02-09-2023 at 09:16. |
#349
|
||||
|
||||
@BLACKFIRE69
And another question arose. such an effect as procedure AnimateOpacity(FOpacity, FDuration, FDelay: Single) has only FLayout - is this due to some restrictions? is it possible to add it to other objects such as text, buttons, etc. And is it possible to adjust the distance between lines in the FText as in html = Line spacing = <LS:Height>Text</LS> , Ex: <LS:14>Hello</LS> |
The Following User Says Thank You to audiofeel For This Useful Post: | ||
Behnam2018 (02-05-2023) |
#350
|
||||
|
||||
Quote:
i'm not sure about that. |
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
#351
|
||||
|
||||
Great news
|
The Following 2 Users Say Thank You to audiofeel For This Useful Post: | ||
Behnam2018 (02-05-2023), hitman797 (01-05-2023) |
#352
|
|||
|
|||
Is it possible to use the video as the background of the installer? Buttons, text, and so on will be placed on top of the video.
|
The Following User Says Thank You to Tihiy_Don For This Useful Post: | ||
Behnam2018 (02-05-2023) |
#353
|
||||
|
||||
bug or feature
@BLACKFIRE69
If the html text is placed on some object and the transparency is set to 0 in the properties. Then the object becomes transparent as expected and the html text remains visible Last edited by audiofeel; 27-12-2023 at 10:07. |
#354
|
||||
|
||||
Quote:
@audiofeel it seems that the opacity property is not functioning correctly on the FHTMLText custom component. Quote:
@Tihiy_Don it may not possible. "In Delphi FMX, the MediaControl component is designed to always appear on top of other components and objects on the form, even if it is placed lower in the Z-order (or stacking order) than other components. This is because the MediaControl component is responsible for rendering video and audio content on the form, and it needs to have priority over other components to ensure that the content is visible and accessible to the user." Quote:
@audiofeel In the provided example, the scrolling functionality of the scrollbox will respond to both the left/right arrow keys (FInstNewProc - Updated) and the two buttons. . Last edited by BLACKFIRE69; 14-07-2024 at 01:58. |
#355
|
||||
|
||||
Thanks
@BLACKFIRE69
Quote:
https://ibb.co/wYvYdkk Last edited by audiofeel; 27-12-2023 at 10:07. |
The Following 2 Users Say Thank You to audiofeel For This Useful Post: | ||
ADMIRAL (04-05-2023), BLACKFIRE69 (05-05-2023) |
#356
|
||||
|
||||
Quote:
It's great that you were able to create this project using Inno setup. Is this going to be a setup or just an introduction of game? Another thing you forgot to add is the exit option
__________________
Search and Find Last edited by ADMIRAL; 04-05-2023 at 23:49. |
The Following User Says Thank You to ADMIRAL For This Useful Post: | ||
audiofeel (05-05-2023) |
#357
|
||||
|
||||
Quote:
And the exit option for me now is like to crack sun flower seeds. Last edited by audiofeel; 05-05-2023 at 03:24. |
The Following User Says Thank You to audiofeel For This Useful Post: | ||
ADMIRAL (05-05-2023) |
#358
|
||||
|
||||
I finally managed to defeat the white square when loading the form . Now there is just a delay in the appearance of the form. It looks better. I just changed the form type from FCreateBlankForm to FCreateFluentNull - but the stripes appear on the sides, as indicated by border false. You can avoid these problems altogether and just select the form type FCreateImageForm, but then the video is not displayed on another page. Or apply the form FCreateNormal, but nothing appears on such a form at all.
how do you still defeat this white square? ************* UP! who will suggest the idea of a progress bar. how it should be presented to the installation published above Last edited by audiofeel; 10-05-2023 at 02:42. |
#359
|
||||
|
||||
FMemo
@BLACKFIRE. Hello. FMemo does not work as I would like. Everything is fine, except that when a new archive starts, there is an empty line after Unpacking. I will provide part of the code below.
What am I doing wrong? It will be useful to many, I think. Code:
function ProgressCallback(OverallPct, CurrentPct, DiskTotalMB, DiskExtractedMB: integer; DiskName, CurrentFile, TimeStr1, TimeStr2, TimeStr3, Speed: WideString): longword; var S: WideString; begin S:= 'Unpacking: ' + CurrentFile; if Page2Memo.LineStrings(Page2Memo.LineCount - 1) <> S then begin Page2Memo.AddLine(S); end; Result:= ISArcExCancel; end; Last edited by audiofeel; 27-12-2023 at 10:07. |
#360
|
||||
|
||||
Quote:
have you tried this? Code:
function ProgressCallback(OverallPct, CurrentPct, DiskTotalMB, DiskExtractedMB: integer; DiskName, CurrentFile, TimeStr1, TimeStr2, TimeStr3, Speed: WideString): longword; var S: WideString; begin S:= 'Unpacking: ' + CurrentFile; if (length(CurrentFile) > 0) and (Page2Memo.LineStrings(Page2Memo.LineCount - 1) <> S) then begin Page2Memo.AddLine(S); end; Result:= ISArcExCancel; end; |
The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (22-06-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 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 |