Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 14-04-2013, 07:11
Compiler Compiler is offline
Registered User
 
Join Date: Aug 2012
Location: A Planet called Earth.
Posts: 38
Thanks: 10
Thanked 7 Times in 7 Posts
Compiler is on a distinguished road
Here is the Arc.ini
Code:
[External compressor:srep]
;options  = l%d (minimal match length, default=1024)
header = 0
packcmd   = srep {options} -m3f $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = srep -d -s $$arcpackedfile$$.tmp $$arcdatafile$$.tmp

[External compressor:precomp]
header = 0
packcmd   = precomp -intense0 -c- {options} -o$$arcpackedfile$$.tmp  $$arcdatafile$$.tmp
unpackcmd = precomp -o$$arcdatafile$$.tmp -r $$arcpackedfile$$.tmp
Reply With Quote
Sponsored Links
  #2  
Old 16-04-2013, 15:57
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
Can anyone help me.
I need a code to activate and deactivate a label 5 times with an interval of time.
Reply With Quote
  #3  
Old 17-04-2013, 06:18
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,185
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by LuisCésar82 View Post
Can anyone help me.
I need a code to activate and deactivate a label 5 times with an interval of time.
use a timer and boolean,

in IS enhanced edition, use ttimer function in normal inno setup use settimer and killtimer using innocallback.dll
Reply With Quote
  #4  
Old 17-04-2013, 16:27
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
use a timer and boolean,

in IS enhanced edition, use ttimer function in normal inno setup use settimer and killtimer using innocallback.dll
How to use this function using innocallback.dll? If anyone has an example script, please post for me. I use inno setup unicode (Standard Version).
Need to example
ButtonClick >> LabelHide(Time ms) >> LabelShow(Time ms) >> LabelHide(Time ms) >> LabelShow(Time ms) ....

What is the difference between versions of Inno Setup (ANSI, Unicode, Ansi Enhanced Edition and Unicode Enhanced Editio)? If the Enhanced edition version is more complete because we use another version.
Reply With Quote
  #5  
Old 22-04-2013, 08:39
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,185
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by LuisCésar82 View Post
How to use this function using innocallback.dll? If anyone has an example script, please post for me. I use inno setup unicode (Standard Version).
Need to example
ButtonClick >> LabelHide(Time ms) >> LabelShow(Time ms) >> LabelHide(Time ms) >> LabelShow(Time ms) ....

What is the difference between versions of Inno Setup (ANSI, Unicode, Ansi Enhanced Edition and Unicode Enhanced Editio)? If the Enhanced edition version is more complete because we use another version.
Wow, long procedure huh? , PM me and will help you with your little problem.

The difference I think is that Enhanced Edition uses single functions which have been generated from long or frustrating procedures from the standard version.

The Enhanced Edition allows some lines or functions which aren't allowed in the standard version. like ttimer, doublebuffered and etc.

It also helps by suggesting or ideas for you whenever you are dealing with any script.

and etc.
Reply With Quote
  #6  
Old 16-04-2013, 22:24
inovateqsa inovateqsa is offline
Registered User
 
Join Date: Oct 2011
Location: South Africa
Posts: 30
Thanks: 8
Thanked 1 Time in 1 Post
inovateqsa is on a distinguished road
Alright, I have a simple question:

Is it possible to make a custom installer using ONLY the game disc/s - IE: making an installer without installing the game first?

It would help for annoying DRM and poor internet connection.

Also, When using the custom installer - is there an easier way to align your buttons?
At the moment I am editing the setup.ini, running setup to see where the buttons are, and repeating this process until I eventually get them right.
Is there some way i can make it easier?

Thanks for your help.

Last edited by inovateqsa; 17-04-2013 at 03:24. Reason: Extra info
Reply With Quote
  #7  
Old 17-04-2013, 04:44
spawniectes's Avatar
spawniectes spawniectes is offline
Senior Member
 
Join Date: Sep 2010
Location: Argentina
Posts: 202
Thanks: 52
Thanked 401 Times in 76 Posts
spawniectes is on a distinguished road
Quote:
Originally Posted by inovateqsa View Post
Alright, I have a simple question:

