IO2 Tutorial Label: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
DannyStaple (talk | contribs) (Pulled in content from CHM tutorial) |
DannyStaple (talk | contribs) (Formatting) |
||
Line 1: | Line 1: | ||
{{PageAuthor|Joel}} {{PageAuthor|DannyStaple}} | |||
= Install Options 2 - Tutorial For Labels = | = Install Options 2 - Tutorial For Labels = | ||
# Place the cursor in the middle of dialog 105 and select insert control. | # Place the cursor in the middle of dialog 105 and select insert control. | ||
Line 7: | Line 8: | ||
# In the screenshot example, 61 93 72 9, will be the order for Left, Top, Right, Bottom values for the INI. | # In the screenshot example, 61 93 72 9, will be the order for Left, Top, Right, Bottom values for the INI. | ||
# So this will be, for: | # So this will be, for: | ||
<highlight-nsis> | |||
Left=61 | |||
Top=93 | |||
;Right = 72+left_value(61)=72+61=133 | |||
Right=133 | |||
;Bottom = 9+Top_value(93)=9+93=102 | |||
Bottom=32 | |||
</highlight-nsis> | |||
# Create your INI, with the new values: | # Create your INI, with the new values: | ||
<highlight-nsis> | |||
Left=61 | |||
Top=93 | |||
Right=133 | |||
Bottom=102 | |||
</highlight-nsis> | |||
[[Category:Install Options 2 Tutorial]] | [[Category:Install Options 2 Tutorial]] |
Revision as of 12:46, 31 October 2006
Author: Joel (talk, contrib) |
Author: DannyStaple (talk, contrib) |
Install Options 2 - Tutorial For Labels
- Place the cursor in the middle of dialog 105 and select insert control.
- Choose "label", add some text in the "caption" than hit "ok".
- The control will appear in the dialog, you resize and stretch as many times and forms you like, see.
- Once you finish, with Resource Hacker, hide the dialog.
- You'll get the controls units, see.
- In the screenshot example, 61 93 72 9, will be the order for Left, Top, Right, Bottom values for the INI.
- So this will be, for:
Left=61 Top=93 ;Right = 72+left_value(61)=72+61=133 Right=133 ;Bottom = 9+Top_value(93)=9+93=102 Bottom=32
- Create your INI, with the new values:
Left=61 Top=93 Right=133 Bottom=102