""" .. moduleauthor:: easygui developers and Stephen Raymond Ferg .. default-domain:: py .. highlight:: python Version |release| """ boxRoot = None def bindArrows(widget): widget.bind("", tabRight) widget.bind("", tabLeft) widget.bind("", tabRight) widget.bind("", tabLeft) def tabRight(event): boxRoot.event_generate("") def tabLeft(event): boxRoot.event_generate("")