Is it possible to make a custom installer using ONLY the game disc/s - IE: making an installer without installing the game first?

It would help for annoying DRM and poor internet connection.

Also, When using the custom installer - is there an easier way to align your buttons?
At the moment I am editing the setup.ini, running setup to see where the buttons are, and repeating this process until I eventually get them right.
Is there some way i can make it easier?

Thanks for your help.
I can respond for the align of the buttons. this is an small trick that I use.

open your image with photshop (ie. autorun.png)
right click over the ruler and choose pixels.
use the guide lines to obtain the coordinates were you want the buttons appears. Its not 100% accurate sometimes you have to rest 4 or 5 pixels.
(ie.: if on photoshop show that your button will appears at left=80 and top=160 on setup.ini you must put left=80 top=155) I hope this help you.
__________________
always above all, keep in mind that some day you will die. Bushido.
Reply With Quote
The Following 2 Users Say Thank You to spawniectes For This Useful Post:
inovateqsa (17-04-2013), pakrat2k2 (17-04-2013)
  #8  
Old 17-04-2013, 05:40
inovateqsa inovateqsa is offline
Registered User
 
Join Date: Oct 2011
Location: South Africa
Posts: 30
Thanks: 8
Thanked 1 Time in 1 Post
inovateqsa is on a distinguished road
Thanks,

That's Awesome!
Reply With Quote
  #9  
Old 17-04-2013, 14:29
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
how to give the installer an icon or the same icon used for setup.exe in Add/Remove programs window?
Reply With Quote
  #10  
Old 17-04-2013, 15:18
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
in inno script [setup] section

UninstallDisplayIcon=setup.ico

all in the help section, just open up your script, and click on help.
all documentated there
Reply With Quote
The Following User Says Thank You to pakrat2k2 For This Useful Post:
danswano (17-04-2013)
  #11  
Old 17-04-2013, 15:57
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
How do i dynamically make the installer asks for the next cab if it was missing on the disc without specifying which .cab is one the next disc?
Reply With Quote
  #12  
Old 17-04-2013, 16:09
Andre Jesus's Avatar
Andre Jesus Andre Jesus is offline
Registered User
 
Join Date: Jun 2012
Location: Brazil
Posts: 70
Thanks: 11
Thanked 0 Times in 0 Posts
Andre Jesus is on a distinguished road
Hello Friends.

How can i change (size and place) the button of the message box?

Sem título.jpg

Thanks in advance.
Reply With Quote
  #13  
Old 17-04-2013, 22:05
altef_4's Avatar
altef_4 altef_4 is offline
Registered User
 
Join Date: Mar 2012
Location: Ukraine
Posts: 361
Thanks: 248
Thanked 1,022 Times in 239 Posts
altef_4 is on a distinguished road
Quote:
Originally Posted by Andre Jesus View Post
Hello Friends.

How can i change (size and place) the button of the message box?

Attachment 6091

Thanks in advance.
you can't
Reply With Quote
The Following User Says Thank You to altef_4 For This Useful Post:
Andre Jesus (20-04-2013)
  #14  
Old 22-04-2013, 08:43
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,185
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by Andre Jesus View Post
Hello Friends.

How can i change (size and place) the button of the message box?

Attachment 6091

Thanks in advance.
create custom forms like new buttons, msgbox, labels and etc.
Reply With Quote
  #15  
Old 26-04-2013, 04:08
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,185
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by Andre Jesus View Post
Hello Friends.

How can i change (size and place) the button of the message box?

Attachment 6091

Thanks in advance.
Yep, it is possible, tested it on my script and working, but it's not easy.

Make Custom Labels, Change OnClicks and Use Booleans.
Attached Images
File Type: png Capture.PNG (901.7 KB, 167 views)

Last edited by Razor12911; 26-04-2013 at 04:13.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

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
Frequently Asked Questions Joe Forster/STA PC Games - Frequently Asked Questions 0 29-11-2005 09:48



All times are GMT -7. The time now is 15:27.


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