Help for this page

Select Code to Download


  1. or download this
    sub updChatterbox {
        my ($mytopchar, $myposition) = $Chatfield->yview();  # retreive sc
    +roll pos
    ...
            $Chatfield->yview(moveto=>$mytopchar);  # restore scroll pos
        }
    }
    
  2. or download this
    $Chatfield->see('end');
  3. or download this
        if ($myposition == 1) {
        $Chatfield->yview(moveto=>$myposition);
    ...
        else {
            $Chatfield->yview(moveto=>$mytopchar);  # restore scroll pos
        }