FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Blackbox Inno Setup Script (https://fileforums.com/showthread.php?t=94425)

minh_k43sj 30-10-2014 11:07

Quote:

Originally Posted by Dante1995 (Post 435532)
done

There are no other changes to make, but I only help the problem (if you want a full version you open a tread, or you will always have problems with the original version of the forum, except someone shares a version fixes :)

Help me Dante, you can show to how to fix create shortcut desktop icon checkbox, it still creates icon if you unmark/deselect it

how to fix on scrip ?
i use scrip of Black_Box_Script_By_Kurutucu_V1.8.7z at post #1 of this topic

Dante1995 30-10-2014 11:37

Quote:

Originally Posted by minh_k43sj (Post 435536)
Help me Dante, you can show to how to fix create shortcut desktop icon checkbox, it still creates icon if you unmark/deselect it

how to fix on scrip ?
i use scrip of Black_Box_Script_By_Kurutucu_V1.8.7z at post #1 of this topic

your problem is resolved, there is nothing to change about it :)

minh_k43sj 30-10-2014 11:45

Quote:

Originally Posted by Dante1995 (Post 435539)
your problem is resolved, there is nothing to change about it :)

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 :o

Dante1995 30-10-2014 15:23

Quote:

Originally Posted by minh_k43sj (Post 435542)
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 :o

;)
this code does not matter, I'm sorry I can not help

minh_k43sj 31-10-2014 06:13

Quote:

Originally Posted by Dante1995 (Post 435550)
;)
this code does not matter, I'm sorry I can not help

i get it, thank you Dante
so, how to hide checkbox "Create shortcut to desktop" and "the line" as image :

http://i.imgur.com/ywtqzBf.jpg

Dante1995 31-10-2014 08:03

procedure InitializeWizard();

Code:

WizardForm.NoIconsCheck.hide;
WizardForm.NoIconsCheck.hide;
TasksSeparateBevel.Visible:=False;
or TasksSeparateBevel.hide;

and remove code or //
Code:

//WizardForm.NoIconsCheck.Show;
//TasksSeparateBevel.Show;


Adonix 31-10-2014 09:52

1 Attachment(s)
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.

Dante1995 31-10-2014 14:01

fix

minh_k43sj 31-10-2014 18:17

Quote:

Originally Posted by Dante1995 (Post 435575)
procedure InitializeWizard();

Code:

WizardForm.NoIconsCheck.hide;
WizardForm.NoIconsCheck.hide;
TasksSeparateBevel.Visible:=False;
or TasksSeparateBevel.hide;

and remove code or //
Code:

//WizardForm.NoIconsCheck.Show;
//TasksSeparateBevel.Show;


Thank you Dante
You are No1 :D

minh_k43sj 31-10-2014 18:33

1 Attachment(s)
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 :o

again ! thanks for everything :p

minh_k43sj 31-10-2014 20:26

Quote:

Originally Posted by Dante1995 (Post 435592)
GameSpaceLabel.Caption := ExpandConstant('Game Space : ') + MbOrTb({#AppSize}); = Show 18.6

GameSpaceLabel.Caption := ExpandConstant('Game Space : ') + ('{#AppSize}'); = Show 18600


18gb real is 18.432 :)
600x1024=614,400
18.432+614,400=:rolleyes:

It not working with main i was upload for you, if you can, please dowload main i was upload and test

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 ??

Dante1995 31-10-2014 20:45

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;

18600 mb = 18.164 gb

minh_k43sj 31-10-2014 21:26

Quote:

Originally Posted by Dante1995 (Post 435596)
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;

18600 mb = 18.164 gb

OK, great.

and how to hide button "Back" at second windows setup"

sorry if i ask you too much :D (google translate, sorry my english)

http://i.imgur.com/NWiyyI0.jpg

Dante1995 01-11-2014 04:09

Code:

if CurPageID=wpSelectDir then begin
    WizardForm.BackButton.Hide;
  end;


minh_k43sj 01-11-2014 05:34

Quote:

Originally Posted by Dante1995 (Post 435604)
Code:

if CurPageID=wpSelectDir then begin
    WizardForm.BackButton.Hide;
  end;


HI, thank you so much
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)


http://i.imgur.com/MjZuNFL.jpg


All times are GMT -7. The time now is 10:57.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com