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 03-12-2022 19:40

Quote:

Originally Posted by MojoW (Post 499297)
Double checked if that plugin was there and it was.
So it wasn't deleted.

try this and run the Example-Calc.bat as well.

MojoW 03-12-2022 20:15

1 Attachment(s)
Quote:

Originally Posted by BLACKFIRE69 (Post 499301)
try this and run the Example-Calc.bat as well.

Still didn't work and did the example.

amin fear 03-12-2022 22:39

Quote:

Originally Posted by BLACKFIRE69 (Post 499288)
can you tell me the file path of Script1.iss?

(example: C:\Downloads\FMXInno\Script.iss)

I have tried using the "short" path & the problem solved !

Code:

C:\FMXInno v1.0.0.2\Script1.iss
This error is related to "LONG" path names.:)

MojoW 04-12-2022 03:07

Quote:

Originally Posted by amin fear (Post 499304)
I have tried using the "short" path & the problem solved !

Code:

C:\FMXInno v1.0.0.2\Script1.iss
This error is related to "LONG" path names.:)

I tried but still have the same error.

C:\Users\MojoW\Desktop\FMXInno

D:\RepackTools\FMXInno

Edit:
So when i comment out the ExtraDiskSpaceRequired i can get all the examples to run except script1.
Script1 then errors out on this line
Code:

DoTmpExtract([{#DoFilesListingEx('.\..\..\Files', '*.png|*.jpg|*.cur|*.txt|*.mp3', StringChange(ExcludeFileList, ",", "|"))}]);
I'm just looking to learn from your examples and scripts (And all others on the forum offcourse) but i'm still curious as to why this is happening.

BLACKFIRE69 05-12-2022 03:55

FMXInno + FMXInnoSk - Updates
 
What's new:

Code:

* Updated MFT.exe and Added some features.
  (Thanks Cesar82 for the ideas, suggestions and test runs)

* Integrated BlendOnMoving function into library.

* Updated XHashNext. (internal)

* Added DirectX version.
  - function GetDirectXVersion(const SupportedByOS: Boolean): WideString;

* Added delayload flag.

* Bug fixing and Improvements.


checkout the first post.

BLACKFIRE69 09-12-2022 14:34

FMXInno + FMXInnoSk - Examples
 
11 Attachment(s)
Code:

[*] Lizzard Installer  -  Another example from FMXInno.
,

BLACKFIRE69 14-12-2022 08:19

FMXInno - Updates
 
FMXInno (Alpha) - Updates

Code:

* A style file was injected into the DLL.
  - Now it'll be the default skin for FMXInno until you load another style file.

* Stripped unused resources. ( 2.53 MB  -->  2.21 MB )

* Added Trackbar. (Regular and Botva-like)



__________________________________________________ ___________

Quote:

Extra:

* More styles will be added to FMXinno if someone can change the colors of the attached PNGs to the colors provided.

(i can't do it nice and smoothly, not good at stuff like editing :rolleyes:)

* PNGs and colors are attached below.

ffmla 14-12-2022 09:02

Quote:

Originally Posted by BLACKFIRE69 (Post 499416)
FMXInno (Alpha) - Updates

Code:

* A style file was injected into the DLL.
  - Now it'll be the default skin for FMXInno until you load another style file.

* Stripped unused resources. ( 2.53 MB  -->  2.21 MB )

* Added Trackbar. (Regular and Botva-like)



__________________________________________________ ___________

I am testing this in win 10(I only have this).
In the example script ie. Example_DefaultSkin.iss, while compiling(Inno EE 5.5.1) it throws the following exception msg.

Code:

[22:29:28.728]  InitializeWizard raised an exception (fatal).
[22:29:28.730]  Exception message:
[22:29:28.732]  Message box (OK):
        Runtime Error (at 301:2942):
       
        Exception "EFOpenError" at address 00497587.


BLACKFIRE69 14-12-2022 14:15

Quote:

Originally Posted by ffmla (Post 499417)
I am testing this in win 10(I only have this).
In the example script ie. Example_DefaultSkin.iss, while compiling(Inno EE 5.5.1) it throws the following exception msg.
Code:


Code:

[22:29:28.728]  InitializeWizard raised an exception (fatal).
[22:29:28.730]  Exception message:
[22:29:28.732]  Message box (OK):
        Runtime Error (at 301:2942):
       
        Exception "EFOpenError" at address 00497587.


found out what the problem was...

Code:

Error:

Memo1.LoadFromfile('C:\Program Files (x86)\Inno Setup 5\license.txt');

Code:

Fix:

[Files]
...

Source: ".\license.txt"; DestDir: "{tmp}"; Flags: dontcopy;


{Code]
...

Memo1.LoadFromfile(ExtractAndLoad('license.txt'));

Code:

Hint:

* Use BlankForm instead of FluentForm for Windows 10.


Example:

#define Windows10

....

#ifdef Windows10
  FMXForm.FCreateBlankForm(WizardForm.Handle, ALCoral, '');
#else
  FMXForm.FCreateFluent(WizardForm.Handle, True, False, 0.56, 0);
#endif

...


,

BLACKFIRE69 15-12-2022 03:58

FMXInno + FMXInnoSk - Updates
 
FMXInno + FMXInnoSkia - Updates


The FMXInno v1.0.0.2 (SRC Version: 14.0 - 14.9) is almost done.


Quote:

This was the to-do list in version 1.0.0.2.

* Ability to directly access MouseDown events of main forms.
* Auto DarkMode.
* Auto-scroll form background image.
* Blend on Moving.
* Botva2-like buttons, checkboxes, Trackbars and progress bars.
* Button Sounds.
* Color conversion between FMX and VCL or HTML.
* Customizable lock screen.
* Custom Fluent Window.
* Custom Opacity and brightness for Fluent forms.
* Default Skin.
* Dynamic Tiles.
* File Patching.
* Fluent Design DirBrowse Window.
* Fluent Design StartMenuBrowse Window.
* Form image SlideShow.
* FXPcker / FXStream.
* HTTP Client Api.
* Integration with Skia.
* Image SlideShow.
* NewScaler v2.0.
* SplashScreen.
* Translucent Objects.
* Transparent GIFs.
* Toggle CheckBox v2.0.
* Windows Notifications.


Before moving to the next version, if you need to add anything or any modification in the current version leave it below.

The next version (v1.0.0.3) will be released once it's done, but i can tell it won't be anytime soon. :confused:


Latest version added to first post.

hitman797 15-12-2022 11:44

1 Attachment(s)
What color do you want to change in the png?
blue or black.

BLACKFIRE69 15-12-2022 15:35

Quote:

Originally Posted by hitman797 (Post 499428)
What color do you want to change in the png?
blue or black.

both colors should be changed. the main color to change is blue (cyan). but two sets are needed. dark style with black and white for light style.

hitman797 15-12-2022 19:31

5 Attachment(s)
Test this if it works.

hitman797 15-12-2022 20:31

2 Attachment(s)
Gradients Blue

Behnam2018 15-12-2022 21:31

nothing happens when I run this script
 
4 Attachment(s)
Hi audiofeel , nothing happens when I run this script

My operating system is Windows 7 64-bit


All times are GMT -7. The time now is 16:52.

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