RE: [perl-win32-gui-users] Animated windows

2002-10-08 Thread grahn
# ... here create your window object ($winObj) as ususal... I know you have done a lot of work to show us how to use these effects, but for me, I've got no idea how to create this object properly. My background is *NIX, and the Win32::GUI module for perl. Hate to ask a dumb question

RE: [perl-win32-gui-users] Animated windows

2002-10-08 Thread Thomas, Timothy B
Here's what I did to get it to work: use Win32; use Win32::GUI; #added use Win32::API; use constant AW_HOR_POSITIVE = 0x0001; use constant AW_HOR_NEGATIVE = 0x0002; use constant AW_VER_POSITIVE = 0x0004; use constant AW_VER_NEGATIVE = 0x0008; use constant AW_CENTER =

[perl-win32-gui-users] Animated windows [working demo]

2002-10-08 Thread Luigino Masarati
This is a working demo for Animated windows #- use Win32; use Win32::API; use Win32::GUI; use constant AW_HOR_POSITIVE = 0x0001; use constant AW_HOR_NEGATIVE = 0x0002; use constant AW_VER_POSITIVE = 0x0004; use constant AW_VER_NEGATIVE =