in reply to Re^2: Eliminate blinking cursor from text widget
in thread Eliminate blinking cursor from text widget
If you do the bind like this:
$ef1->bind( '<Button-1>', [ \&fred, 'bill' ] );
Then when you click on entry field 1 ($ef1) the subroutine 'fred' will be called with the handle of $ef1 as the first parameter, and the value 'bill' as the second. Now you can program whatever action is required.
|
|---|