#826
|
|||
|
|||
Can someone help me in creating these using style file?
|
Sponsored Links |
#827
|
||||
|
||||
The style file contains three atlases with images. for a scale of 15x and 20x. If you can draw this in Photoshop or another image editor, then it won't be difficult to add these images to the style file. You can draw them all on a separate image file.(I do not guarantee that everything will work)
|
The Following User Says Thank You to audiofeel For This Useful Post: | ||
Behnam2018 (13-06-2024) |
#828
|
|||
|
|||
Does anyone have any idea how can this be implemented?
I have SettingsForm: FCustomFluentWindow, and I just want to display this section on the form, without having another pop-up. How can this be implemented? Like we have FStartMenuFolderTreeView, but it can only be on HWND handler, like FMXForm.HandleHWND. I'd want it inside an FCustomPage.Handle Last edited by Fak Eid; 15-06-2024 at 13:01. |
#829
|
||||
|
||||
Quote:
|
#830
|
|||
|
|||
This is for the directory. If this can somehow display menu folders, it can work. I thought if this feature was already present (like FStartMenuFolderTreeView) and if there exist a standard way by which we can do it.
|
#831
|
||||
|
||||
FXSignVerifier
Code:
App: FXSignVerifier, A Signature Verifier For FMXInno Date: 2024-June-16 Compiler: Zig v0.12.1 From now on, every FMXInno update attachment will be signed with a digital signature to verify that the update comes from a trusted source (in this case, me) and has not been tampered with. So, what's the actual big deal with digital signing over checksum? Is a checksum not enough? Checksum: Digital Signature:
Usage:
* You'll find the signature file and the public key for the latest version of FMXInno (2024-June-10) (.rar). * The signature file will look like this:
. |
#832
|
||||
|
||||
Quote:
Code:
procedure SetPaths(const AUserPrograms, ACommonPrograms, AUserStartup, ACommonStartup: String); |
The Following 3 Users Say Thank You to hitman797 For This Useful Post: | ||
#833
|
|||
|
|||
@Blackfire69, Any idea how to import [Files] conditionally using FNewINI? No with pre-processor.
Any update on these? FStartmenuFolderTreeView HTMLViewer to play YT video FDiskList enhancement and .mp4 support for FVideoPlayer I tried this with HTML Viewer with WebView, but the huge logos of YT headbar takes the whole screen. My dimension for showing this is small. Anyways, if this can be done, will be a huge help for my Steam Limitless, as then the user won't have to import and include the video file in Setup. Last edited by Fak Eid; 19-06-2024 at 13:31. |
The Following User Says Thank You to Fak Eid For This Useful Post: | ||
Behnam2018 (19-06-2024) |
#834
|
|||
|
|||
Preprocessing value creation
This can read all single values of your Installer.ini without any use of plugin. Check example here or here
Code:
#define ReadInstaller(Section, Key, Default) ReadIni(SourcePath + "Game\Installer.ini", Section, Key, Default) [Setup] AllowNoIcons=yes AllowRootDirectory=true AppId={{F9787790-D97B-457E-80DA-F69C91F862A8} AppName={#ReadInstaller("Installer", "Name", "")} AppVersion=1.0 AppCopyright=Random_Gamertags DefaultDirName=C:\{#ReadInstaller("Installer", "DirName", "")} Last edited by Fak Eid; 24-06-2024 at 12:42. |
#835
|
|||
|
|||
Hi, I'm trying to add a function in my installer similar to CODEX or FLT installer where there's a checkbox that is "Copy Crack from directory" or "Apply Crack" ,
I want to repack the game in its original uncracked state and do multiple selections for a crack, so what I want is someone to help me write a code, or there is a template to basically just copy the crack from a specific folder For example I have a game Cuphead, and in the main directory folder of the game I have a folder called "Crack" and in there I have the cracks So what's the code to basically just copy the contents of the Crack folder to the game after installing if the user checks the checkbox... thank you |
#836
|
|||
|
|||
You should rather put your "Crack" folder in source than in application installation location. I prefer that.
Code:
[Files] Source: "{src}\Crack\*"; DestDir: "{app}"; Check: ApplyCrack Code:
function ApplyCrack: Boolean; begin Result := Checkbox[1].IsChecked; end; |
#837
|
||||
|
||||
Quote:
Last edited by audiofeel; 28-06-2024 at 17:35. |
The Following User Says Thank You to audiofeel For This Useful Post: | ||
Behnam2018 (28-06-2024) |
#838
|
|||
|
|||
Quote:
|
#839
|
|||
|
|||
Is there a way to add a serial key page using this style? I am new to this!
|
#840
|
|||
|
|||
You can refer Example_QuickMsg_3.iss from the main post
|
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 |