|
|
|
#1
|
|||
|
|||
|
Thanks @Blackfire69 this fixes my issue of the same thing to.. works Great!
ScOOt3r |
| The Following User Says Thank You to ScOOt3r For This Useful Post: | ||
BLACKFIRE69 (13-05-2024) | ||
| Sponsored Links |
|
#2
|
|||
|
|||
|
@GummyBear yes there is a script that works just fine, its on the first page, it has several installers in it so choose the one you like. if you still want the fitgirl installer then look for the fitgirl script. this is currently my favourite script.
ScOOt3r |
| The Following 2 Users Say Thank You to ScOOt3r For This Useful Post: | ||
BLACKFIRE69 (18-05-2024), Jahan1373 (18-05-2024) | ||
|
#3
|
|||
|
|||
|
Thank you, is there a translation into Russian?
|
|
#4
|
|||
|
|||
|
A false screen pops-up for a few second and disappears every time the Setup.exe file is run. This was not happening in the 14th May or older version.
|
| The Following 2 Users Say Thank You to Fak Eid For This Useful Post: | ||
audiofeel (20-05-2024), Behnam2018 (20-05-2024) | ||
|
#5
|
|||
|
|||
|
This issue is still happening in FMXInno [21-May] for all types of forms, at all resolutions and in both Inno Setup version, that is, 6.3.0 and 5.6.0
|
|
#6
|
|||
|
|||
|
Please add the Cursor method for the FColorButton component.
|
|
#7
|
|||
|
|||
|
I also have this problem, a white square appears briefly on blankform. There is no such problem with imageform.
|
|
#8
|
||||
|
||||
|
Quote:
Windows gets new updates regularly, and i've upgraded to the newest version of RadStudio, so anything could be affect this. this is the best optimization that i can do on my part. if it doesn't work, then i can't do anything about it. check the attachment. Added the 'cursor' property for custom blueprints. InnoSetup 6.3.0 Dev: Code:
* Compiled with the latest source code (2024-May-26). * Added missing help files. * Corrected custom syntax highlighting. -- In the previous build, i might have done something wrong. this build will fix it. Last edited by BLACKFIRE69; 14-07-2024 at 02:20. |
|
#9
|
|||
|
|||
|
Help for FNewINI
I still need help with this
Earlier to read AppName from .ini file we used to: Code:
#define AppName ReadIni(SourcePath + "Game\Installer.ini", "Installer", "Name", "")
[Setup]
AppName={#AppName}
Code:
[Setup]
AppName=ANewInI.ReadString('Installer', 'Name', '')
Last edited by Fak Eid; 28-05-2024 at 04:19. |
|
#10
|
||||
|
||||
|
Quote:
this tool is the CLI version of 'FNewINI' and can be used for preprocessing and automating everything at compile-time. in the attachment, you'll find a simple example of how to read and configure the setup with the following INI file. . Last edited by BLACKFIRE69; 10-06-2024 at 11:49. |
|
#11
|
|||
|
|||
|
Hi @Blackfire,
It is good that we now have a preprocessor for Read INI, but personally I think that we only need that to pass {#AppName} and {#DirName} at the compile time during the setup creation process. Rest everything can be handled without preprocessor. The FNewINI is written well enough. Please consider an example I shared above for Icons creation. It is easy to read, has a common procedure for all AppExe, less code, has ability to add more parameters in future and doesn't use preprocessor. You can definitely enhance and add to FMXInno (if you feel) If I have to use the preprocessor only, I'd rather use the older reliable method. But, thank you so much for the enhancements. I'd be posting more on Redist installation handling and Data extraction handling. I'm coding and testing on them. |
|
#12
|
|||
|
|||
|
Quote:
I've almost completed changes and currently testing this with new FNewINI Last edited by Fak Eid; 29-05-2024 at 11:58. |
|
#13
|
|||
|
|||
|
Issue with FCombineText
Hi @Blackfire,
Not sure if you remember I asked how can I have just 1 character space instead of Tab Space for FCombineText, and you mentioned it can be done using 0 or -1, -2, etc. The problem is, it is not working for Smaller Font Size like 12-15. The two texts are not on same height and the gap is unusual. On Larger Font Size, like 16, it is working as expected. Can you help? Code:
SectionText[1].FCreate(SectionContent[1].Handle, 500, 15, 'Developers :', INI_DEVELOPERS, -1, False);
SectionText[1].Text1Setting('{#FontName}', 12, {#FontColor}, False);
SectionText[1].Text2Setting('{#FontName}', 12, {#SelectedFontColor}, False);
SectionText[2].FCreate(SectionContent[1].Handle, 500, 35, 'Genre :', INI_GENRE, -1, False);
SectionText[2].Text1Setting('{#FontName}', 12, {#FontColor}, False);
SectionText[2].Text2Setting('{#FontName}', 12, {#SelectedFontColor}, False);
|
|
#14
|
||||
|
||||
|
Quote:
Code:
TTextAlign = (txCenter, txLeading, txTrailing);
procedure Text1HorzAlign(HAlign: TTextAlign);
procedure Text2HorzAlign(HAlign: TTextAlign);
|
| The Following User Says Thank You to hitman797 For This Useful Post: | ||
Fak Eid (04-06-2024) | ||
|
#15
|
|||
|
|||
|
Quote:
Thank you. I tried and have to manually align the text for this. However, in Smaller Font Size (like 12-15), the two text still doesn't seem to be aligned height-wise. Any fix for it? Code:
SectionText[1].FCreate(SectionContent[1].Handle, 500, 15, 'Developers :', INI_DEVELOPERS, -1, False);
SectionText[1].Text1Setting('{#FontName}', 12, {#FontColor}, False);
SectionText[1].Text2Setting('{#FontName}', 12, {#SelectedFontColor}, False);
SectionText[1].Text1HorzAlign(txTrailing);
SectionText[1].Text2HorzAlign(txTrailing);
SectionText[2].FCreate(SectionContent[1].Handle, 505, 35, 'Genre :', INI_GENRE, -1, False);
SectionText[2].Text1Setting('{#FontName}', 12, {#FontColor}, False);
SectionText[2].Text2Setting('{#FontName}', 12, {#SelectedFontColor}, False);
SectionText[2].Text1HorzAlign(txTrailing);
SectionText[2].Text2HorzAlign(txTrailing);
SectionText[3].FCreate(SectionContent[1].Handle, 500, 55, 'Release Date :', INI_RELEASE_DATE, -1, False);
SectionText[3].Text1Setting('{#FontName}', 12, {#FontColor}, False);
SectionText[3].Text2Setting('{#FontName}', 12, {#SelectedFontColor}, False);
SectionText[3].Text1HorzAlign(txTrailing);
SectionText[3].Text2HorzAlign(txTrailing);
Last edited by Fak Eid; 05-06-2024 at 00:28. |
![]() |
|
|
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 |