How can I wrap the text displayed in a balloon in Perl/Tk?
my code is something like this
my $balloon1 = $mw->Balloon();
my $txt = "file Name: ".$fileName."\n"."location: ".$path;
$balloon1->attach($button, -balloonmsg=>$txt);
But this help text in balloon goes out of screen boundaries. Is there a way to wrap the text displayed in a balloon?