Go Back   Winamp & Shoutcast Forums > Search Forums

Showing results 1 to 25 of 43
Search took 0.00 seconds.
Search: Posts Made By: colm
Forum: NSIS Discussion 29th June 2009, 15:09
Replies: 12
Views: 3,931
Posted By colm
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
Posted By colm
If I recall correctly, I couldn't do it when...

If I recall correctly, I couldn't do it when using MUI. The code that I used was in this thread:

http://forums.winamp.com/showthread.php?s=&threadid=259531
Forum: NSIS Discussion 18th October 2007, 09:30
Replies: 2
Views: 1,584
Posted By colm
Aha. Thanks.

Aha. Thanks.
Forum: NSIS Discussion 18th October 2007, 00:18
Replies: 2
Views: 1,584
Posted By colm
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
Posted By colm
Yep as in yes I used the UAC plugin (which didn't...

Yep as in yes I used the UAC plugin (which didn't do anything different, although I may have been misusing it).
Forum: NSIS Discussion 22nd September 2007, 18:39
Replies: 13
Views: 4,749
Posted By colm
>Then it's UAC. When you say you've tried UAC, do...

>Then it's UAC. When you say you've tried UAC, do you mean
>Anders' UAC plug-in?

Yep. If it's definitely UAC, do you know how I might fix it?
Forum: NSIS Discussion 21st September 2007, 18:07
Replies: 13
Views: 4,749
Posted By colm
I tried full paths on both.

I tried full paths on both.
Forum: NSIS Discussion 21st September 2007, 10:33
Replies: 13
Views: 4,749
Posted By colm
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
Posted By colm
Just Exec "xulrunner.exe...

Just

Exec "xulrunner.exe application.ini"
Forum: NSIS Discussion 20th September 2007, 15:03
Replies: 13
Views: 4,749
Posted By colm
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
Posted By colm
Ugh... not pretty :)

Ugh... not pretty :)
Forum: NSIS Discussion 20th August 2007, 19:16
Replies: 5
Views: 1,734
Posted By colm
So literally the only way would be to recompile...

So literally the only way would be to recompile the NSIS compiler each time a new version came out and then use that?
Forum: NSIS Discussion 20th August 2007, 11:11
Replies: 5
Views: 1,734
Posted By colm
For clarity: The message is here in: #define...

For clarity:

The message is here in: #define _LANG_INVALIDCRC
http://nsis.cvs.sourceforge.net/nsis/NSIS/Source/exehead/lang.h?view=markup
Forum: NSIS Discussion 20th August 2007, 11:08
Replies: 5
Views: 1,734
Posted By colm
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
Posted By colm
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
Posted By colm
I did. The code is in this thread: ...

I did. The code is in this thread:

http://forums.winamp.com/showthread.php?s=&threadid=259531

Thanks for the help. It's working now.
Forum: NSIS Discussion 16th November 2006, 15:27
Replies: 15
Views: 7,011
Posted By colm
Do.. nsExec::ExecToStack "'iCACLS' your...

Do..

nsExec::ExecToStack "'iCACLS' your command line options"
Pop $1
Pop $2

MessageBox MB_OK $1
MessageBox MB_OK $1

What does it say?
Forum: NSIS Discussion 16th November 2006, 13:31
Replies: 15
Views: 7,011
Posted By colm
Possible cause is lack of privileges. You could...

Possible cause is lack of privileges. You could try nsExec, and getting the results of the command back in the installer.
Forum: NSIS Discussion 16th November 2006, 13:30
Replies: 15
Views: 7,011
Posted By colm
Does it work if you use iCACLS manually on vista?

Does it work if you use iCACLS manually on vista?
Forum: NSIS Discussion 16th November 2006, 10:41
Replies: 3
Views: 1,655
Posted By colm
>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
Posted By colm
Suggestion - use: Exec "CACLS ..." ...

Suggestion - use:

Exec "CACLS ..."

Instead. Type cacls /? to find out how to use it...
Forum: NSIS Discussion 16th November 2006, 10:36
Replies: 3
Views: 1,996
Posted By colm
At the beginning of the first section write: ...

At the beginning of the first section write:

SetDetailsPrint none
DetailPrint "Section 1"

And at the beginning of the second section write:

DetailPrint "Section 2"

etc.
Forum: NSIS Discussion 16th November 2006, 10:35
Replies: 2
Views: 3,003
Posted By colm
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
Posted By colm
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
Posted By colm
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.
...
Showing results 1 to 25 of 43

 
Forum Jump