Joel
17th June 2003 21:23 UTC
A little question in a Installer with NO-MUI
Hello.
I pass a long time making setups with Modern UI...
and...now I don't remember how to make an installer without MUI :p
I'm creating this simple script to install a skin in the Winamp
directory, seems to be OK, but in the compiler Window display this
message:
1 warning:
Name command not specified. Assuming default.
Attaching script....
ramon18
17th June 2003 22:15 UTC
The command "Name" is missing, command which is needed to title the installation
with MUI this is automatic, its why you need the following defines:
e.g.:
!define MUI_PRODUCT "MyInstall"
!define MUI_VERSION "1.0"
BR,
Ramon
MoNKi
17th June 2003 22:19 UTC
Isn't missing.
Change:
Name "${Nombre}"
LoadLanguageFile "${NSISDIR}\Contrib\Language Files\spanish.nlf"
with:
LoadLanguageFile "${NSISDIR}\Contrib\Language Files\spanish.nlf"
Name "${Nombre}"
ramon18
18th June 2003 00:10 UTC
You right, I just don't downloaded the script
although, my explanation is correct, in a more generic way
cyas
Ramon
Joel
18th June 2003 00:52 UTC
Thanks...
It was also a language problem, but I fix that...
thanks :)