|
#1141
|
|||
|
|||
|
PLEASE HELP ME I AM LOOKING FOR THIS BUT NOBODY REPLY ME ... ?
I have Script Black Box old not V2 .. is okay but my game has 2 .exe or two shorcuts how to put these exe on desktop what to add on script to put two exe on desktop pleasee ... ?? my half of script : WHAT SHOULD I EDIT HERE IN THIS SCRIPT : .... Quote:
Last edited by leotrim77; 04-12-2014 at 10:34. |
| Sponsored Links |
|
#1142
|
|||
|
|||
|
please help me .... ??
|
|
#1143
|
|||
|
|||
|
Quote:
Code:
#define AppName "Subway Surfers"
#define AppExec "Subway_Surfers.exe"
#define AppName1 "Subway Surfers two"
#define AppExec1 "Subway_Surfers_two.exe"
[Icons]
Name: {group}\Uninstall {#AppName}; Filename: {app}\unins000.exe; WorkingDir: {app}; Check: CheckError
Name: {group}\{#AppName}; Filename: {app}\{#AppExec}; WorkingDir: {app}; Check: CheckError
Name: {group}\{#AppName1}; Filename: {app}\{#AppExec1}; WorkingDir: {app}; Check: CheckError
Name: {commondesktop}\{#AppName}; Filename: {app}\{#AppExec}; WorkingDir: {app}; Check: CheckError
Name: {commondesktop}\{#AppName1}; Filename: {app}\{#AppExec1}; WorkingDir: {app}; Check: CheckError
Last edited by by_pbh; 04-12-2014 at 12:37. |
|
#1144
|
|||
|
|||
|
Quote:
you know what ... I LOVE YOU SO MUCH thank youuuuuuuuuuuuuuuuuuuuu ![]() thank you bro |
|
#1145
|
|||
|
|||
|
hey guys I have only last question I just want to know why is registry important to add to script or to inno setup , what does mean registry ... please explain me somebody , Why should I add registry of game to script ... ?
|
|
#1146
|
||||
|
||||
|
Quote:
Search in your Registry (regedit) if Games needed a Reg entry. |
|
#1147
|
|||
|
|||
|
so does it work even if you don't put registry on script ... ?
|
|
#1148
|
||||
|
||||
|
yes it still works without reg entries. SOME games don't need them to work. BUT some games wont run without them there.
|
|
#1149
|
|||
|
|||
|
please help me where can I fine any tutorial how to get registry from games , please tell me somebody how can I find registry of games ... ???
|
|
#1150
|
||||
|
||||
|
Quote:
Now go to HKEY_LOKAL_MACHINE->Software->Wow6432Node->Search your Game. Make a right click on the Folder and click Export. Now edit .reg Data for your Script. |
|
#1151
|
|||
|
|||
|
Quote:
thank you
|
|
#1152
|
||||
|
||||
|
along with that goto this topic & grab Reg to INNO Converter ENG.rar which will create a iss file so you can put those exported reg entries into your Inno script. They will of course need to be edited. IE in screenshot above shows InstallDir=E:\Program Files (x86)\Resident Evil 5, which would be changed to {app} so that anyone can install to where they want to & not to 1 specific location.
http://fileforums.com/showthread.php?t=92995 |
|
#1153
|
|||
|
|||
|
how to disable cancel button in welcome page and second back button innosetup..
|
|
#1154
|
||||
|
||||
|
if referring to yener's script, simply enter values bigger then image, or use negative values.
|
|
#1155
|
||||
|
||||
|
on a normal script, this is what you do.
[Code] procedure CurPageChanged(CurPageID: Integer); begin case CurPageID of wpWelcome: begin WizardForm.CancelButton.Enabled:=False; // to disable; WizardForm.CancelButton.Visible:=False; // to hide; WizardForm.BackButton.Enabled:=False; // to disable; WizardForm.BackButton.Visible:=False; // to hide; end; end; end; |
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
pakrat2k2 (09-02-2015) | ||
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
| INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |