FileForums

FileForums (https://fileforums.com/index.php)
-   PC Games - CD/DVD Conversions (https://fileforums.com/forumdisplay.php?f=39)
-   -   Inno Setup + ISDone Extracting files (https://fileforums.com/showthread.php?t=94211)

buttignol 22-02-2013 08:20

Inno Setup + ISDone Extracting files
 
1 Attachment(s)
Inno setup + isdone6
Friends removing the isdone (Extracting files) when extracting the files and stay in place C: \ Program files \ ....

Remove or hide: Extracting files: .....

Drawing appears in: C: \ Program Files \ .........

I've tried many changes in the script but I could not change if someone can help me thank

altef_4 27-02-2013 15:11

If i'm right, you want remove 'Extracted file' text, then just remove
Code:

{'cm:ExtractedFile'}  +
in script

buttignol 27-02-2013 19:34

Inno Setup + ISDone Extracting files
 
Quote:

Originally Posted by altef_4 (Post 414552)
If i'm right, you want remove 'Extracted file' text, then just remove
Code:

{'cm:ExtractedFile'}  +
in script


Thanks altef 4 is nearly so but I wanted to show up C: \ Program Files \ etc ... type installation of the original game.

Ex: C: \ Program files (x86) \ Ubsisoft \ Data \ etc ...

I also think this is llinha to change but do not know where they've tried unsuccessfully several modifications.

LabelCurrFileName.Caption: ExpandConstant = ('{cm: ExtractedFile}') + MinimizePathName (currentfile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX (100));

altef_4 28-02-2013 01:57

If you want to add this text 'c: \program files\..' change this line
Code:

LabelCurrFileName.Caption: = ExpandConstant ('{cm: ExtractedFile}')  + MinimizePathName (currentfile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX (100));
to
Code:

LabelCurrFileName.Caption: = ExpandConstant ('{cm: ExtractedFile}')  +  ExpandConstant('{app}\') +  MinimizePathName (currentfile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX (100));
.

buttignol 28-02-2013 07:08

Inno Setup + ISDone Extracting files
 
Quote:

Originally Posted by altef_4 (Post 414561)
If you want to add this text 'c: \program files\..' change this line
Code:

LabelCurrFileName.Caption: = ExpandConstant ('{cm: ExtractedFile}')  + MinimizePathName (currentfile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX (100));
to
Code:

LabelCurrFileName.Caption: = ExpandConstant ('{cm: ExtractedFile}')  +  ExpandConstant('{app}\') +  MinimizePathName (currentfile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX (100));
.

Thanks altef 4 is + or - it's just that the C: \ Program files (x86) \ gets fixed I had already tried this also I wanted him inno setup like normal without isdone understand that the C: \ Program files \ stay ranging from according to the size of the file you are installing. but I'm guessing that is not possible. Thanks again for your help.

Razor12911 28-02-2013 07:11

what do you want to do exactly?

buttignol 28-02-2013 08:10

Inno Setup + ISDone Extracting files
 
1 Attachment(s)
Quote:

Originally Posted by Razor12911 (Post 414576)
what do you want to do exactly?

Thanks Razor12911 look like in the picture.

altef_4 28-02-2013 09:38

You want make like on the picture or change something on the picture? Real hard to understand what you want.

buttignol 28-02-2013 10:00

Inno Setup + ISDone Extracting files
 
Quote:

Originally Posted by altef_4 (Post 414592)
You want make like on the picture or change something on the picture? Real hard to understand what you want.

altef4 look like image

altef_4 28-02-2013 10:59

Change this
Code:

LabelPct1.Caption := IntToStr(OveralPct div 10) '.' chr(48  OveralPct mod 10) '%';

  LabelCurrFileName.Caption:=ExpandConstant('{cm:ExtractedFile} ') MinimizePathName(CurrentFile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX(100));
  LabelTime1.Caption:=ExpandConstant('{cm:ElapsedTime} ') TimeStr2;
  LabelTime2.Caption:=ExpandConstant('{cm:RemainingTime} ') TimeStr1;
  LabelTime3.Caption:=ExpandConstant('{cm:AllElapsedTime}') TimeStr3;

to this
Code:

LabelCurrFileName.Caption:=ExpandConstant('{cm:ExtractedFile} ') MinimizePathName(ExpandConstant('{app}\ ') + CurrentFile, LabelCurrFileName.Font,WizardForm.FilenameLabel.Width);

Razor12911 28-02-2013 11:02

I would also put this
Code:

ExpandConstant('{cm:ExtractedFile} ')+ExpandConstant('{app}\')+MinimizePathName(CurrentFile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX(100));

buttignol 28-02-2013 16:31

Inno Setup + ISDone Extracting files
 
1 Attachment(s)
Thanks for your patience and attention altef 4 and Razor12911 the problem was Resolved (ExpandConstant ('{app} \') only modified thanks again to the next.
Code:

LabelCurrFileName.Caption:=ExpandConstant(' ')+MinimizePathName(ExpandConstant('{app}\ ')+CurrentFile, LabelCurrFileName.Font,WizardForm.FilenameLabel.Width);


All times are GMT -7. The time now is 18:12.

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