Skip to content
⌘ NSIS Forum Archive

change

6 posts

Guest#

change

Anybody could say me as change it:
a) http://img203.exs.cx/my.php?loc=img...;image=a7rm.png
b) http://img207.exs.cx/my.php?loc=img...image=as7yp.png
c) http://img220.exs.cx/my.php?loc=img...image=ds2zr.png
d) http://img232.exs.cx/img232/1526/a5tj.png

Very please 🙂.
arfinator853#
do you want to know how to get the discriptions to show up in the Modern UI?

This is how it seems from your drawing.
arfinator853#
These are in the Modern UI Examples, But anywhay.
Next to your sections, put Sec{then a little keyword to idnetify the section}

So it would look like: Section "Shortcuts" SecCuts

Complete this for everyone of your sections. Then, after your sections part of your script, add another part: Descriptions.

  LangString DESC_SecCuts ${LANG_ENGLISH} "Here will be your description for the shortcuts."
  !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
    !insertmacro MUI_DESCRIPTION_TEXT ${SecCuts} $(DESC_SecCuts)
  !insertmacro MUI_FUNCTION_DESCRIPTION_END 
MAke sure with the second ection to only include !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN and !insertmacro MUI_FUNCTION_DESCRIPTION_END once.

Hope this helps!