|
|
|
#1
|
|||
|
|||
|
Hi,
Audiofeel helped to write the script and UI design for my new installer but some users are having an issue where the setup will simply hang in the taskbar. I am not sure what could be causing this or if it could be looked into. Please let me know. One such user is using Windows 11 with an i6 9600K and an RX 590 videocard. An image of how the setup hangs: ![]() Is this an FMXInno problem? Thanks! |
| Sponsored Links |
|
#2
|
||||
|
||||
|
Quote:
i've had this experience before when trying to run Setup.exe from a pen drive. but it works fine for external hard drives. i dont know why... . Last edited by BLACKFIRE69; 14-07-2024 at 01:48. |
| The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (15-01-2023) | ||
|
#3
|
||||
|
||||
|
Quote:
Code:
procedure Visible(FVisible: Boolean); |
| The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (16-01-2023) | ||
|
#4
|
||||
|
||||
|
Code:
What's new: 1. Added full control of SystemTray icon. Quote:
Notice Quote:
Last edited by BLACKFIRE69; 14-07-2024 at 01:48. |
| The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
hitman797 (16-01-2023) | ||
|
#5
|
||||
|
||||
|
Quote:
thank you, @audiofeel |
| The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (16-01-2023) | ||
|
#6
|
||||
|
||||
|
Quote:
it's not fair if i don't fix this... ____________________________________ Added last update to first post. . Last edited by BLACKFIRE69; 14-07-2024 at 01:49. |
|
#7
|
||||
|
||||
|
FMXInno - Dev
Code:
* Fully customizable UWP Tiles was a feature in the version v.1.0.0.3 * it's the only feature which supported by its predecessor, FMXInno v1.0.0.2 * if you are interested, i can add this feature on request. Last edited by BLACKFIRE69; 14-07-2024 at 01:49. |
|
#8
|
||||
|
||||
|
Quote:
can you include this in FMXInno v1.0.0.3. Code:
Comp1Name=Game voices>English
Comp1Size=2000
Comp1Group=1
Comp2Name=Game voices>Russian
Comp2Size=2100
Comp2Group=1
Comp3Name=Game crack>CPY
Comp3Size=50
Comp3Group=2
Comp4Name=Game crack>3DM
Comp4Size=50
Comp4Group=2
Comp5Name=Game crack>STP
Comp5Size=50
Comp5Group=2
Comp6Name=Offline MP
Comp6Size=4000
Comp6Group=0
Code:
procedure SetupUI_Init(Handle1, Handle2, Handle3: HWND); external 'func01@files:ISFMXUI.dll cdecl'; procedure SetupUI_Deinit; external 'func02@files:ISFMXUI.dll stdcall'; procedure SetupUI_Show; external 'func03@files:ISFMXUI.dll stdcall'; procedure SetupUI_SetDir(Dir: PAnsiChar); external 'func04@files:ISFMXUI.dll stdcall'; procedure SetupUI_Install; external 'func05@files:ISFMXUI.dll stdcall'; procedure SetupUI_Progress(Status, Filename: PAnsiChar; Curr, Max: Integer); external 'func06@files:ISFMXUI.dll stdcall'; procedure SetupUI_Finished(Success: Boolean); external 'func07@files:ISFMXUI.dll cdecl'; procedure SetupUI_Info(Info1, Info2: String); external 'func08@files:ISFMXUI.dll cdecl'; procedure SetupUI_AddComponent(Component: String; Size, Group: Integer; Redist: Boolean); external 'func09@files:ISFMXUI.dll cdecl'; function SetupUI_Component(Component: String): Boolean; external 'func10@files:ISFMXUI.dll cdecl'; function SetupUI_Shortcuts(Desktop: Boolean): Boolean; external 'func11@files:ISFMXUI.dll stdcall'; procedure SetupUI_AddBkgImg1(Buff: PAnsiChar; Size: Integer); external 'func12@files:ISFMXUI.dll cdecl'; procedure SetupUI_AddBkgImg2(Filename: String); external 'func13@files:ISFMXUI.dll cdecl'; procedure SetupUI_AddAppInfo(Info: String); external 'func14@files:ISFMXUI.dll cdecl'; procedure SetupUI_AddInstInfo(Info: String); external 'func15@files:ISFMXUI.dll cdecl'; |
| The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (25-03-2023) | ||
|
#9
|
||||
|
||||
|
Quote:
|
| The Following 2 Users Say Thank You to Cesar82 For This Useful Post: | ||
BLACKFIRE69 (19-01-2023), hitman797 (19-01-2023) | ||
|
#10
|
|||
|
|||
|
Quote:
. Anyway thanks for the script.Looks nice.
|
| The Following User Says Thank You to ffmla For This Useful Post: | ||
audiofeel (21-01-2023) | ||
|
#11
|
||||
|
||||
|
Hello dear friend
To answer your question, choose is Metro11 If you add the user loading page and goodbye page and also video on backgroud it will be the best installer ever made
__________________
Search and Find |
| The Following User Says Thank You to ADMIRAL For This Useful Post: | ||
audiofeel (10-02-2023) | ||
|
#12
|
||||
|
||||
|
Quote:
__________________
Search and Find |
| The Following User Says Thank You to ADMIRAL For This Useful Post: | ||
audiofeel (12-02-2023) | ||
|
#13
|
||||
|
||||
|
Quote:
Code:
procedure Trackbar1OnChange(Sender: TObject); begin MusicObj.SetVolume(Round(Trackbar_Regular.GetValue)); end; but why? Code:
IXBass : procedure SetVolume(Const Vol: Integer); FTrackBar : function GetValue: Single; |
| The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (04-03-2023) | ||
|
#14
|
||||
|
||||
|
Quote:
yes, volume control is neither gradual nor smooth. i agree. the volume range is (-10,000 to 0). DSBVOLUME_MAX := 0; DSBVOLUME_MIN := -10,000 For More Info i don't know how to do smooth control tho. what i'm doing is simply just set the value as below. ![]() Code:
Vol := (InputVolPct - 100) * 100; DirectSoundBuffer.SetVolume(Vol) if anyone knows a better way let me know. |
| The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (05-03-2023), Behnam2018 (02-01-2025) | ||
|
#15
|
||||
|
||||
|
Quote:
I hope it helps you! |
| The Following User Says Thank You to Cesar82 For This Useful Post: | ||
audiofeel (05-03-2023) | ||
![]() |
|
|
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 |