Skip to content
⌘ NSIS Forum Archive

Splash dissapear on click

16 posts

phllp_w#

Splash dissapear on click

Is it possible to make the splash dissapear only when it is clicked at.

No time limit, just a click.


Thanks! 😉
kichik#
You'd have to change Splash's source code for this. All you need to do is remove the SetTimer line, shouldn't be hard.
phllp_w#
Hmmm, would that be this line from the splash.c file:

    SetTimer(hwnd,1,sleep_val,NULL);
I tried removing it but it didn't help. 🙁
kichik#
Did you recompile? Have you made sure the DLL updated? Note that when compiling in Debug mode, the DLL is not written to the plug-in folder but to the Debug folder.
phllp_w#
Yeah, I recompiled a few times but still the same.

And I don't think I compile in Debug mode, how do you do that anyway?


Just in case, how do you set a longer time limit?
kichik#
Compiling in debug mode is the default. Go to Build->Set Active Configuration... and choose splash - Win32 Release.
phllp_w#
Originally posted by kichik
And which compiler would that be?
Well, the only one that exists in NSIS as far as I know..

Thanks Afrow UK, I'll take a look.