Forum: NSIS Discussion
29th June 2009, 15:09
|
|
Replies: 12
Views: 3,931
yes, you can't use !insertmacro...
yes, you can't use !insertmacro MUI_PAGE_INSTFILES'. you have to use
Page instfiles "" ShowInst
instead.
where the showinst function is in the other thread.
that worked for me...
|
Forum: NSIS Discussion
29th June 2009, 14:36
|
|
Replies: 12
Views: 3,931
|
Forum: NSIS Discussion
18th October 2007, 09:30
|
|
Replies: 2
Views: 1,584
|
Forum: NSIS Discussion
18th October 2007, 00:18
|
|
Replies: 2
Views: 1,584
Chinese oddness
I've been trying out some internationalization (especially the example files), and the installer windows seem to double in size when running in Chinese, and the font size increases and goes bold.
...
|
Forum: NSIS Discussion
22nd September 2007, 18:48
|
|
Replies: 13
Views: 4,749
|
Forum: NSIS Discussion
22nd September 2007, 18:39
|
|
Replies: 13
Views: 4,749
|
Forum: NSIS Discussion
21st September 2007, 18:07
|
|
Replies: 13
Views: 4,749
|
Forum: NSIS Discussion
21st September 2007, 10:33
|
|
Replies: 13
Views: 4,749
I tried that. I also tried:
* Using all...
I tried that. I also tried:
* Using all permutations of quotes, folder references, starting folders.
* Running it from the start menu link
* Using nsExec, UAC...
* Creating a separate exe which...
|
Forum: NSIS Discussion
21st September 2007, 10:19
|
|
Replies: 13
Views: 4,749
|
Forum: NSIS Discussion
20th September 2007, 15:03
|
|
Replies: 13
Views: 4,749
Strange vista bug
Hi,
I've got an app which installs and then runs itself.
On XP it always works fine.
On Vista, when the installer tries to run the app (using exec), the application runs, but without...
|
Forum: NSIS Discussion
20th August 2007, 19:27
|
|
Replies: 5
Views: 1,734
|
Forum: NSIS Discussion
20th August 2007, 19:16
|
|
Replies: 5
Views: 1,734
|
Forum: NSIS Discussion
20th August 2007, 11:11
|
|
Replies: 5
Views: 1,734
|
Forum: NSIS Discussion
20th August 2007, 11:08
|
|
Replies: 5
Views: 1,734
Invalid CRC message
Since the only way to modify the CRC message is to modify the NSIS source code, we have decided against changing this. However, we really would like to customize this message (particularly since it...
|
Forum: NSIS Discussion
1st May 2007, 10:26
|
|
Replies: 1
Views: 1,576
CRC check message
Hi,
When users download a version of my application and it's corrupt, the message given is this:
"NSIS error
The installer you are trying to use is corrupted or incomplete.
This could be...
|
Forum: NSIS Discussion
17th November 2006, 08:21
|
|
Replies: 12
Views: 3,931
|
Forum: NSIS Discussion
16th November 2006, 15:27
|
|
Replies: 15
Views: 7,011
|
Forum: NSIS Discussion
16th November 2006, 13:31
|
|
Replies: 15
Views: 7,011
|
Forum: NSIS Discussion
16th November 2006, 13:30
|
|
Replies: 15
Views: 7,011
|
Forum: NSIS Discussion
16th November 2006, 10:41
|
|
Replies: 3
Views: 1,655
>Has anyone seen anything like this before?
...
>Has anyone seen anything like this before?
Yeah, during a presentation it got misrecognised as having a virus. These false positives happen quite a bit.
>If the problem is some kind of...
|
Forum: NSIS Discussion
16th November 2006, 10:38
|
|
Replies: 15
Views: 7,011
|
Forum: NSIS Discussion
16th November 2006, 10:36
|
|
Replies: 3
Views: 1,996
|
Forum: NSIS Discussion
16th November 2006, 10:35
|
|
Replies: 2
Views: 3,003
Fixed. The code I used:
Page instfiles ""...
Fixed. The code I used:
Page instfiles "" ShowInst
Function ShowInst
; Remove grey area above progress bar
FindWindow $0 "#32770" "" $HWNDPARENT
GetDlgItem $1 $0 1006
SetCtlColors...
|
Forum: NSIS Discussion
15th November 2006, 09:51
|
|
Replies: 12
Views: 3,931
I placed:
FindWindow $0 "#32770" ""...
I placed:
FindWindow $0 "#32770" "" $HWNDPARENT
GetDlgItem $1 $0 1004
SetCtlColors $1 FFFFFF FFFFFF
FindWindow $0 "#32770" "" $HWNDPARENT
GetDlgItem $1 $0 1006
SetCtlColors $1...
|
Forum: NSIS Discussion
14th November 2006, 15:24
|
|
Replies: 2
Views: 3,003
Changing background color in MUI
Hi,
How can I get rid of the grey background in the MUI instfiles page (see picture)?
I tried setting MUI_BGCOLOR and MUI_INSTFILESPAGE_COLORS both to white, but nothing happened.
...
|