Page 1 of 1

Splash Screen pop up 3 times

Posted: Thu Jun 21, 2018 7:03 am
by niv segal
Hi, I have a strange issue where the splash screen pops up 3 times and doesn't close.
This is an electron application, built with electron packager.
The result of the packager is a folder with an EXE inside.
I am including all these files in Virtual Box Files option.
And for some reason it pops up 3 times and doesn't close.
Any ideas?

Re: Splash Screen pop up 3 times

Posted: Thu Jun 21, 2018 9:00 am
by Enigma
Hi, this happens due to structure of the electron applications. When you run it, it also runs few own copies, so if you take a look at Task Manager, you will find mutiple instances of the same process (however, you run it only once!).
For protection it does not matter who and how the file is being executed, it shows the splash screen for each copy.

As a suggestion - just do not use splash screen, it is not suitable in this case.

Re: Splash Screen pop up 3 times

Posted: Thu Jun 21, 2018 12:25 pm
by niv segal
I see what you mean.
OK thanks for your quick reply.