rbc has asked for the wisdom of the Perl Monks concerning the following question:
sub myTagCallback { my $theTextWidget = shift; # I don't know why this shows up! my $str = shift; my $arrRef = shift; my $tableWidget = shift; . . . } . . . $myTextWidget->tagBind ( $myTagName, "<ButtonRelease-1>", [\&myTagCallback, $myString, \@myArrayOArrays, $myTableWidget] ); . . .
... I didn't specify it as an argument in the tagBind call !?!?!?!my $theTextWidget = shift; # I don't know why this shows up!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: itext/i-tagBind() question
by Masem (Monsignor) on Feb 13, 2002 at 22:10 UTC | |
|
Re: itext/i-tagBind() question
by rjray (Chaplain) on Feb 13, 2002 at 22:17 UTC |