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

Closed Thread
 
Thread Tools Search this Thread Display Modes
  #1  
Old 04-07-2013, 08:03
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,761
Thanks: 2,192
Thanked 11,250 Times in 2,319 Posts
Razor12911 is on a distinguished road
find

MaxWidth : integer;

change it to

MaxHeight : integer;
Sponsored Links
  #2  
Old 05-07-2013, 01:49
red01 red01 is offline
Registered User
 
Join Date: May 2013
Location: last aayam
Posts: 95
Thanks: 36
Thanked 9 Times in 8 Posts
red01 is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
find

MaxWidth : integer;

change it to

MaxHeight : integer;

its not working

after changing this
" MaxWidth : integer;

change it to

MaxHeight : integer; "



i cant follow ur first instruction..


and when i try without step one (ur first instruction) its not working.
its still same progress bar.

can u give me an example script with such progress bar?
  #3  
Old 05-07-2013, 04:56
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,761
Thanks: 2,192
Thanked 11,250 Times in 2,319 Posts
Razor12911 is on a distinguished road
hmm, It works.

Might consider adding this to my installer

function ImgPBCreate(hParent :HWND; bk, pb :ansistring; Left, Top, Width, Height :integer):TImgPB;
begin
Result.Left:=Left+1;
Result.Top:=Top+1;
Result.Width:=Width-2;
Result.Height:=0;
Result.MaxHeight:=Height-2;
if Length(pb)>0 then Result.img1:=ImgLoad(hParent,pb,Result.Left,Result .Top,0,Result.Height,True,False) else Result.img1:=0;
if Length(bk)>0 then Result.img2:=ImgLoad(hParent,bk,Left,Top,Width,Hei ght,True,False) else Result.img2:=0;
end;

procedure ImgPBSetPosition(var PB :TImgPB; Percent :Extended);
begin
if PB.img1<>0 then begin
NewHeight:=Round(PB.MaxHeight*Percent/100);
if PB.Height<>NewHeight then begin
PB.Height:=NewHeight;
ImgSetPosition(PB.img1,PB.Left,PB.Top,PB.Width,PB. Height);
end;
end;
end;

find

NewWidth and MaxWidth

and change them to

NewHeight and MaxHeight

they are under var
  #4  
Old 05-07-2013, 06:13
red01 red01 is offline
Registered User
 
Join Date: May 2013
Location: last aayam
Posts: 95
Thanks: 36
Thanked 9 Times in 8 Posts
red01 is on a distinguished road
i am sorry to bother you again and again but still error.

i attached the image.
Attached Images
File Type: jpg Error after changes.JPG (56.6 KB, 134 views)
  #5  
Old 05-07-2013, 06:16
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,761
Thanks: 2,192
Thanked 11,250 Times in 2,319 Posts
Razor12911 is on a distinguished road
find MaxWidth and Change it to MaxHeight

it's under var
  #6  
Old 05-07-2013, 06:22
red01 red01 is offline
Registered User
 
Join Date: May 2013
Location: last aayam
Posts: 95
Thanks: 36
Thanked 9 Times in 8 Posts
red01 is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
find MaxWidth and Change it to MaxHeight

it's under var
sorry i cant find it.
  #7  
Old 05-07-2013, 09:06
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
look here
Attached Images
File Type: jpg variable.jpg (242.7 KB, 137 views)
  #8  
Old 05-07-2013, 09:07
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,761
Thanks: 2,192
Thanked 11,250 Times in 2,319 Posts
Razor12911 is on a distinguished road
Here's the script with your request
Attached Files
File Type: zip InstallerScript.zip (337.9 KB, 41 views)
The Following User Says Thank You to Razor12911 For This Useful Post:
red01 (05-07-2013)
  #9  
Old 06-07-2013, 01:51
red01 red01 is offline
Registered User
 
Join Date: May 2013
Location: last aayam
Posts: 95
Thanks: 36
Thanked 9 Times in 8 Posts
red01 is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
Here's the script with your request


i try this script and still the same progress bar (look at pic) and its not showing filling of bar with progress of installation (empty progress bar).
Attached Images
File Type: jpg same bar.JPG (182.8 KB, 148 views)
  #10  
