#496
|
||||
|
||||
Quote:
adding backward compatibility can be a drawback in many cases. so, we should embrace the latest. |
Sponsored Links |
#497
|
|||
|
|||
@audiofeel
I'm playing a video using FVideoPlayer in the background of a FCustomPage. I want to display a FPopupBox over this FCustomPage. I want to know if it can be made possible. Last edited by Fak Eid; 12-09-2023 at 01:11. |
#498
|
||||
|
||||
I tried to place something over the video in different ways, it doesn't work. I think that FMXInno does not play the video itself (it does not have built-in codecs for video) and just passes it to Windows. Therefore, nothing works.
__________________
https://t.me/FMXInno |
The Following User Says Thank You to audiofeel For This Useful Post: | ||
Fak Eid (12-09-2023) |
#499
|
||||
|
||||
FMXInno -Updates
FMXInno Update - [2023-Sep-12]
Code:
* Added new functions. * Disabled runtime integrity checks. * Fixed DirBrowse Edit. * Updated FCreate* functions. * Updated 'MinimizeWindowCustomAnimated' for ImageForms. * Updated 'XBass' (internal/external). * Updated 'ISArcEx' (internal/external). * Removed lzma2 algorithm and used the lowest compression level. - FinalSize(old): 2.86 MB - FinalSize(new): 3.41 MB Code:
{ PowerPlan ID } const USER_PP_POWER_SAVER = $0002; USER_PP_BALANCED = $0004; USER_PP_HIGH_PERFORMANCE = $0006; USER_PP_ULTIMATE_PERFORMANCE = $0008; USER_PP_UNKNOWN = $0001; function wPowerPlanGetActivePlan: Byte; function wPowerPlanExist(const PowerPlanID: Byte): Boolean; function wPowerPlanSetOrCreate(const PowerPlanID: Byte): Boolean; var CurActivePowerPlanID: Byte; Code:
function InitializeSetup(): Boolean; begin CurActivePowerPlanID := wPowerPlanGetActivePlan; if (CurActivePowerPlanID = USER_PP_POWER_SAVER) or // Power saver (CurActivePowerPlanID = USER_PP_BALANCED) or // Balanced (CurActivePowerPlanID = USER_PP_UNKNOWN) then // Unknown (optional) begin if (not wPowerPlanSetOrCreate(USER_PP_HIGH_PERFORMANCE)) then // High performance MsgBox('High performance powerplan error.', mbError, MB_OK); end; FMXInnoInit; Result := True; end; procedure DeinitializeSetup(); begin wPowerPlanSetOrCreate(CurActivePowerPlanID); FMXInnoShutDown; end; ----------------------------------------------------------------------------------------------------------------------- Quote:
'MinimizeWindowCustomAnimated' has been fixed for 'ImageForms'. ----------------------------------------------------------------------------------------------------------------------- Quote:
fixed. ----------------------------------------------------------------------------------------------------------------------- Quote:
1. 'ISArcEx' only calculates the current extraction speed for the current archive. 2. 'ISArcExReduceCalcAccuracy' has been updated. - procedure ISArcExReduceCalcAccuracy(Factor: Byte); - Factor: 1-5 (default = 1). . Last edited by BLACKFIRE69; 14-07-2024 at 03:05. |
#501
|
|||
|
|||
win10 21h1 FMXForm:= InitFormHandle unresponsive
|
#502
|
||||
|
||||
i don't have Windows 10 21H1 at the moment, but it's working fine on Windows 10 22H2 (even on a virtual machine). screenshot: . Last edited by BLACKFIRE69; 14-07-2024 at 03:06. |
#503
|
||||
|
||||
@BLACKFIRE69
Is it impossible to get an icon to display by the icon index? wGetSysDefaultIcons2 something like this... %SystemRoot%\System32\SHELL32.dll, -123
__________________
https://t.me/FMXInno |
#504
|
|||
|
|||
Hi! What about rounding out the shape?
I want to use "FMXForm.FCreateNormal(WizardForm.Handle);" so that I can put any image on top of the form and it will be rounded. On the screenshots you can see it perfectly well, everything turns out using this: Code:
function SetWindowRgn(hWnd: HWND; hRgn: LongWord; bRedraw: BOOL): Integer; external '[email protected] stdcall'; SetWindowRgn(FMXForm.Handle, FormRegion, True); SetWindowRgn works only with "FMXForm.FCreateNormal", I want to have the same view for all systems (from Win7 to 11) and have the ability to set parameters of form rounding. |
#505
|
||||
|
||||
Quote:
maximum size will be 32x32. if this is ok to you, let me know. . Last edited by BLACKFIRE69; 14-07-2024 at 03:06. |
#506
|
||||
|
||||
Disappointment. The size is too small. But still this function is useful in future cases as in the screenshot below.
__________________
https://t.me/FMXInno Last edited by audiofeel; 27-12-2023 at 11:06. |
#507
|
||||
|
||||
Quote:
how about now? . Last edited by BLACKFIRE69; 14-07-2024 at 03:06. |
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (13-09-2023), Lord.Freddy (13-09-2023) |
#508
|
||||
|
||||
__________________
https://t.me/FMXInno |
#509
|
||||
|
||||
Quote:
MultiView, SpeedBtn etc.
__________________
https://t.me/FMXInno |
The Following User Says Thank You to audiofeel For This Useful Post: | ||
hitman797 (13-09-2023) |
#510
|
||||
|
||||
Metro Installer
|
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 |