Can I have more than one {app} variable in Inno Setup? -


i making inno setup script. setup needs user choose 2 customized install locations.

but there 1 {app} variable in inno.

our software audio plugin software, common way in field choose 1 location program , other location audio sample/data (which large users want install @ dedicated place storage , performance purpose).

is there way around condition?

thanks lot!

there many other variables (directory constants) can use, common ones:

{app} - application directory (user chooses derectory in wizard dialog) can create subdirectories {app}\data

{win} system's windows directory.

{sys} system's system32 directory.

{pf} program files.

{cf} common files.

and many, many others.

the modern installers store application in 1 directory - {app} , user's files in every user's custom directory - e.g. {localappdata}.

and if still not enough can create own dialog (wizard page) contains edit boxes , browse buttons selecting directories.

use function createinputdirpage() purpose.

see manual - pascal scripting: createinputdirpage more info.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -