Gui using keyboard instead of regular buttons and mouse

hi everyone,
i understand that panda has a Direct GUI library which creates gui and works with mouse click response… Can someone provide me with a simple example on how to translate that over? Eg: using keyboard to navigate through gui menus and pressing a certain key to select the option.

Well, about the navigating through menu options with the keyboard, that’s something you must code yourself. Just bind some keypresses to a few functions that keep track of the current object selected, and highlight the currently selected object. When is pressed, it will have to invoke the currently selected object’s command.