![]() |
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 |
If i'm right, you want remove 'Extracted file' text, then just remove
Code:
{'cm:ExtractedFile'} + |
Inno Setup + ISDone Extracting files
Quote:
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)); |
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));Code:
LabelCurrFileName.Caption: = ExpandConstant ('{cm: ExtractedFile}') + ExpandConstant('{app}\') + MinimizePathName (currentfile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX (100)); |
Inno Setup + ISDone Extracting files
Quote:
|
what do you want to do exactly?
|
Inno Setup + ISDone Extracting files
1 Attachment(s)
Quote:
|
You want make like on the picture or change something on the picture? Real hard to understand what you want.
|
Inno Setup + ISDone Extracting files
Quote:
|
Change this
Code:
LabelPct1.Caption := IntToStr(OveralPct div 10) '.' chr(48 OveralPct mod 10) '%';Code:
LabelCurrFileName.Caption:=ExpandConstant('{cm:ExtractedFile} ') MinimizePathName(ExpandConstant('{app}\ ') + CurrentFile, LabelCurrFileName.Font,WizardForm.FilenameLabel.Width); |
I would also put this
Code:
ExpandConstant('{cm:ExtractedFile} ')+ExpandConstant('{app}\')+MinimizePathName(CurrentFile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX(100)); |
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