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)

yener90 18-09-2012 09:02

Quote:

Originally Posted by LuisCésar82 (Post 406648)
I put a video avi to execute during the installation
The video has duration of 2 minutes and 53 seconds, and during the installation the whole video is reproduced in 4 seconds (superior Speed).
I converted the original video MP4 for AVI using WinAVI 11. (Codec Xvid and audio MP3)
The converted video reproduces normal in WMP.

What mistake can be happening?

I used CI 8.5.6.5

convert it with Super.
look at the tutorial section for video settings, set it like that.
installer doesnt support ffmpeg converted videos.
most video tools use it.
only mencoder.

Quote:

Originally Posted by LuisCésar82 (Post 406648)
I tried to incapacitate the autorun using the command
[InterfaceSettings]
EnableAutorunMenu=0

option no more supported.

kassane 18-09-2012 09:30

Yener90, you can put a image.swf the autorun?
I'm also starting to work with files flash.swf up why my preview AC3 now is with the flash logo.
I want to do the same or something similar in the autorun!!

Cesar82 18-09-2012 10:01

Thank you yener90
**************
Suggestion for next CI

The instalador possesses the section:

[UninstallDelete]
Type: filesandordirs; Name: {app}

That indicates that the whole content of the installation folder will be removed.
If agum user puts to install in tfolder Programs files, or in folder windows, the whole folder will be removed in the uninstalling. (Files that are not being used in the moment)

It would not be possible to block inside of the user's script to install in folders programs files, Windows, documents and settings, Drive C: \, D: \, etc?

It happened to me. I just was testing and installing the program Files folder and removed everything. Only the folders of the programs that were using it were.

Or then to put to create an INI during the installation with the name of each file that this being extracted. And in the uninstalling to read INI to exclude only the installed files. That would solve the problem of maintaining the save games in installation folder.

yener90 18-09-2012 10:36

Quote:

Originally Posted by LuisCésar82 (Post 406652)
Thank you yener90
**************
Suggestion for next CI

The instalador possesses the section:

[UninstallDelete]
Type: filesandordirs; Name: {app}

That indicates that the whole content of the installation folder will be removed.
If agum user puts to install in tfolder Programs files, or in folder windows, the whole folder will be removed in the uninstalling. (Files that are not being used in the moment)

It would not be possible to block inside of the user's script to install in folders programs files, Windows, documents and settings, Drive C: \, D: \, etc?

It happened to me. I just was testing and installing the program Files folder and removed everything. Only the folders of the programs that were using it were.

Or then to put to create an INI during the installation with the name of each file that this being extracted. And in the uninstalling to read INI to exclude only the installed files. That would solve the problem of maintaining the save games in installation folder.

hmmm :D
it sounds funny.
unfortunately its really difficult.
some games contain about 3000 game files.

Quote:

Originally Posted by kassane (Post 406652)
Yener90, you can put a image.swf the autorun?
I'm also starting to work with files flash.swf up why my preview AC3 now is with the flash logo.
I want to do the same or something similar in the autorun!!

maybe next version :p

Cesar82 18-09-2012 16:20

Can not lock the script for installing certain directories?

yener90 18-09-2012 17:20

Quote:

Originally Posted by LuisCésar82 (Post 406701)
Can not lock the script for installing certain directories?

i undestand your wish.
i will try to include.

amin fear 18-09-2012 22:46

2 Attachment(s)
Quote:

Originally Posted by yener90 (Post 406639)
you cant delete this menu.
i already tried everything :D

its forced from inno setup.

Thanks Yener90 for feedback but i think its possible ... take a look at attachment ...

it is from BlackBox Game Ripping & Repacking Group... & its Obvious that they use Inno ... i think guys from BlackBox are monitoring this forum & Specially this topic ... so maybe we can ask them for that ...

Second Question :
as you know the Font embed option is very useful for languages like Farsi ...
because i can use many Special & Nice Persian fonts ...

just want to know that your font embed function automatically registers the ttf ?

should i register the fonts too or your function is enough ?

jksengko 19-09-2012 01:48

how to add 2 icon after install finish....??? (E.g: PES2013.exe and Settings.exe)

Joe Forster/STA 19-09-2012 05:06

Quote:

Originally Posted by amin fear (Post 406718)
it is from BlackBox Game Ripping & Repacking Group... & its Obvious that they use Inno ... i think guys from BlackBox are monitoring this forum & Specially this topic ... so maybe we can ask them for that ...

Nope, you don't ask them on this forum.

amin fear 19-09-2012 05:51

Quote:

Originally Posted by Joe Forster/STA (Post 406745)
Nope, you don't ask them on this forum.

Ok ... I will not talk about them anymore ... but you warned me about Anti-Warez Rules here ?

Joe Forster/STA 19-09-2012 06:25

Quote:

Originally Posted by amin fear (Post 406752)
Ok ... I will not talk about them anymore ... but you warned me about Anti-Warez Rules here ?

Exactly.

mikey26 19-09-2012 06:51

hi yener how to enable and disable eula from script i tried remove and adding ";"

yener90 19-09-2012 11:35

