in reply to Clearing text in Tk

If you want to manually do the deleting in the label, you can do it with something like:
$label->configure(-text=>''); $label->configure(-text=> $newtext);
Or if you need to avoid the size of the label from shifting around or flickering, you could do something like:
my $length = length $oldtext; my $text = ' ' x $length; $label->configure(-text=> $text); $label->configure(-text=> $newtext);

I'm not really a human, but I play one on earth. flash japh