![]() |
I did the exact search term and didn't find any :/
Can you point me? |
hmm, maybe I saw mmzip. gimme the program and maybe I can figure out how it works.
|
1 Attachment(s)
Quote:
|
I have 2 probrem with my code
1. I can't show license page before welcome page & ready page before installing page 2. I using StatusLabel.SetBounds but i don't see status in installing page Please help myyyyy. Sr for my english bad @@ |
Razor12911 I know you recommend a support site for InnoSetup?
here I have not had much practical advice. |
what kind of advice?
|
Thanks to pakrat for reminding me on this thread.
But still I have some questions: How do you create exact game buttons. - I'm sure you capture those buttons from the game, right, but which program is good for that; what if I catch cursor also, how to remove it then. Some users are able to use game cursor in conversions. How? - Are you using some program to extract game files, which one, but if you can't extract it where do you find it then. Almost the same question regarding Fonts. Also How? - Or does PS maybe contains already that kind of the font. Compression methods? - How do you know when to use some compression method, when you will use srep, precomp, or no compression at all. DVD size question? - When you are using external compression, is it possible to define the size of the "compressed" files i.e. size of the .bin or Data.cab file or whatever: - e.g. I don't want my DVD to be 3,7GB or 3,27GB or 3,6GB in size, I want to be e.g. 4GB + autorun+setup files.......... Also: Is it possible if someone could do some basic tutorial about PS - only what is used for conversion. Or just to post list of tools used in PS needed. I hope someone is Willing to answer me. :) Thank You |
Quote:
|
@spawniectes
Thank you for your answers.... What program you use to Extract sound from video file. Thank You once again. Cheers |
Quote:
|
Quote:
Or resize these pages Welcome, Dir, License, and Finish. my project some parts of the code are of black box help me. Project1 |
attachment link dead. :D
But everything you need is in documentation. |
1 Attachment(s)
link isn't dead, but I've reuploaded it here
|
Any idea how to resize or move the buttons of the various windows?
I do not know all the codes and do not know where to find them. I'm a little studying but I'm still beginner. |
hmm, okay, this is how you do it,
Create a button or use existing button. this is how you set up a new button [Code] var Button1: TButton; procedure InitializeWizard; begin Button1:= TButton.Create(WizardForm); with Button1 do begin Left:=Number Here Top:=Number Here Width:=Number Here Height:=Number Here Parent:= WinControl Here Caption:= Text Here end; |
RoundedCornerX = 0
RoundedCornerY = 0 This only works in the script but in version 8.5.7.4 1.0.0.6 also can be put on or not. |
how can I integrate the setup.exe file setup.cab, so you only have one file and not 2 please
|
@sentinelks
extract the setup.cab open the installer and lang script, Remove semi colon from internal at the beginning and compile. |
I can not find the values of this image TextBG.png in the ini file and the source setup.cab 1.0.0.6??
how do I use it if you do not reference, guidance and incomplete, and even the source. these are the values / / / / / / / / / / / / / / / / / / / / / / SETUP INTERFACE DESIGN / / / / / / / / / / / / / / / / / / / / / / [Flash1] Left = 55 Top = 0 Width = 714 Height = 106 [Logo] LogoLeft = 400 LogoTop = 90 LogoWidth = 178 LogoHeight = 80 [TextStage] Top = 100 Left = 397 Width = 498 Height = 310 SpaceFromBorder = 10 Center = 1 Font = Edo FontSize = 3 FontColor = $ 000,000 [InterfaceSettings] ChangeFrame = 0 InstallerWidth = 900 InstallerHeight = 500 BackgroundWidth = 1280 BackgroundHeight = 720 ShowBGFullscreen = 0 ProgressBarLabelColor = $ FFFFFF ProgressBarHeight = 12 MoveProgressBarLabel = 0 MoveDirectoryInfo = 15 MoveProgressBar = 4 how to use these values do not write anything specific?? TextCenter => enable/disable center alignment of the text in installer TextPositionLeft => set the texts left position TextPositionTop => set the texts top position TextPositionWidth => set the texts width => it should be the width of TextBG.png if you use it TextPositionHeight => set the texts height => it should be the height of TextBG.png if you use it TextSpaceFromBorder => set the space between the text and the border of the text file reference to the guide |
@sentinelks
hmm, to leave setup.exe only do Internal and set Debug True. |
Hello,
I have a game with 2 languages and each languages separated in one arc file How to make 2 radio options inside the installer to allow users to choose what language want to install (the selection must be limited to one language only not both)? data.arc english.arc french.arc Thanks. |
use components section and use the default isdone script for this.
|
Hello,
Precomp 0.3.8 crashes on some file extensions, is it normal? |
yea and nah, precomp is kinda unpredictable.
Use precomp 040 is 038 fails. |
Thanks, on slow mode who win between those 2 versions or it's unpredictable as well?
|
the thing is that when I use precomp038 and precomp040, I get better results than when I use precomp042
|
Hello,
Is it possible to detect the operating system arch 32 or 64 bit and depend on what detects it extracts a specific arc file? Thanks. |
yep, just use 'ISWin64' or 'not ISWin64'
|
aren't these flags just for reg entries? how to use them with ISArcExtract?
|
Example
if ISWin64 then ISArcExtract..... if not ISWin64 then ISArcExtract...... Think fast. they are flags for reg entries and the also work in code section |
Dude, i can't think as fast as you :D
Just saw the example on the inno docs http://www.jrsoftware.org/ishelp/ind...sxfunc_iswin64 Thanks, i will try it right now. :) |
I'm using this flag for VC++ Redist 64bit Install Task
Flags: SkipIfDoesntExist 64bit on XP i get this is not a 64bit app error, is it because of the flag or because of XP? Should i use with ISDone: Flags: SkipIfDoesntExist 64bit or Flags: SkipIfDoesntExist IsWin64 |
just use 'ISWin64' or 'not ISWin64' dont add the skipifdoesntexist
IE [Files] Source: x64 \ File.exe; DestDir: {app}; Check: IsWin64 Source: x32 \ File.exe; DestDir: {app}; Check: not IsWin64 |
I didn't mean the SkipIfDoesntExist, i meant "64bit"
I've added SkipIfDoesntExist flag just increase i forgot to include the redist file. So which flag is really functional for tasks "64bit" or "ISWin64" ?? |
added additional info.. its just the iswin64 / not iswin64
dont need the SkipIfDoesntExist because if inno doesnt find the file it just jumps over that part.. someone correct me if im wrong |
Quote:
Then download http://fileforums.com/showpost.php?p=416587&postcount=1 . Open main.iss and edit appnames etc. Then edit images, splash, music and logo. Don't forget edit Archives.ini. Finaly compile main.iss. If you need help send me PM. |
1 Attachment(s)
@Kurutucu
I think he wants this one. |
1 Attachment(s)
help problem my conversion file bat
Creating ISO files, please wait ... (Your new ISO's will be in: C: \ TEMP) Conversion by Nicola16. Based on Peterf1999's method. ""C:\Program Files (x86)\ImgBurn"" is not recognized as an internal command or east ernment, * operable program or batch file. ""C:\Program Files (x86)\ImgBurn"" is not recognized as an internal command or east ernment, * operable program or batch file. Finished! Press any key to continue. . . my file bat help! |
look at any of Fabioddq's conversions that use compress.bat the proper instructions are there for ImgBurn.
|
Quote:
better to use a bat that works on everything that used batteries only for that game |
| All times are GMT -7. The time now is 18:54. |
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com