#1
|
||||
|
||||
Inno Setup + ISDone Extracting files
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 Last edited by Joe Forster/STA; 23-02-2013 at 01:00. |
The Following 3 Users Say Thank You to buttignol For This Useful Post: | ||
Sponsored Links |
#2
|
||||
|
||||
If i'm right, you want remove 'Extracted file' text, then just remove
Code:
{'cm:ExtractedFile'} + Last edited by altef_4; 27-02-2013 at 15:14. |
#3
|
||||
|
||||
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)); |
#4
|
||||
|
||||
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)); Last edited by altef_4; 28-02-2013 at 02:03. |
#5
|
||||
|
||||
Inno Setup + ISDone Extracting files
Quote:
|
#6
|
||||
|
||||
what do you want to do exactly?
|
#7
|
||||
|
||||
Inno Setup + ISDone Extracting files
Thanks Razor12911 look like in the picture.
Last edited by buttignol; 28-02-2013 at 08:13. |
#8
|
||||
|
||||
You want make like on the picture or change something on the picture? Real hard to understand what you want.
|
#9
|
||||
|
||||
Inno Setup + ISDone Extracting files
altef4 look like image
|
#10
|
||||
|
||||
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; Code:
LabelCurrFileName.Caption:=ExpandConstant('{cm:ExtractedFile} ') MinimizePathName(ExpandConstant('{app}\ ') + CurrentFile, LabelCurrFileName.Font,WizardForm.FilenameLabel.Width); Last edited by altef_4; 28-02-2013 at 11:01. |
The Following User Says Thank You to altef_4 For This Useful Post: | ||
buttignol (28-02-2013) |
#11
|
||||
|
||||
I would also put this
Code:
ExpandConstant('{cm:ExtractedFile} ')+ExpandConstant('{app}\')+MinimizePathName(CurrentFile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX(100)); |
The Following User Says Thank You to Razor12911 For This Useful Post: | ||
buttignol (28-02-2013) |
#12
|
||||
|
||||
Inno Setup + ISDone Extracting files
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); Last edited by buttignol; 28-02-2013 at 16:48. |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Max Payne 3 (6xDVD5) - Inno Setup | Fabioddq | PC Games - CD/DVD Conversions | 40 | 08-10-2016 10:42 |
The Walking Dead All Episodes - DVD5 (Inno Setup) | Fabioddq | PC Games - CD/DVD Conversions | 24 | 20-03-2016 10:13 |
Metro 2033 - 2xDVD5 (Inno Setup) | Fabioddq | PC Games - CD/DVD Conversions | 16 | 27-12-2013 11:56 |
StarCraft II : Wings Of Liberty (DVD9 to 2x DVD5) INNO SETUP | peterf1999 | PC Games - CD/DVD Conversions | 18 | 18-01-2013 19:41 |
Transformers Fall of Cybertron (2xDVD5 - Inno Setup) | Fabioddq | PC Games - CD/DVD Conversions | 33 | 26-12-2012 19:53 |