Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Display Modes
  #271  
Old 22-03-2023, 09:19
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: USSR
Posts: 103
Thanks: 141
Thanked 187 Times in 70 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by Behnam2018 View Post
New Seutp
Wow! Cool installer. Who made it? And is it possible to repeat it? that's the question
__________________
steamcommunity.com/id/lilbabushka/
Reply With Quote
The Following User Says Thank You to audiofeel For This Useful Post:
Masquerade (22-03-2023)
Sponsored Links
  #272  
Old 22-03-2023, 09:26
Masquerade's Avatar
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 950
Thanks: 242
Thanked 1,085 Times in 510 Posts
Masquerade is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
Wow! Cool installer. Who made it? And is it possible to repeat it? that's the question
Yes, an incredible job
Reply With Quote
The Following User Says Thank You to Masquerade For This Useful Post:
audiofeel (22-03-2023)
  #273  
Old 22-03-2023, 10:40
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 468
Thanks: 337
Thanked 1,457 Times in 353 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno v1.0.0.2

Quote:
Originally Posted by audiofeel View Post
@BLACKFIRE69: Mr... Is it possible to change the volume with the mouse wheel? (you point the pointer at the button, turn the wheel and the volume changes) As in the latest Win11 builds. A non-interfering SetHint appears at the top with numbers showing the level.
Sorry for my english, you all already felt a slight Welsh accent
Here , as if it is possible

Added OnMouseWheel event for FMXForm and Trackbar. let me know if you need OnMouseWheel event for other components as well.


.
Attached Images
File Type: gif _1.gif (61.8 KB, 62 views)
Attached Files
File Type: 7z FMXInno-MouseWheel.7z (3.03 MB, 11 views)
Reply With Quote
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (22-03-2023), hitman797 (23-03-2023)
  #274  
Old 22-03-2023, 11:29
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: USSR
Posts: 103
Thanks: 141
Thanked 187 Times in 70 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by BLACKFIRE69 View Post
Added OnMouseWheel event for FMXForm and Trackbar. let me know if you need OnMouseWheel event for other components as well.
.
This is great and understandable. What do users usually make a music (volume) button out of? Most likely from "FEqualizer" "FText" and "FColorButton". I just assumed.
__________________
steamcommunity.com/id/lilbabushka/

Last edited by audiofeel; 22-03-2023 at 11:46.
Reply With Quote
  #275  
Old 22-03-2023, 13:54
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: USSR
Posts: 103
Thanks: 141
Thanked 187 Times in 70 Posts
audiofeel is on a distinguished road
Here, a little higher, a user under the nickname Behnam2018 posted a screenshot with the installer. An experienced eye will notice that the fonts that should be displayed are not displayed there. Most likely, Behnam2018 is installed "Windows7". On it, with the "temporary" installation of fonts, small problems sometimes arise. As a temporary solution, I propose this.
Code:
function InitializeSetup(): Boolean;
var
  ResultCode: Integer;
begin
  if not FontExists('My Font') then
  begin
    ExtractTemporaryFile('MyFont.ttf');
    ExtractTemporaryFile('FontReg.exe');
    Exec(ExpandConstant('{tmp}\FontReg.exe'), '/copy', '', SW_HIDE, ewWaitUntilTerminated, ResultCode);
  end;


  Result:= True;
end;
https://code.kliu.org/misc/fontreg/
Attached Images
File Type: jpg 1.JPG (61.3 KB, 61 views)
File Type: png illuvium358.png (302.8 KB, 54 views)
__________________
steamcommunity.com/id/lilbabushka/

Last edited by audiofeel; 22-03-2023 at 14:01.
Reply With Quote
The Following 3 Users Say Thank You to audiofeel For This Useful Post:
BLACKFIRE69 (22-03-2023), hitman797 (23-03-2023), Masquerade (22-03-2023)
  #276  
Old 22-03-2023, 22:43
Behnam2018 Behnam2018 is offline
Registered User
 
Join Date: Jun 2018
Location: IRAN
Posts: 48
Thanks: 712
Thanked 21 Times in 18 Posts
Behnam2018 is on a distinguished road
Red face I thank and apologize to all my friends

made BY KaOs Repack
Reply With Quote
  #277  
Old 22-03-2023, 23:28
Masquerade's Avatar
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 950
Thanks: 242
Thanked 1,085 Times in 510 Posts
Masquerade is on a distinguished road
Quote:
Originally Posted by Behnam2018 View Post
made BY KaOs Repack
No, made by audiofeel, as written in credits, and thanks to BLACKFIRE69 for the IsArcEx and FMXInno libraries!
Reply With Quote
The Following 3 Users Say Thank You to Masquerade For This Useful Post:
audiofeel (23-03-2023), BLACKFIRE69 (23-03-2023), hitman797 (23-03-2023)
  #278  
Old Yesterday, 07:38
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 468
Thanks: 337
Thanked 1,457 Times in 353 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno v1.0.0.2 - Updates

FMXInno v1.0.0.2 - Updates


Code:
* Now almost all components are ready to work with FXPacker and FXStream.

.
Attached Images
File Type: png 1.png (41.0 KB, 32 views)
Attached Files
File Type: 7z FMXInno+FXPacker.7z (9.16 MB, 30 views)
Reply With Quote
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (Today), audiofeel (Yesterday), hitman797 (Yesterday)
  #279  
Old Today, 15:19
audiofeel's Avatar
audiofeel audiofeel is online now
Registered User
 
Join Date: Jan 2013
Location: USSR
Posts: 103
Thanks: 141
Thanked 187 Times in 70 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by hitman797 View Post
hi, BLACKFIRE69.
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

Comp6Name=Offline MP                                              
Comp6Size=4000
Comp6Group=0
Code:
procedure SetupUI_Init(Handle1, Handle2, Handle3: HWND);
  external '[email protected]:ISFMXUI.dll cdecl';
procedure SetupUI_Deinit;
  external '[email protected]:ISFMXUI.dll stdcall';
procedure SetupUI_Show;                                          
  external '[email protected]:ISFMXUI.dll stdcall';
procedure SetupUI_SetDir(Dir: PAnsiChar);
  external '[email protected]:ISFMXUI.dll stdcall';
procedure SetupUI_Install;
  external '[email protected]:ISFMXUI.dll stdcall';
procedure SetupUI_Progress(Status, Filename: PAnsiChar; Curr, Max: Integer);
  external '[email protected]:ISFMXUI.dll stdcall';
procedure SetupUI_Finished(Success: Boolean);
  external '[email protected]:ISFMXUI.dll cdecl';
procedure SetupUI_Info(Info1, Info2: String);
  external '[email protected]:ISFMXUI.dll cdecl';
procedure SetupUI_AddComponent(Component: String; Size, Group: Integer; Redist: Boolean);
  external '[email protected]:ISFMXUI.dll cdecl';
function SetupUI_Component(Component: String): Boolean;
  external '[email protected]:ISFMXUI.dll cdecl';
function SetupUI_Shortcuts(Desktop: Boolean): Boolean;
  external '[email protected]:ISFMXUI.dll stdcall';
procedure SetupUI_AddBkgImg1(Buff: PAnsiChar; Size: Integer);
  external '[email protected]:ISFMXUI.dll cdecl';
procedure SetupUI_AddBkgImg2(Filename: String);                                                           
  external '[email protected]:ISFMXUI.dll cdecl';
procedure SetupUI_AddAppInfo(Info: String);
  external '[email protected]:ISFMXUI.dll cdecl';
procedure SetupUI_AddInstInfo(Info: String);
  external '[email protected]:ISFMXUI.dll cdecl';
Hi BLACKFIRE69, could you add an analog of the checklistbox
Perhaps the calculation of the size of components will also be implemented there
__________________
steamcommunity.com/id/lilbabushka/

Last edited by audiofeel; Today at 15:42.
Reply With Quote
The Following User Says Thank You to audiofeel For This Useful Post:
hitman797 (Today)
Reply

Thread Tools
Display Modes

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
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
Windows Phone Installer Enhanced Mod (HMI 7.2 Final) Chayan Manna Conversion Tutorials 93 02-10-2019 12:42
Frequently Asked Questions Joe Forster/STA PC Games - Frequently Asked Questions 0 29-11-2005 09:48



All times are GMT -7. The time now is 21:32.


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