PDA

View Full Version : Inno Setup + ISDone Extracting files


buttignol
22-02-2013, 08:20
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 {'cm:ExtractedFile'} + in script

buttignol
27-02-2013, 19:34
If i'm right, you want remove 'Extracted file' text, then just remove {'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 LabelCurrFileName.Caption: = ExpandConstant ('{cm: ExtractedFile}') + MinimizePathName (currentfile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX (100)); to LabelCurrFileName.Caption: = ExpandConstant ('{cm: ExtractedFile}') + ExpandConstant('{app}\') + MinimizePathName (currentfile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX (100));.

buttignol
28-02-2013, 07:08
If you want to add this text 'c: \program files\..' change this line LabelCurrFileName.Caption: = ExpandConstant ('{cm: ExtractedFile}') + MinimizePathName (currentfile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX (100)); to 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
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
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
LabelPct1.Caption := IntToStr(OveralPct div 10) '.' chr(48 OveralPct mod 10) '%';

LabelCurrFileName.Caption:=ExpandConstant('{cm:Ext ractedFile} ') MinimizePathName(CurrentFile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX(100));
LabelTime1.Caption:=ExpandConstant('{cm:ElapsedTim e} ') TimeStr2;
LabelTime2.Caption:=ExpandConstant('{cm:RemainingT ime} ') TimeStr1;
LabelTime3.Caption:=ExpandConstant('{cm:AllElapsed Time}') TimeStr3; to this
LabelCurrFileName.Caption:=ExpandConstant('{cm:Ext ractedFile} ') MinimizePathName(ExpandConstant('{app}\ ') + CurrentFile, LabelCurrFileName.Font,WizardForm.FilenameLabel.Wi dth);

Razor12911
28-02-2013, 11:02
I would also put this
ExpandConstant('{cm:ExtractedFile} ')+ExpandConstant('{app}\')+MinimizePathName(Curre ntFile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX(100));

buttignol
28-02-2013, 16:31
Thanks for your patience and attention altef 4 and Razor12911 the problem was Resolved (ExpandConstant ('{app} \') only modified thanks again to the next.
LabelCurrFileName.Caption:=ExpandConstant(' ')+MinimizePathName(ExpandConstant('{app}\ ')+CurrentFile, LabelCurrFileName.Font,WizardForm.FilenameLabel.Wi dth);