
22-08-2022, 12:01
|
|
Registered User
|
|
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,405 Times in 637 Posts
|
|
Quote:
Originally Posted by -tara
Thanks for the cls's, when using precompmt everything seems to work fine exept for a little issue im having, when i set the temp location as "{app}" and run the installer, instead of using the install location as temp, it creates a folder labled "{app}" next to itself, i don't know a lot about how cls's work so im not sure if this is an issue in the cls itself or innosetup, however using a cls for srep and lolz, "{app}" as a temp location works as intended, is there a fix/bypass to this? I hope i explained myself clearly, sorry for poor english
|
Put this in your innoscript after extracting cls.ini:
Code:
SetIniString('precompmt', 'Temp', ExpandConstant('{app}'), ExpandConstant('{tmp}\CLS.ini'));
|