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

I just looked at perldoc Tk::Widget, and there is no listing of a BalloonInfo function.

I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku ................... flash japh
  • Comment on Re: How to use the BalloonInfo of Tk::Widget.pm

Replies are listed 'Best First'.
Re^2: How to use the BalloonInfo of Tk::Widget.pm
by ghosh123 (Monk) on Jan 18, 2013 at 10:21 UTC

    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; } }

      ...you 'll find the BalloonInfo sub routine

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