|
#946
|
|||
|
|||
|
Quote:
how to fix on scrip ? i use scrip of Black_Box_Script_By_Kurutucu_V1.8.7z at post #1 of this topic |
| Sponsored Links |
|
#947
|
|||
|
|||
|
Quote:
|
| The Following User Says Thank You to Dante1995 For This Useful Post: | ||
minh_k43sj (30-10-2014) | ||
|
#948
|
|||
|
|||
|
you can add Slides show to this scrip of Kurutucu then upload to I can download ? (i want you add in Main(Compact.Mode)
if you can, thank you very much
|
|
#949
|
|||
|
|||
|
Quote:
![]() this code does not matter, I'm sorry I can not help |
|
#950
|
|||
|
|||
|
i get it, thank you Dante
so, how to hide checkbox "Create shortcut to desktop" and "the line" as image :
|
|
#951
|
|||
|
|||
|
procedure InitializeWizard();
Code:
WizardForm.NoIconsCheck.hide; WizardForm.NoIconsCheck.hide; TasksSeparateBevel.Visible:=False; or TasksSeparateBevel.hide; Code:
//WizardForm.NoIconsCheck.Show; //TasksSeparateBevel.Show; Last edited by Dante1995; 31-10-2014 at 08:11. |
| The Following User Says Thank You to Dante1995 For This Useful Post: | ||
jamel2013 (31-10-2014) | ||
|
#952
|
|||
|
|||
|
Hello i have 3 issues,..please fix them and help me.
FIRST :- In main.iss file i am setting "#define AppSize "1640" " but when installing game then it's showing "Game Space 1 Gb, Total Space Needed 1Gb" But my game size is 1.64 gb ,..so please help me to fix the error. http://i.imgur.com/KaVWxEM.jpg ======================================= SECOND :- i want to remove nvidia phyx and framework from installing (redist). help me to disable them and hide that 2 options. http://i.imgur.com/leNdU7m.jpg ======================================= THIRD :- i want to change right side upper corner 3 signs to good one. http://i.imgur.com/2u8HNw5.jpg ======================================= Attaching my main.iss file,..please fix it. Please help me. thanks gods. |
|
#954
|
|||
|
|||
|
Quote:
You are No1
|
|
#955
|
|||
|
|||
|
How to fix
#define AppSize = 18600 but when run setup it only show 18gb (not 18.6gb) You can fix this main help me Dante ![]() again ! thanks for everything
Last edited by minh_k43sj; 31-10-2014 at 19:03. |
|
#956
|
|||
|
|||
|
Quote:
and : - 18gb real is 18.432 => i get it- 600x1024=614,400 => what the 600x1024 ? i don't know - 18.432+614,400 = put this size on #define AppSize ?? Last edited by minh_k43sj; 31-10-2014 at 20:31. |
|
#957
|
|||
|
|||
|
just remove the round to get the decimal
Code:
Function NumToStr(Float: Extended): String;
Begin
Result:= Format('%.3n', [Float]); StringChange(Result, ',', '.');
while ((Result[Length(Result)] = '0') or (Result[Length(Result)] = '.')) and (Pos('.', Result) > 0) do
SetLength(Result, Length(Result));
End;
Function MbOrTb(Byte: Extended): String;
begin
if Byte < 1024 then Result:= NumToStr(Byte) + ' MB' else
if Byte/1024 < 1024 then Result:= NumToStr((Byte/1024*100)/100) + ' GB' else
Result:= NumToStr(((Byte/(1024*1024))*100)/100) + ' TB'
end;
Last edited by Dante1995; 31-10-2014 at 20:58. |
|
#958
|
|||
|
|||
|
Quote:
and how to hide button "Back" at second windows setup" sorry if i ask you too much (google translate, sorry my english)
Last edited by minh_k43sj; 31-10-2014 at 21:47. |
|
#959
|
|||
|
|||
|
Code:
if CurPageID=wpSelectDir then begin
WizardForm.BackButton.Hide;
end;
|
|
#960
|
|||
|
|||
|
Quote:
and : 1. add music on/off button as this image : 2.how to remove autoplay button music on (not hide, i know how to hide button)
Last edited by minh_k43sj; 01-11-2014 at 05:37. |
![]() |
| 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 |
| Copy file with Inno Setup Script | emrahcey | Software | 1 | 02-07-2010 08:24 |