Quote:

Originally Posted by Valeron (Post 406768)
hey yener90, when are you going to implement precomp0.43 with ci?

if isdone supports it ;)

thedarkman 19-09-2012 23:08

Hi yener90,

msiexec.exe support with your script? because i want make installer with silent install steam & physx, thanks :D

yener90 20-09-2012 00:46

normally it should...try it out.

Th3Raven 20-09-2012 01:28

Quote:

Originally Posted by yener90 (Post 406797)
normally it should...try it out.

It doesn't(or maybe i haven't found the correct LaunchArg for .msi )
I fave tried for Physx with all the LaunchArg, but with no results. :(

amin fear 20-09-2012 02:05

Quote:

Originally Posted by Th3Raven (Post 406803)
It doesn't(or maybe i haven't found the correct LaunchArg for .msi )
I fave tried for Physx with all the LaunchArg, but with no results. :(

Proper Arg For [Run] Section Of Inno Setup :

Code:

[Run]
Filename: "msiexec.exe"; Parameters: "/i ""{tmp}\Setup.msi"""


Silent Setup
[Run]
Filename: "msiexec.exe"; Parameters: "/q /i ""{tmp}\Setup.msi""";

Not Tested On Yener90 CI ... But Works on usual Inno Setups ...

amin fear 20-09-2012 02:13

Quote:

Originally Posted by thedarkman (Post 406791)
Hi yener90,

msiexec.exe support with your script? because i want make installer with silent install steam & physx, thanks :D

You can create Silent Installs From MSIs by using the " SFX Maker " Program ...

after that use the compiled exe setup in CI ...

thedarkman 20-09-2012 03:24

Quote:

Originally Posted by amin fear (Post 406809)
You can create Silent Installs From MSIs by using the " SFX Maker " Program ...

after that use the compiled exe setup in CI ...

wow.. this is what i need, thanks
:p

Cesar82 20-09-2012 21:04

Suggestion for the next CI (If Possible)
1 - Pause extraction time when no extracting. (Ex: when requesting disk).
2 - Allow click on buttons when installing Redist.
3 - Allow play the video again (add a button to switch between video and slides).

yener90 22-09-2012 08:26

Quote:

Originally Posted by LuisCésar82 (Post 406898)
Suggestion for the next CI (If Possible)
1 - Pause extraction time when no extracting. (Ex: when requesting disk).
2 - Allow click on buttons when installing Redist.
3 - Allow play the video again (add a button to switch between video and slides).

1. Ok this really difficult.
2. Also difficult -> launching files without using launching feature.
3. Please tell me: HOW??
what you imagine??
Everybody has wishes, but without any imaginations.
currenlty video will be played one time, then automaticly will switch to slideshow.
if i add your feature -> always video playing or always slideshow without stopping, someone else get upset about this.

yener90 22-09-2012 08:30

UPDATE 8.5.6.7
- fixed text problem in directory selection page
- added arabic support

pakrat2k2 22-09-2012 08:31

yener, your CI is amazing period. You cant possibly include everyone's wishes. but for #3 instead of play video once, you could set it to loop indefinately? That way IF a person wants video played they can leave the avi in setup.cab, if not delete it & have just slideshow.

yener90 22-09-2012 08:34

Quote:

Originally Posted by pakrat2k2 (Post 407032)
yener, your CI is amazing period. You cant possibly include everyone's wishes. but for #3 instead of play video once, you could set it to loop indefinately? That way IF a person wants video played they can leave the avi in setup.cab, if not delete it & have just slideshow.

first version was like that :D
but it get to the nerves of some.
me too :p
always seeing same scene again and again and again...

pakrat2k2 22-09-2012 08:58

Quote:

Originally Posted by Th3Raven (Post 406803)
It doesn't(or maybe i haven't found the correct LaunchArg for .msi )
I fave tried for Physx with all the LaunchArg, but with no results. :(

from mass effect 3 which has physx installed

Launch6=Physx
Launch664=0
LaunchCom6=Redist\physx\redist\PhysX-9.11.1107-SystemSoftware.msi
LaunchArg6=/q:a

just change the Launch6 to whatever number you need in setup.ini, also the physx version number too. :)

the biggest issue with msi installer is that it doesnt always uninstall older version before trying to install new version
and that may be why it doesnt work properly.

Th3Raven 22-09-2012 09:30

Quote:

Originally Posted by pakrat2k2 (Post 407038)
from mass effect 3 which has physx installed

Launch6=Physx
Launch664=0
LaunchCom6=Redist\physx\redist\PhysX-9.11.1107-SystemSoftware.msi
LaunchArg6=/q:a

just change the Launch6 to whatever number you need in setup.ini, also the physx version number too. :)

the biggest issue with msi installer is that it doesnt always uninstall older version before trying to install new version
and that may be why it doesnt work properly.

thank you for this suggestion and also thx amin fear for his.:D
i will try both to see witch one works.

Cesar82 22-09-2012 19:38

yener90 With reference to my previous suggestion:
3 - Allow play the video again (add a button to switch between video and slides).
I mean if someone wants to repeat the video, have a button to repeat.
As this base: Video after slides is perfect.
If I knew programming, I could create my own script. But what I know is just for curiosity (I have no course).
Do not know if you've ever tested, but from what I read so far, it is possible to add cursor.cur.
I tested creating a Cursor.ani (Animated Cursor) and it worked perfectly. I created the animated cursor and then just had to change the extension to cursor.ani cursor.cur.
I think this may be included in the script (If there cursor.ani use as cursor).
In CI Designer 0.4a after you close and reopen the program, the part where the buttons move the label not being reloaded ini file (temp folder). Back to default.
Reason I'm posting here is simply to suggest improvements in its optimum work yener90.

Ozzy1911 24-09-2012 21:53

Could someody help me out with this?

Whenever i'm using i.e. Peterf's or some else command line packing. my freearc archive ends up having all the files outside the folders. And when it unpacks the files, no mather if i do it manually or by installation, it gets messed up.

yener90 25-09-2012 14:54

no it doesnt.

IMPORTANT UPDATE 8.5.6.8
- NetFramework independent CI
- Cryptor is no more NetFramework based
-> converted completely to pascal

kassane 25-09-2012 16:08

Quote:

Originally Posted by yener90 (Post 407177)
no it doesnt.

IMPORTANT UPDATE 8.5.6.8
- NetFramework independent CI
- Cryptor is no more NetFramework based
-> converted completely to pascal

Yener90, this new version is slow to open!
I'm testing it, if I find a problem I notice!
The previous version would open normally, but not this...

yener90 25-09-2012 18:12

i will bring out a hotfix.

yener90 25-09-2012 18:43

IMPORTANT UPDATE 8.5.6.9
- fixed speed issue

kassane 26-09-2012 04:36

Quote:

Originally Posted by yener90 (Post 407189)
IMPORTANT UPDATE 8.5.6.9
- fixed speed issue

thx yener!!:D
Speed ​​problem solved...:p

Newbie 27-09-2012 12:17

Thank You for this, I'm total newbie :) but I'm going to learn this....I have some time.....

Let see do I know how to use this :)


Best regards and keep up this great work.


EDIT:

Can anyone explain me a little what do I need to do :( ...............

e.g.

I have some game installed and what now, what I need to do to use this from 1st page with game files/folders................

Do I need to use Freearc......I think that I need that......

What do I need to EDIT-----only Setup.ini and that is it or....

Thank You

KaktoR 27-09-2012 16:40

Read this -> http://fileforums.com/showthread.php?t=92805

Newbie 28-09-2012 00:45

Quote:

Originally Posted by KaktoR (Post 407268)

I did read all that......

It looks like I had some problem with Setup.ini......

I just downloaded this files again and it works now.....

First part I know now i.e. how to include "game files/folders"......it works fine......

Now I'm going to check reg keys......

If I have any other question I will ask.

Thank You

EDIT:

And just one question......

Only what I need to change in InstallerScript.iss is Program Path i.e. #define ProgramFiles "C:\Program Files (x86)\FreeArc"........etc.....Am I right or ("especially if I don't know what I'm doing it is not good to mess with Script file....")......for everything else I need to use Setup ini and cab, right..... :)

And what is setup.dll......how do I get that - Do I really need it or what......

Thank You

KaktoR 28-09-2012 01:55

Quote:

Originally Posted by Newbie (Post 407279)
Only what I need to change in InstallerScript.iss is Program Path i.e. #define ProgramFiles "C:\Program Files (x86)\FreeArc........etc.....Am I right or ("especially if I don't know what I'm doing it is not good to mess with Script file....")......for everything else I need to use Setup ini and cab, right..... :)

Yes.

Quote:

Originally Posted by Newbie (Post 407279)
And what is setup.dll......how do I get that - Do I really need it or what......

Thank You

Autorun.exe = Setup.dll. If you want to have Setup.dll instead of Autorun.exe, just run Convert_AutorunToDLL.bat. But its the same and doesnt matter if you have Autorun.exe oder Setup.dll.

shanrq 01-10-2012 04:45

yener your script version 8.5.6.9 when i change applicationname to "F1 2012" in setup.ini when a try to run the installer installation directory like this "C:\Program Files\F1 2012" the publisher name is missing but when i try change the name to "test" directory is normal "C:\Program Files\Konami\test" name publisher is show.. is it kind like a bug??

Please confirm it.. is it only me or someone else have same issue?

Fabioddq 03-10-2012 21:40

Hi yener! You would be possible to add new functionality to collections. For example, an option to choose which game you want to install one separately or both together.
As in Quake Collection, where you can choose which you want to install and not all at the same time.

I think it should this must be hard to do! But all would be very grateful for that!

Thanks! :D

QfG 04-10-2012 05:47

Any Question:

What must i type in the setup.ini, if i will that a *.arc file only installed @english languabe.

For example:

Quote:

[ExtractSettings]
FreeArcFile1={src}\english.arc;DestDir:{app};Disk: 1
This file must only installed if i choose the english language in the installer.

Thanks for help.


All times are GMT -7. The time now is 02:31.

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