Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Tk - always on top property 2

by didier (Vicar)
on Aug 28, 2003 at 12:29 UTC ( [id://287332]=note: print w/replies, xml ) Need Help??


in reply to Tk - always on top property 2

Your hexa hwnd is not the good one :)
Here your script with a little update

Have a nice day :)
use Tk; use Tk::Balloon; use Win32::API; use vars qw/$Button/; my $mw = new MainWindow; $id_mw = $mw->id; $mw->Frame(-width=>200, height =>25); $mw->update; Win32::API->new("user32","SetWindowPos", [qw(N N N N N N N)],'N')->Call(hex($id_mw),-1,0,0,0,0,3); $Button=$mw->Button(-text => "Button", -command => sub { &do_something; })->pack(); my $balloon = $mw -> Balloon(-balloonposition => 'mouse', -initwait => 10, -bg => 'white'); $balloon -> attach($Button, -balloonmsg => "Button"); MainLoop; sub do_something { #sleep(10); }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://287332]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (9)
As of 2024-04-23 17:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found