Re: Question about SplashScreen

2010-10-18 Thread Mark Dootson
Grrr Wx::Bitmap->new(...) of course. On 18/10/2010 14:26, Mark Dootson wrote: Hi, my $evthandler = Wx::EvtHandler->new; EVT_MOUSE_EVENTS($evthandler, sub { 1 } ); Wx::SplashScreen->new( Wx::Bitmap->('my.png', wxBITMAP_TYPE_PNG), wxSPLASH_CENTRE_ON_SCREEN|wxSPLASH_TIMEOUT, 1, undef, -1 ) -

Re: Question about SplashScreen

2010-10-18 Thread Mark Dootson
Hi, my $evthandler = Wx::EvtHandler->new; EVT_MOUSE_EVENTS($evthandler, sub { 1 } ); Wx::SplashScreen->new( Wx::Bitmap->('my.png', wxBITMAP_TYPE_PNG), wxSPLASH_CENTRE_ON_SCREEN|wxSPLASH_TIMEOUT, 1, undef, -1 ) ->GetSplashWindow

Re: Question about SplashScreen

2010-10-18 Thread Alexander
02.10.2010 0:54, herbert breunung пишет: > tricks that came to my mind, like intersecting mouse events, > but none has worked. Hello All, sorry for the long silence. Maybe someone knows way to create window with image like splash(i mean speed) and ignore mouse input???

Re: Question about SplashScreen

2010-10-01 Thread herbert breunung
i tried some tricks that came to my mind, like intersecting mouse events, but none has worked. herbert Am 29.09.2010 20:50, schrieb Alexander: > 29.09.2010 21:38, herbert breunung: >> you message is a bit confusing to be, you already make a timeout by saying >> 1, the amount of millisecond

Re: Question about SplashScreen

2010-09-29 Thread Alexander
29.09.2010 21:38, herbert breunung: you message is a bit confusing to be, you already make a timeout by saying 1, the amount of milliseconds it should stay. or you say: my $sc; BEGIN { require Wx::Perl::SplashFast; $sc = Wx::Perl::SplashFast-

Re: Question about SplashScreen

2010-09-29 Thread herbert breunung
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",1); > How can i do