Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 07-09-2025, 10:49
Snake288 Snake288 is offline
Registered User
 
Join Date: Nov 2018
Location: Paris
Posts: 209
Thanks: 92
Thanked 36 Times in 29 Posts
Snake288 is on a distinguished road
Thumbs down Hello

https://fileforums.com/showpost.php?...92&postcount=7 Hello, does this support Redshank DiskSpan GUI?
Reply With Quote
Sponsored Links
  #2  
Old 07-09-2025, 16:43
kaka2021 kaka2021 is offline
Registered User
 
Join Date: Sep 2025
Location: 中国
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
kaka2021 is on a distinguished road
Sorry to bother you.

Quote:
Originally Posted by audiofeel View Post
No
https://fileforums.com/showpost.php?...92&postcount=7
Could you please help me take a look and add the installed game pop-up webpage? I have tried this code many times, but it still hasn't worked
if CurStep = ssDone then
ShellExec('open', ' https://www.baidu.com ', '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode);
end;
Reply With Quote
  #3  
Old 08-09-2025, 11:20
nodesire7 nodesire7 is offline
Registered User
 
Join Date: Sep 2025
Location: China
Posts: 15
Thanks: 4
Thanked 2 Times in 2 Posts
nodesire7 is on a distinguished road
Quote:
Originally Posted by kaka2021 View Post
https://fileforums.com/showpost.php?...92&postcount=7
Could you please help me take a look and add the installed game pop-up webpage? I have tried this code many times, but it still hasn't worked
if CurStep = ssDone then
ShellExec('open', ' https://www.baidu.com ', '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode);
end;
Add the following under `[Icons]` in your Inno Setup script:

Quote:
[Run]
Filename: "https://www.google.com"; Description: "website"; Flags: postinstall shellexec skipifsilent; Tasks: ; Languages:
This will add a shortcut that opens the Google website after installation.
Reply With Quote
  #4  
Old 08-09-2025, 19:02
kaka2021 kaka2021 is offline
Registered User
 
Join Date: Sep 2025
Location: 中国
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
kaka2021 is on a distinguished road
Thank you

Quote:
Originally Posted by nodesire7 View Post
Add the following under `[Icons]` in your Inno Setup script:



This will add a shortcut that opens the Google website after installation.
Thank you
Reply With Quote
  #5  
Old 07-09-2025, 19:06
kaka2021 kaka2021 is offline
Registered User
 
Join Date: Sep 2025
Location: 中国
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
kaka2021 is on a distinguished road
Yes, that's right. After the installation is complete, a pop-up page will appear.

Quote:
Originally Posted by audiofeel View Post
I translated it three times and didn't understand anything. after what operation do you need the browser to start from your page? after exiting the installer? on the last page?
Yes, that's right. After the installation is complete, a pop-up page will appear.
Reply With Quote
  #6  
Old 08-09-2025, 10:01
Lucifer Crossman Lucifer Crossman is offline
Registered User
 
Join Date: Jun 2025
Location: Russia
Posts: 6
Thanks: 4
Thanked 0 Times in 0 Posts
Lucifer Crossman is on a distinguished road
Quote:
Originally Posted by kaka2021 View Post
Yes, that's right. After the installation is complete, a pop-up page will appear.
I don't get it. Do you want a window with a website to pop up after installing any game?
Reply With Quote
  #7  
Old 08-09-2025, 19:01
kaka2021 kaka2021 is offline
Registered User
 
Join Date: Sep 2025
Location: 中国
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
kaka2021 is on a distinguished road
Could you please help me see if this term 'secs' can be translated into Chinese

Quote:
Originally Posted by Lucifer Crossman View Post
I don't get it. Do you want a window with a website to pop up after installing any game?


"Could you please help me see if this term 'secs' can be translated into Chinese?"
Reply With Quote
  #8  
Old 08-09-2025, 22:17
nodesire7 nodesire7 is offline
Registered User
 
Join Date: Sep 2025
Location: China
Posts: 15
Thanks: 4
Thanked 2 Times in 2 Posts
nodesire7 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
I translated it three times and didn't understand anything. after what operation do you need the browser to start from your page? after exiting the installer? on the last page?
I'm having trouble with the Open Setup [17.05].iss script you released; it's not creating shortcuts during my tests.

Here's my INI configuration:

Code:
[Execs]

[Execs\AppExe1]
name=Titan Quest II
exe=TQ2.exe
icon=TQ2.exe
args=TQ2_PC
workdir={app}
Is there anything wrong with this?

I also modified the `[Icons]` section, but it still doesn't create shortcuts:

Code:
[Icons]
#sub InitIcon
  #define IcnSubSec ReadMInI('GetSubSection', '/MainSec=Execs /Idx=' + Str(i) + ' /RootOnly=true')
  #if IcnSubSec != ""
    #define IcnName ReadMInI('ReadSubString', '/MainSec=Execs /SubSec=' + IcnSubSec + ' /Key=Name')
    #define IcnExe ReadMInI('ReadSubString', '/MainSec=Execs /SubSec=' + IcnSubSec + ' /Key=Exe')
    #define IcnIcon ReadMInI('ReadSubString', '/MainSec=Execs /SubSec=' + IcnSubSec + ' /Key=Icon')
    #define IcnArgs ReadMInI('ReadSubString', '/MainSec=Execs /SubSec=' + IcnSubSec + ' /Key=Args')
    #define IcnWorkDir ReadMInI('ReadSubString', '/MainSec=Execs /SubSec=' + IcnSubSec + ' /Key=WorkDir')
Name: "{autodesktop}\{#IcnName}"; Filename: "{app}\{#IcnExe}"; IconFilename: "{app}\{#IcnIcon}"; Parameters: "{#IcnArgs}"; WorkingDir: "{app}"; Check: CreateDesktopIcons
Name: "{group}\{#IcnName}"; Filename: "{app}\{#IcnExe}"; IconFilename: "{app}\{#IcnIcon}"; Parameters: "{#IcnArgs}"; WorkingDir: "{app}"; Check: CreateGroupIcons
  #endif
#endsub
#for {i = 0; i < MAX_ICONS; i++} InitIcon
#endif
Is there an error in my code?

I see the problem now.

[13:08:11.022] -- Icon entry --
[13:08:11.027] Target filename: C:\Users\Public\Desktop\Titan Quest II.lnk
[13:08:11.030] Creating icon.
[13:08:11.035] Icon successfully created.
[13:08:11.080] -- Icon entry --
[13:08:11.083] Target filename: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\(Default)\Titan Quest II.lnk
[13:08:11.087] Creating directory: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\(Default)

But how to fix it?

Code:
[Setup]
; Add this line to explicitly define the Start Menu folder name
DefaultGroupName=Game\{#ReadMInI('ReadString', '/Sec=Setup /Key=Path')}

[Icons]
; Fix: Use {userdesktop} instead of {autodesktop}
Name: "{userdesktop}\{#IcnName}"; Filename: "{app}\{#IcnExe}"; IconFilename: "{app}\{#IcnIcon}"; Parameters: "{#IcnArgs}"; WorkingDir: "{app}"; Check: CreateDesktopIcons
Name: "{group}\{#IcnName}"; Filename: "{app}\{#IcnExe}"; IconFilename: "{app}\{#IcnIcon}"; Parameters: "{#IcnArgs}"; WorkingDir: "{app}"; Check: CreateGroupIcons
  #endif
#endsub
#for {i = 0; i < MAX_ICONS; i++} InitIcon
#endif
This modification should be correct, right?

It workit!

Warning: The "[Setup]" section directive "PrivilegesRequired" is set to "admin," but the script uses the per-user area (userdesktop). Regardless of the Windows version, if the installation is running in administrative install mode, be cautious when making any changes to the per-user area: these changes may not achieve your intended effect. For more information, see the "UsedUserAreasWarning" topic in the help file.

Last edited by nodesire7; 08-09-2025 at 23:05.
Reply With Quote
  #9  
Old 27-12-2025, 22:44
fabrieunko fabrieunko is offline
Registered User
 
Join Date: Sep 2021
Location: france
Posts: 217
Thanks: 516
Thanked 78 Times in 71 Posts
fabrieunko is on a distinguished road
Hello, which version of InnoSetup should I compile with? I have version 6.0.5 (u) installed and I'm getting an error message.
Reply With Quote
  #10  
Old 31-12-2025, 18:11
nodesire7 nodesire7 is offline
Registered User
 
Join Date: Sep 2025
Location: China
Posts: 15
Thanks: 4
Thanked 2 Times in 2 Posts
nodesire7 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
I'm currently encountering a problem. I've always been using the packaging method you recommended to me, "Simple_Compressor," but it has a problem: it's very slow. I've seen repacks like FitGirl have a "CPU limit removal" option. How is this implemented? Are there any existing tools available?
Reply With Quote
  #11  
Old 21-04-2024, 13:41
demon964 demon964 is offline
Registered User
 
Join Date: Feb 2014
Location: Azerbaijan
Posts: 38
Thanks: 4
Thanked 7 Times in 5 Posts
demon964 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
SteamInstall
The size of the form has been reduced to 720. This is all that can be done in a particular case. Plus fixes. Post updated.
how i can get source code without protector?

Or i can buy full source?
Reply With Quote
The Following 2 Users Say Thank You to demon964 For This Useful Post:
audiofeel (30-05-2024), Behnam2018 (12-08-2024)
  #12  
Old 30-03-2024, 22:41
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 692
Thanks: 481
Thanked 2,557 Times in 565 Posts
BLACKFIRE69 is on a distinguished road
Arrow AtlasOS - Installer

AtlasOS - Installer


* who wants an AtlasOS-like installer in FMXInno?



.
Attached Images
File Type: png 00.png (30.5 KB, 526 views)
File Type: png 01.png (15.6 KB, 508 views)
File Type: png 02.png (15.8 KB, 506 views)
Reply With Quote
The Following 8 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (30-03-2024), Behnam2018 (31-03-2024), Fak Eid (15-04-2024), hitman797 (31-03-2024), Jahan1373 (03-05-2024), JIEXA MEDVED (02-04-2024), Lord.Freddy (01-04-2024), ScOOt3r (31-03-2024)
  #13  
Old 02-04-2024, 12:56
JIEXA MEDVED JIEXA MEDVED is offline
Registered User
 
Join Date: Aug 2022
Location: Russia
Posts: 3
Thanks: 13
Thanked 17 Times in 4 Posts
JIEXA MEDVED is on a distinguished road
Thumbs up

Quote:
Originally Posted by BLACKFIRE69 View Post
AtlasOS - Installer

* who wants an AtlasOS-like installer in FMXInno?

.
I wouldn't mind seeing how this is will implemented. The trick with Drag and drop file in to the form is especially interesting
Reply With Quote
The Following User Says Thank You to JIEXA MEDVED For This Useful Post:
audiofeel (02-04-2024)
  #14  
Old 14-03-2026, 09:57
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 53
Thanks: 484
Thanked 1,095 Times in 379 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by JIEXA MEDVED View Post
I wouldn't mind seeing how this is will implemented. The trick with Drag and drop file in to the form is especially interesting
Yes, it can be done. Here is how it looks in practice, but this example comes from a different project.

https://youtu.be/TfhbiXLNDgw
__________________
https://t.me/FMXInno
Reply With Quote
  #15  
Old 08-04-2026, 13:25
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 692
Thanks: 481
Thanked 2,557 Times in 565 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMX Style Explorer v2.0

FMX Style Explorer v2.0 - A Tool to explore FireMonkey Styles
=======================================

Code:
> Overview:
FMX Style Explorer (v2.0) is a useful, lightweight utility designed to help 
Delphi developers navigate FireMonkey styles. It provides a visual breakdown 
of your .style and .fsf files.

> Specifications:
- Version       : v2.0.0.0
- Author        : BLACKFIRE
- Language      : Delphi (FMX)
- Compatibility : Delphi XE2 or later (.style / .fsf files)

> Features:
- Visual Hierarchy: View the object tree of any FMX style file.
- Previews: See how a style looks. Selecting a style entry generates a 
  preview of the control.
- Search: Locate specific styles or classes with case-insensitive search 
  and F3 cycling.
- Compression: Convert text-based styles into binary format. This can 
  reduce file sizes by 2-3x, making your application distribution smaller.
- Export List: Generate a list of styles contained within a file for 
  documentation or reference.
- Simple UI: Includes keyboard shortcuts and a straightforward interface 
  built with FireMonkey.
Code:
> Keyboard Shortcuts:
- Ctrl + O : Open style file
- Ctrl + F : Search styles
- F3       : Find next match
- Ctrl + C : Copy selected style name
- Esc      : Clear search/selection

> Compression Benefits:
- Binary format = Small file size
- Useful for app distribution
- Typically 2-3x smaller than text format
- Improved loading times in apps

> What's New in v2.0:
- Visual hierarchy categorization.
- Preview engine for FMX controls.
- New "Export" feature for style documentation.
- Integrated binary compression utility.
- UI with "AuraUI" components.

.
Attached Images
File Type: png 1.png (163.3 KB, 126 views)
File Type: png 2.png (147.3 KB, 124 views)
Attached Files
File Type: 7z FMX Style Explorer v2.0.7z (1.88 MB, 10 views)
Reply With Quote
The Following 5 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (08-04-2026), Cesar82 (08-04-2026), Ele (14-04-2026), Razor12911 (09-04-2026), ScOOt3r (09-04-2026)
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
ASIS: Advanced Simple Installer Script KaktoR Conversion Tutorials 1477 20-05-2026 10:52
FMXInno - Windows Fluent Design Installer UI for Inno BLACKFIRE69 Conversion Tutorials 626 08-04-2026 12:33
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 02:05
Installer Creator Source Code Razor12911 Conversion Tutorials 19 13-12-2015 10:20



All times are GMT -7. The time now is 09:41.


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