Old 09-07-2013, 04:44
pcblizzard pcblizzard is offline
Registered User
 
Join Date: Aug 2009
Location: Germany
Posts: 32
Thanks: 65
Thanked 3 Times in 3 Posts
pcblizzard is on a distinguished road
I have a problem: I use CI 8.5.7.4 and will 2 games integierd in the setup. The problem is, when users will install one game, the installer will makes shourtcuts for both games and not for one game. How can i fix the problem?


Greetings

Last edited by pcblizzard; 09-07-2013 at 07:03.
  #11  
Old 09-07-2013, 11:14
keyvan1985 keyvan1985 is offline
Registered User
 
Join Date: Nov 2011
Location: iran
Posts: 7
Thanks: 4
Thanked 0 Times in 0 Posts
keyvan1985 is on a distinguished road
hello
i have a question
how i can build own gui for game and build setup.exe and autorun.exe ???
  #12  
Old 09-07-2013, 13:28
HellRazor HellRazor is offline
Registered User
 
Join Date: Mar 2007
Location: Q'onos
Posts: 182
Thanks: 213
Thanked 103 Times in 56 Posts
HellRazor is on a distinguished road
Quote:
Originally Posted by keyvan1985 View Post
hello
i have a question
how i can build own gui for game and build setup.exe and autorun.exe ???
You can do that with Winamp and Sound Forge...
/sarcasm off

I can see that you are new to the forums but, is it THAT hard to read First post of this topic before asking a question? Question for which you can find the answer on first page (at least most important parts)...

Second, most of the stuff is Stickied and can be found around this topic...
  #13  
Old 12-07-2013, 07:07
Pirate Ted Pirate Ted is offline
Registered User
 
Join Date: Jun 2013
Location: Maryland
Posts: 19
Thanks: 9
Thanked 2 Times in 2 Posts
Pirate Ted is on a distinguished road
hi, how to create a multiple or triple executable?

///////////////////// SETUP SETTINGS //////////////////////

[InstallOptions]
ApplicationName=The Sims 3 Collection
Publisher=Electronic Arts
GameSize=33000
MyExecutableIconName=The Sims 3
MyExecutableName=TS3.exe
MyExecutablePath=Game\Bin
//The Sims 3 Ambitions
MyExecutableIconName2=The Sims 3 Ambitions
MyExecutableName2=TS3EP02.exe
MyExecutablePath2=Game\Bin
//The Sims 3 Fast Lane Stuff
MyExecutableIconName3=The Sims 3 Fast Lane Stuff
MyExecutableName3=TS3SP02.exe
MyExecutablePath3=Game\Bin
//The Sims 3 Generations
MyExecutableIconName4=The Sims 3 Generations
MyExecutableName4=TS3EP04.exe
MyExecutablePath4=Game\Bin

this is right? i can't figure it out..
  #14  
Old 12-07-2013, 07:09
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
loks right except

MyExecutableIconName3=The Sims 3 Fast Lane Stuff
MyExecutableName3=TS3SP02.exe shouldn't that be 03 ??
  #15  
Old 12-07-2013, 07:19
Pirate Ted Pirate Ted is offline
Registered User
 
Join Date: Jun 2013
Location: Maryland
Posts: 19
Thanks: 9
Thanked 2 Times in 2 Posts
Pirate Ted is on a distinguished road
its not 3 its TS3SP02.exe in The Sims 3 Fast Lane Stuff game directory.

i tried the command nothing happen.
Closed Thread


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
Tutorial On How To Create Your Own Crack..! mojo8850 PC Games 17 20-03-2005 22:43
Mafia - Newbie Cracking Tutorial online cdkiller PC Games 6 14-12-2002 09:01
every game needs a special dvd rip tutorial??? billete100 PS2 Games 1 10-10-2001 01:44
Brief fast tutorial on DC copy? webcamworld DC Games 1 02-05-2001 20:27
grandia 2 SAGICE's tutorial DarCwuN DC Games 2 17-12-2000 16:43



All times are GMT -7. The time now is 20:11.


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