FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   FMXInno - Windows Fluent Design Installer UI for Inno (https://fileforums.com/showthread.php?t=104852)

BLACKFIRE69 30-04-2023 17:29

Quote:

Originally Posted by audiofeel (Post 500998)
@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.

yes, other objects can have this property too. in the next update, i'll add it in a more useful way

Quote:

Originally Posted by audiofeel (Post 500998)
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>

i'm not sure about that.

Tihiy_Don 02-05-2023 13:34

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.

BLACKFIRE69 03-05-2023 06:44

Quote:

Originally Posted by audiofeel (Post 501010)
@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


@audiofeel
it seems that the opacity property is not functioning correctly on the FHTMLText custom component.


Quote:

Originally Posted by Tihiy_Don (Post 501007)
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.


@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:

Originally Posted by audiofeel (Post 501006)
@BLACKFIRE69
Can I programmatically scroll the scrollbar to the left or right? with buttons?
on the "Location" page you will see what I would like to do, but I don't know how


@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.


.

ADMIRAL 04-05-2023 23:43

Quote:

Originally Posted by audiofeel (Post 501022)
@BLACKFIRE69

Thanks. in my opinion, it turned out well. what I wanted
https://ibb.co/wYvYdkk
https://ibb.co/wYvYdkk

Hello
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

BLACKFIRE69 10-05-2023 22:09

Quote:

Originally Posted by audiofeel (Post 501062)
@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;



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;


BLACKFIRE69 10-05-2023 22:20

FMXInno - News update
 
FMXInno - News update

Quote:

1. Currently, my focus is on developing FMXInno-FluentApi version 2.0.
The tests reveal that the most prominent aspect of FluentApi v2.0 is its comprehensive support for Windows, including Windows 7, 8.1, 10, and 11.


2. When dragging the installer in Windows 10 with acrylic effect is on, it causes a lag that has not been resolved with an acceptable solution thus far. In light of this,
FluentApi v2.0 will turn-off the acrylic effect temporarily while moving the installer, leading to a semi-transparent appearance while the installer is being moved.
Code:

Tested OS:

* Windows 11 Pro  - latest.
* Windows 10 Pro  - latest.
* Windows 8.1 Pro - latest.
* Windows 7 Pro  - Service Pack 1.


,

BLACKFIRE69 18-05-2023 04:55

FMXInno - News Updates
 
FMXInno - News Updates

Code:

* New DiskList Blueprint.
.

Junior53 22-05-2023 15:47

Thanks for this amazing tool...
Can you give me the source code? because i just want to customize it.

tayeb1992 25-05-2023 08:51

Quote:

Originally Posted by Junior53 (Post 501182)
Thanks for this amazing tool...
Can you give me the source code? because i just want to customize it.

Source Code
ISFMXFW by Jivanewstone
StyleControls VCL to make the form VCL semi-transparent use acrylic effect
StyleControls VCL
This is VCL Form using acrylic effect to make the form semi-transparent.
https://www.almdev.com/prods/styleco...c5_fluent1.png
https://www.almdev.com/prods/styleco...c5_fluent2.png

BLACKFIRE69 26-05-2023 22:31

Quote:

Originally Posted by Junior53 (Post 501182)
Thanks for this amazing tool...
Can you give me the source code? because i just want to customize it.


you're all welcome to participate in the development of the FMXInno plugin. to become a member, it's necessary to create at least three new blueprints (in FMXInno, i use the term 'Blueprints' to describe custom components, just like in the Unreal Engine.) for FMXInno that are currently not available in the plugin. meeting this requirement is the only criterion for membership.

obtain the ISFMXFW (by Jiva newstone) source code and present your work done with it.

XH75819116 27-05-2023 22:31

What is the reason for my newbie getting stuck when exiting

XH75819116 27-05-2023 22:33

Seeking guidance from the leader

tayeb1992 10-06-2023 01:23

Quote:

Originally Posted by XH75819116 (Post 501210)
What is the reason for my newbie getting stuck when exiting.
Seeking guidance from the leader

Download the full source code from the first post.

FMXInno + FMXInnoSkia - Final Release [2023-Apr-21].7z

BLACKFIRE69 11-06-2023 09:30

Google's Bard AI for FMXInno
 
Google's Bard AI for FMXInno

i've got a solid shot at integrating the Google's Bard AI into the FMXInno plugin. i'm really curious to know what you think about it. would you be interested in having the Bard AI as a feature of the FMXInno plugin?

Tihiy_Don 11-06-2023 10:59

Quote:

Originally Posted by BLACKFIRE69 (Post 501321)
Google's Bard AI for FMXInno

i've got a solid shot at integrating the Google's Bard AI into the FMXInno plugin. i'm really curious to know what you think about it. would you be interested in having the Bard AI as a feature of the FMXInno plugin?

not interesting.


All times are GMT -7. The time now is 00:08.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com