FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   yener90's Inno Project Source Codes (https://fileforums.com/showthread.php?t=91563)

NamelessOne 23-10-2012 10:53

Quote:

Originally Posted by yener90 (Post 408685)
a little question:
would you prefer using seperate files for buttons (Button.png,ButtonSelected.png, buttonClicked.png and ButtonDisabled) or using one (button.png) with all the images?


The old system is perfect, and you know what they say: never change the winning horse :D

Fabioddq 23-10-2012 11:02

Quote:

Originally Posted by yener90 (Post 408690)
Ok it will stay like now^^
I will make a big update.

I had a problem with the CI 8.5.7.4 when I used the internal compression and integration (Setup.cab + Setup.ini), after conversion the autorun opened normally, but after clicking install, the installer has stopped working.

yener90 23-10-2012 14:15

will analyze both errors.
thx for the feedback ;)

yener90 24-10-2012 08:36

next version will have a:
- converter support
- changing background images in installer
- improved disk changing for freearc operation
- Open DVD, ReadMe and Manual button
- two flashimages on installer and one on autorun
- Easy Interface for beginners, who cant create buttons etc
-> it has it, but cause of the lack png support those time, it looked not so good
i will overwork it, i hope for big improvement, will also try to include flash animations
- fix those bugs
- fix translations

currently improving source -> only translation is fixed

mikey26 24-10-2012 12:44

Hi yener is there any chance u can include the new precomp in your next CI.

napalmguy 24-10-2012 16:13

Hi again yener

I noticed that in your conversion, installer calculates the estimated time for setup and then divides it by the number of background images so it displays them all ony by one in one setup

question is: can you make the installer cycle the background images? meaning, displays an image every 1 min or so and after he displays them all, repeat them?

I ask because some installers take around and hour or so and it would be nice to see the background change onscreen frequently for a change

thanks again for all your effort

Cesar82 24-10-2012 19:55

Very good the espectaivas for new CI.
The componetes in current CI (8.5.7.4) can be defined as unchecked?

Kamyk95 25-10-2012 01:36

@yener90
One last request before the BIG update (9.0?). If you changed the uninstall application name to "Uninstall <Game Title>", can you change the word "Deinstalacja" (which is used as a noun in Polish language) in Polish translation to "Usuń" (The verb version of the word "Deinstalacja" or in English "remove"). It will look WAAAY better in polish script.

REV0 25-10-2012 02:02

Quote:

Originally Posted by yener90 (Post 408760)
next version will have a:
- converter support
- changing background images in installer
- improved disk changing for freearc operation
- Open DVD, ReadMe and Manual button
- two flashimages on installer and one on autorun
- Easy Interface for beginners, who cant create buttons etc
-> it has it, but cause of the lack png support those time, it looked not so good
i will overwork it, i hope for big improvement, will also try to include flash animations
- fix those bugs
- fix translations

currently improving source -> only translation is fixed

May i suggest PNG backgrounds for Autorun and Installer ?

johnnyusa 25-10-2012 02:32

Quote:

Originally Posted by LuisCésar82 (Post 408809)
Very good the espectaivas for new CI.
The componetes in current CI (8.5.7.4) can be defined as unchecked?

Yes mate, they can. I had the same question and Yener was kind enough to help me about it.

Here is the code you need to work on:

Code:

Components1:= TCheckBox.Create(WizardForm);
with Components1 do
begin
Parent:= WizardForm;
Left:= NewLeftPositionCP;
Top:= TextPositionTop + 130 + MoveDirectoryInfo;
Width:= 13;
Height:= 13;
TabOrder:= 0;
Checked:= Components1V; -> change to False
Visible:= Components1V;
OnClick:= @ComponentsClick;
...
BtnSetChecked(Components1Check,True); -> Change To False
end;

This example is for Component1 only, if you need to change the other components to unchecked state also, just do the same changes as above to each.

Cesar82 25-10-2012 08:06

Thank you johnnyusa.
Needed it to install additional languages​​.

