|
|
|
|
|||||||
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#61
|
|||
|
|||
|
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. |
| Sponsored Links |
|
#63
|
|||
|
|||
|
Hello,
Precomp 0.3.8 crashes on some file extensions, is it normal? |
|
#65
|
|||
|
|||
|
Thanks, on slow mode who win between those 2 versions or it's unpredictable as well?
|
|
#66
|
||||
|
||||
|
the thing is that when I use precomp038 and precomp040, I get better results than when I use precomp042
|
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
danswano (13-06-2013) | ||
|
#67
|
|||
|
|||
|
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. |
|
#69
|
|||
|
|||
|
aren't these flags just for reg entries? how to use them with ISArcExtract?
|
|
#70
|
||||
|
||||
|
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 |
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
danswano (14-06-2013) | ||
|
#71
|
|||
|
|||
|
Dude, i can't think as fast as you
![]() Just saw the example on the inno docs http://www.jrsoftware.org/ishelp/ind...sxfunc_iswin64 Thanks, i will try it right now.
|
|
#72
|
|||
|
|||
|
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 |
|
#73
|
||||
|
||||
|
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 Last edited by pakrat2k2; 14-06-2013 at 16:30. |
|
#74
|
|||
|
|||
|
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" ?? |
|
#75
|
||||
|
||||
|
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 Last edited by pakrat2k2; 14-06-2013 at 16:33. Reason: added info |
![]() |
|
|