in reply to How to update tk label value embedded in textarea.

Seriously? What's preventing your progress? ->configure and be done
  • Comment on Re: How to update tk label value embedded in textarea.

Replies are listed 'Best First'.
Re^2: How to update tk label value embedded in textarea.
by Anonymous Monk on Sep 14, 2019 at 03:05 UTC

    Thank you.
    While I know about configure method. I want to know how to get the labels created using createwindow and embedded in the textarea. So that I can call configure method on them.

      Um

      Its classic, keep track yourself

      my @labels; push @lable, $textarea->Label(); ...

      Or ask Tk

      my @labels = grep { $_->class eq 'Label' } $textarea->children;