--
In autorun interface it is possible to put music button as a simple button? (Style music button in Welcome page).

Cesar82 25-10-2012 08:22

Sugestion next CI
Disable label button (opcional) for disabled buttons in autorun page. (EX: Button Play)

kassane 25-10-2012 08:30

Suggestion next CI
Add firewall exception.

Th3Raven 25-10-2012 09:01

Quote:

Originally Posted by LuisCésar82 (Post 408837)
Sugestion next CI
Disable label button (opcional) for disabled buttons in autorun page. (EX: Button Play)

It is better the way it is.(my opinion)

Quote:

Originally Posted by kassane (Post 408838)
Suggestion next CI
Add firewall exception.

This is a good idea (with checkbox cuz some games don't need to be added to firewall)

jackstuff 25-10-2012 11:48

My Sugestion to next CI
Adding repair option if possible:D

BAMsE 25-10-2012 14:31

Quote:

Originally Posted by kassane (Post 408838)
Suggestion next CI
Add firewall exception.

But who uses windows' firewall?
Adding exceptions for all other firewall soft may be quite difficult :D

Cesar82 25-10-2012 15:59

Add firewall exception not necessary. (My Opinion)

Cesar82 27-10-2012 16:11

What parameter should I use in Setup.ini (CI 8.5.7.4) to install the PhysX if exe file?

Launch3=PhysX System Software
Launch364=0
Launch3BeforeInstall=0
LaunchCom3={src}\Redist\PhysX_10.02.22_9.10.0222_S ystemSoftware.exe
LaunchArg3=?????

Would it: /quiet or /qn /i
?

pakrat2k2 27-10-2012 16:24

try /silent

Cesar82 27-10-2012 16:52

/silent Not completes the installation and open window with title "Windows Installer"

Windows (R) Installer. V 4.5.6001.22159

[description of command line options...]

Demonn 27-10-2012 16:58

This exe is created by my original msi of this version I made ​​the exe without silent mode. It's that I use in my installers.

PhysX_9.12.0807_SystemSoftware.exe

http://ul.to/ivf7233a

No silent mode ok

Cesar82 27-10-2012 17:12

Demonn, gets so?

Launch3=PhysX System Software
Launch364=0
Launch3BeforeInstall=0
LaunchCom3={src}\Redist\PhysX_9.12.0807_SystemSoft ware.exe
LaunchArg3=

Demonn 27-10-2012 17:25

Quote:

Originally Posted by LuisCésar82 (Post 409012)
Demonn, gets so?

Launch3=PhysX System Software
Launch364=0
Launch3BeforeInstall=0
LaunchCom3={src}\Redist\PhysX_9.12.0807_SystemSoft ware.exe
LaunchArg3=

Yes, LuisCesar the name has to be exact PhysX_9.12.0807_SystemSoftware.exe

When running asks you to give your install. Pardon my English but I'm not much Spanish.

pakrat2k2 27-10-2012 17:31

IF you download the newest Physx ( comes in MSI ) use SFX Maker to convert the MSI into an EXE which will allow the /silent switch.. see post below

http://fileforums.com/showpost.php?p...&postcount=860

Demonn 27-10-2012 17:38

At first use this program but I was much so I used another called AbyssMedia.MSI.to.EXE.Compiler. And with that if I worked.

Cesar82 27-10-2012 20:19

Parameter /silent in SFX Maker not install PhysX.
In Control Panel not detected PhysX. Removed before.


In CI 8.5.7.4 (Setup.ini) have...

Launch2=Nvidia PhysX
Launch264=0
Launch2BeforeInstall=1
LaunchCom2={sys}\msiexec.exe
LaunchArg2=/qn /i "{src}\Support\PhysX-9.12.0613-SystemSoftware.msi"

Not got it do work.

pakrat2k2 27-10-2012 21:11

try this:

Change
LaunchCom2="{src}\Support\PhysX-9.12.0613-SystemSoftware.msi"
LaunchArg2= /passive /norestart

pakrat2k2 27-10-2012 21:21

Read this post by Joe follow his instructions....

http://fileforums.com/showpost.php?p...4&postcount=27

Cesar82 27-10-2012 21:21

Not work.
Not in control panel after setup.

pakrat2k2 27-10-2012 21:23

is the {src}\Support folder name correct ? Can you click directly on the physx MSI to install it seperately ???

Cesar82 27-10-2012 21:32

I changed Suport to redist. My installer is the redist folder that is PhysX
Separately works perfectly.

pakrat2k2 27-10-2012 21:47

Quote:

Originally Posted by LuisCésar82 (Post 409019)
Parameter /silent in SFX Maker not install PhysX.
In Control Panel not detected PhysX. Removed before.


In CI 8.5.7.4 (Setup.ini) have...

Launch2=Nvidia PhysX
Launch264=0
Launch2BeforeInstall=1
LaunchCom2={sys}\msiexec.exe
LaunchArg2=/qn /i "{src}\Support\PhysX-9.12.0613-SystemSoftware.msi"

Not got it do work.

Thats why it doesnt work if your install folder name was redist!!!

Cesar82 27-10-2012 21:53

I changed name "Suport" to "redist" in setup ini.

My setup.ini

Launch3=Nvidia PhysX
Launch364=0
Launch3BeforeInstall=0
LaunchCom3={sys}\msiexec.exe
LaunchArg3=/qn /i "{src}\Redist\PhysX-9.12.0613-SystemSoftware.msi"

..
Third Launch comand
Launch3BeforeInstall=0 -> for after install game

Cesar82 27-10-2012 23:08

PhysX Installed

Only way that actually installed.
Only displays the window installation.

Launch3=Nvidia PhysX
Launch364=0
Launch3BeforeInstall=0
LaunchCom3={sys}\msiexec.exe
LaunchArg3=/qr /i "{src}\Redist\PhysX-9.12.0613-SystemSoftware.msi"

PhysX installed in Control Panel.


Font: http://technet.microsoft.com/pt-br/l...=ws.10%29.aspx

Newbie 30-10-2012 10:19

@LuisCésar82

Thank You for that.


@yener

Any info about release date for new version.

Thank You

yener90 30-10-2012 10:34

currently busy...i couldnt even start.

currently put windows 8 on my system and saw font problem on my installer.
will also fix this.

kassane 31-10-2012 11:57

And then yener90, how is your project update new CI?
It is already possible to show a picture of how it's getting?

BAMsE 31-10-2012 12:24

yener90 please add whole PhysX LauncherSettings to setup.ini of every CI release because LuisCésar82 has done a great job of devising that and I don't want to search for his post next time I'll need to install PhysX

Quote:

Originally Posted by LuisCésar82 (Post 409030)
Only way that actually installed.
Only displays the window installation.

Launch3=Nvidia PhysX
Launch364=0
Launch3BeforeInstall=0
LaunchCom3={sys}\msiexec.exe
LaunchArg3=/qr /i "{src}\Redist\PhysX-9.12.0613-SystemSoftware.msi"

PhysX installed in Control Panel.


Font: http://technet.microsoft.com/pt-br/l...=ws.10%29.aspx


Cesar82 02-11-2012 19:09

Answer
 
If somebody can answer me:
How behaves the installer in your PCs:
* By clicking in setup.exe open the autorun page or open welcome page?
Here a few installer that use freearc and comes compiled when extracted and to execute setup.exe opens direct the splash and it is going to welcome page. If I change of folder the same file setup.exe starts to open autorun page.

Text translated in google tradutor:

Fabioddq 03-11-2012 06:21

Hi yener, how do i add this to the destination of shortcut using CI. In black highlighted.

e.g. "D:\Jogos\Painkiller Hell and Damnation\Binaries\Win32\PKHDGame-Win32-Shipping.exe" -seekfreeloadingpcconsole -fullscreen


All times are GMT -7. The time now is 07:00.

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