Skip to content
⌘ NSIS Forum Archive

hidden text?

3 posts

jp730#

hidden text?

Hi!

Is ist possible to have an hidden text-field in a custompage? I want the user to use my installer with a password and this password should not be shown in plain text...
I only know the myini.ini-Types "Text", "Check" and "Label"....

Thanx,
JP
Joel#
in you function page put an INI head, something like this:

[Settings]
NumFields=1

[Field 1]
Type=GroupBox
Text=Tareas adicionales
Left=0
Top=0
Right=300
Bottom=130

[PASS]
Pass=hereyourpasword
Then call it at runtime, something like this:

ReadINIStr $0 "$PLUGINSDIR\io.ini" "PASS" "Pass" ;the pass you set