
* Initial focus is set in "initDialog" making it possible to override it from NSIS prior to calling "show" - When initial focus is to a Text field InstallOptions now follows standard Windows behaviour by having the text selected - Label and other static fields no longer have State= written to the INI file when leaving the dialog - NOTIFY flag can now be used with Link fields (State should be omitted in this case) - Likewise, State can now be used with Button fields (behaves the same as with Link fields) - NOTIFY flag can also now be used with ListBox and DropList fields to have NSIS notified when the selection changes - Meaning of RIGHT flag is now reversed in right-to-left language mode - HSCROLL and VSCROLL flags are no longer restricted to Text fields - Various Link field fixes - Text box colour bug fix git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3350 212acab6-be3b-0410-9dea-997c60f758d6
44 lines
570 B
INI
44 lines
570 B
INI
[Settings]
|
|
NumFields=5
|
|
|
|
[Field 1]
|
|
Type=Label
|
|
Left=10
|
|
Right=-40
|
|
Top=10
|
|
Bottom=18
|
|
Text=This custom page demonstrates the "Link" control
|
|
|
|
[Field 2]
|
|
Type=Link
|
|
Left=20
|
|
Right=-40
|
|
Top=40
|
|
Bottom=50
|
|
Text=* Run notepad
|
|
|
|
[Field 3]
|
|
Type=Link
|
|
Left=20
|
|
Right=-40
|
|
Top=55
|
|
Bottom=65
|
|
State=mailto:someone@anywhere.com
|
|
Text=* Send E-mail
|
|
|
|
[Field 4]
|
|
Type=Link
|
|
Left=20
|
|
Right=-40
|
|
Top=70
|
|
Bottom=80
|
|
State=http://nsis.sourceforge.net/
|
|
Text=* Homepage http://nsis.sourceforge.net/
|
|
|
|
[Field 5]
|
|
Type=Text
|
|
Left=20
|
|
Right=-40
|
|
Top=85
|
|
Bottom=98
|
|
State=Just to test proper interaction with the other fields
|