Go Back   Winamp & Shoutcast Forums > Developer Center > NSIS Discussion

Reply
Thread Tools Search this Thread Display Modes
Old 22nd March 2007, 19:53   #1
JamesKiller
Senior Member
 
Join Date: Jan 2007
Posts: 125
Can I add space between checkbox and the text next to the checkbox

Hi,

I am trying to add some space between the checkbox and the text next to the checkbox on the Finish Page(checkbox:Start my Application). But the installer just ignores it.

Any thoughts?


James
JamesKiller is offline   Reply With Quote
Old 22nd March 2007, 21:12   #2
Mark Nascimento
Member
 
Join Date: Jul 2006
Posts: 82
I do this:
Text=" Check that !"

using ""
Mark Nascimento is offline   Reply With Quote
Old 22nd March 2007, 22:04   #3
JamesKiller
Senior Member
 
Join Date: Jan 2007
Posts: 125
I write my code like that:

!define MUI_FINISHPAGE_RUN_TEXT " Start ${PRODUCT_NAME}"
Still, the istaller just ingores the white space....?
so the checkbox is very close to the text...i wanna the space in the middle of checkbox and text.
JamesKiller is offline   Reply With Quote
Old 22nd March 2007, 22:51   #4
Mark Nascimento
Member
 
Join Date: Jul 2006
Posts: 82
I don't use MUI, but
Just to keep alive, try
#####
Outfile test.exe
name "First Try"
AutoCloseWindow True

Section
StrCpy $0 " Start $(^NAME)" ;put spaces before Start
MessageBox MB_OK|MB_topmost|MB_Iconexclamation "$0"
!define MUI_FINISHPAGE_RUN_TEXT "$0"
MessageBox MB_OK|MB_topmost|MB_Iconexclamation "${MUI_FINISHPAGE_RUN_TEXT}"
SectionEnd
####
Mark Nascimento is offline   Reply With Quote
Old 23rd March 2007, 00:39   #5
Anders
Moderator
 
Anders's Avatar
 
Join Date: Jun 2002
Location: ${NSISDIR}
Posts: 5,449
PHP Code:
!define MUI_FINISHPAGE_RUN_TEXT "'     Start ${PRODUCT_NAME}'" 

IntOp $PostCount $PostCount + 1
Anders is offline   Reply With Quote
Old 23rd March 2007, 15:17   #6
JamesKiller
Senior Member
 
Join Date: Jan 2007
Posts: 125
where should I add this line in?

IntOp $PostCount $PostCount + 1

??
JamesKiller is offline   Reply With Quote
Old 23rd March 2007, 15:24   #7
JamesKiller
Senior Member
 
Join Date: Jan 2007
Posts: 125
Oh, now I got it... Thanks
JamesKiller is offline   Reply With Quote
Old 23rd March 2007, 15:50   #8
Anders
Moderator
 
Anders's Avatar
 
Join Date: Jun 2002
Location: ${NSISDIR}
Posts: 5,449
Quote:
Originally posted by JamesKiller
where should I add this line in?
IntOp $PostCount $PostCount + 1
??
Thats the second time someone has tried to use my signature as code, why do people read my posts bottom up, and do I need a new sig?

IntOp $PostCount $PostCount + 1
Anders is offline   Reply With Quote
Old 23rd March 2007, 16:58   #9
JamesKiller
Senior Member
 
Join Date: Jan 2007
Posts: 125
Anders,

your signature is somehow confusing sometimes.
I appreciate your help. It does work for me.

James
JamesKiller is offline   Reply With Quote
Reply
Go Back   Winamp & Shoutcast Forums > Developer Center > NSIS Discussion

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump