Re: [perl-win32-gui-users] I need mouse method!

2009-03-21 Thread Jeremy White
As a side, you dont need to define constants or use win32 api: use strict; use warnings; use Win32::GUI qw(WS_CAPTION TME_HOVER TME_LEAVE HOVER_DEFAULT SWP_FRAMECHANGED SWP_NOMOVE SWP_NOSIZE SWP_NOZORDER SWP_NOACTIVATE); my $state = 0; # 0 - out; 1 - in; my $mw = Win32::GUI::Window->new( -tit

Re: [perl-win32-gui-users] I need mouse method!

2009-03-21 Thread Waldemar Biernacki
Oh Jeremy, you are perfectly right! I am so inpatient! Thank you for your help! Waldemar. -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabi

Re: [perl-win32-gui-users] I need mouse method!

2009-03-21 Thread Jeremy White
> I have found in Internet the following code (later on), but I don't see any > efects of MouseOver at all. Specialy it does not print the words: "Hover" > when I put my mouse over the window. Can anyone help me? I use Perl 5.8. > > the code: Hi, I am not sure if I understand what you want t