in reply to Re: Tab Order for Widgets in HList
in thread Tab Order for Widgets in HList
$mw -> bind('all','<Tab>', sub { $Tk::event->W ->focusPrev; Tk::break(); } ); $mw -> bind('all','<Shift-Tab>', sub { $Tk::event->W ->focusNext; Tk::break(); } );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Tab Order for Widgets in HList
by choroba (Cardinal) on Oct 19, 2011 at 13:52 UTC | |
by Anonymous Monk on Oct 19, 2011 at 14:15 UTC |