http://www.perlmonks.org?node_id=1014023


in reply to Re: How to use the BalloonInfo of Tk::Widget.pm
in thread How to use the BalloonInfo of Tk::Widget.pm

Hi zentara,

If you are looking perl 5.8.8 version, then Tk::Widget of that version you 'll find the BalloonInfo sub routine. I am copy/paste -ing the code below. Even in the Balloon.pm of that version you will find BalloonInfo

sub BalloonInfo { my ($widget,$balloon,$X,$Y,@opt) = @_; foreach my $opt (@opt) { my $info = $balloon->GetOption($opt,$widget); return $info if defined $info; } }

Replies are listed 'Best First'.
Re^3: How to use the BalloonInfo of Tk::Widget.pm
by Anonymous Monk on Jan 18, 2013 at 10:31 UTC

    ...you 'll find the BalloonInfo sub routine

    but it isn't documented , why do you want to use it?