Am 29.09.2010 13:59, schrieb Шоренков Александр:
>  Hello All.
> In my app i want to use SplashScreen. I found Wx::Perl::SplashFast or
> Wx::SplashScreen, and i want that splash not hide then i click to it,but hide
> by timeout.
> Wx::Perl::SplashFast->new("/image/start.png",10000);
> How can i do this?
> Thank you.
> 
> 

you message is a bit confusing to be, you already make a timeout by saying
10000, the amount of milliseconds it should stay. or you say:


        my $sc;
        BEGIN {
                require Wx::Perl::SplashFast;
                $sc = Wx::Perl::SplashFast->new('/pfad/zum/logo.jpg');
        }
        ...
        $sc->Destroy();

cheers
herbert aka lichtkind
http://kephra.sf.net

Reply via email to