in reply to How to get balloons (tooltips) on toplevel widget

You may need Tk::Balloon as follows.
use strict; use Tk::Balloon; my $b = $toplevel_wg->Balloon(-statusbar=>$toplevel_wg); $b->attach($toplevel_wg, -balloonmsg => "I am on the smaller window", -statusmsg => "Status bar message");


Excellence is an Endeavor of Persistence. Chance Favors a Prepared Mind.