in reply to Re^2: Tab Order for Widgets in HList
in thread Tab Order for Widgets in HList

Very nice! But, for me, Shift-Tab does not work, I have to specify Shift-ISO_Left_Tab :-(

Replies are listed 'Best First'.
Re^4: Tab Order for Widgets in HList
by Anonymous Monk on Oct 19, 2011 at 14:15 UTC
    Checking the source for Tk::MainWindow reveals that it uses the virtual <<LeftTab>>, so this should work for all, and its even simpler
    $mw->bind('all','<Tab>','focusPrev'); $mw->bind('all','<<LeftTab>>','focusNext');