in reply to Query about Scrollbar

Here are two solutions:
$rotext_box->insert('end', $text_to_Insert); $rotext_box->see('end');
$rotext_box->PRINT($text_to_Insert);

The difference is the latter will only move if the end is in view before the text is inserted.

->update() isn't necessary in either case.

Replies are listed 'Best First'.
Re^2: Query about Scrollbar
by Anonymous Monk on Nov 17, 2008 at 07:41 UTC
    Thanks ikegami,
    It worked perfectly.... Thanks a lot :)