Help for this page

Select Code to Download


  1. or download this
    bind .t1 <Tab> { focus [tk_focusNext .t1]; break }
    
  2. or download this
    # fix the bindtags order so that widget events are
    # processed before class events
    ...
    
    # now give the text widget a new Tab binding
    $t1->bind( '<Tab>', sub { $t1->focusNext; Tk->break; } );