|
#856
|
||||
|
||||
|
how to convert the script into inno unicode? is it possible?
|
| Sponsored Links |
|
#857
|
||||
|
||||
|
i try to convert it. but progress bar not showing it percentage
|
|
#859
|
||||
|
||||
|
#860
|
|||
|
|||
|
if (FreeMB>{#NeedSize}) then NeedSpaceLabel1.Font.Color:=clBlack else NeedSpaceLabel1.Font.Color:=clRed;
if (FreeMB>{#NeedSize}) then Progress.State:= npbsNormal else Progress.State:= npbsError; if (FreeMB>{#NeedSize}) then progress.Position:=FreeMB*100/TotalMB; |
| The Following User Says Thank You to sentinelks For This Useful Post: | ||
reiji777 (07-01-2014) | ||
|
#861
|
||||
|
||||
|
Quote:
Quote:
![]()
Last edited by reiji777; 07-01-2014 at 21:28. |
|
#862
|
||||
|
||||
|
Quote:
progress percentage is should be like (((TotalMB-FreeMB)/TotalMB)*100) not FreeMB*100/TotalMB |
|
#863
|
||||
|
||||
|
Quote:
btw when I embedded hdd.bmp file to setup by pre-extracting it to 'temp' suddenly my antivirus detecting it as virus/worm/trojan ![]() what could possibly wrong? am I accidentally creating a virus? |
|
#864
|
|||
|
|||
|
Quote:
![]() however, does not change anything just give a different interpretation Last edited by sentinelks; 08-01-2014 at 01:41. |
|
#865
|
||||
|
||||
|
Quote:
because in default inno has already count the program size |
|
#866
|
|||
|
|||
|
Hei .
I'm noob who tried to create simple installer with inno setup . i am using unicode version and got problems about creating setup.exe icon This is my script Code:
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "My Program"
#define MyAppVersion "1.5"
#define MyAppPublisher "My Company, Inc."
#define MyAppURL "http://www.example.com/"
#define MyAppExeName "MyProg.exe"
[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{D9D83115-4AA4-4C1F-ABC1-E1C9CCCE5937}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
OutputBaseFilename=setup
SetupIconFile=C:\Program Files (x86)\Inno Setup 5\Examples\icon.ico
Compression=lzma
SolidCompression=yes
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
[Files]
Source: "C:\Program Files (x86)\Inno Setup 5\Examples\MyProg.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\Program Files (x86)\Inno Setup 5\Examples\icon.ico"; DestDir: "{app}"; Flags: ignoreversion
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
[Icons]
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
[Run]
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
Code:
*** Starting compile. [1:04:34 AM] [ISPP] Preprocessing. [ISPP] Preprocessed. Parsing [Setup] section, line 14 Parsing [Setup] section, line 15 Parsing [Setup] section, line 16 Parsing [Setup] section, line 18 Parsing [Setup] section, line 19 Parsing [Setup] section, line 20 Parsing [Setup] section, line 21 Parsing [Setup] section, line 22 Parsing [Setup] section, line 23 Parsing [Setup] section, line 24 Parsing [Setup] section, line 25 Parsing [Setup] section, line 26 Parsing [Setup] section, line 27 Reading file (WizardImageFile) File: C:\Program Files (x86)\Inno Setup 5\WIZMODERNIMAGE.BMP Reading file (WizardSmallImageFile) File: C:\Program Files (x86)\Inno Setup 5\WIZMODERNSMALLIMAGE.BMP Preparing Setup program executable Updating icons (SETUP.E32) Determining language code pages Parsing [Languages] section, line 30 File: C:\Program Files (x86)\Inno Setup 5\Default.isl Messages in script file Reading default messages from Default.isl Parsing [Languages] section, line 30 File: C:\Program Files (x86)\Inno Setup 5\Default.isl Parsing [LangOptions], [Messages], and [CustomMessages] sections Messages in script file Reading [ Code] section Parsing [Tasks] section, line 33 Parsing [Icons] section, line 41 Parsing [Icons] section, line 42 Parsing [Run] section, line 45 Parsing [Files] section, line 36 Parsing [Files] section, line 37 Creating setup files Updating icons (SETUP.EXE) Compressing: C:\Program Files (x86)\Inno Setup 5\Examples\MyProg.exe Compressing: C:\Program Files (x86)\Inno Setup 5\Examples\icon.ico Compressing Setup program executable Updating version info *** Finished. [1:04:35 AM, 00:00.624 elapsed] and result with no icon Can anyone tell me whats wrong that script Sorry for my english . thanks |
|
#867
|
||||
|
||||
|
where did you get that icon file, did you create it?
there is no error in the script. Last edited by y_thelastknight; 13-01-2014 at 11:13. |
| The Following User Says Thank You to y_thelastknight For This Useful Post: | ||
sentinelks (13-01-2014) | ||
|
#868
|
||||
|
||||
|
how to insert .png file in inno?
|
|
#869
|
|||
|
|||
|
Quote:
This is the details of icon |
|
#870
|
||||
|
||||
|
Just attach the icon file. Or use other icon file
__________________
Glass BB | BlackBox v2 | Portable Installer |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
| INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |