in reply to Predefining a word in a TK Entry/Text box?

In addition to what has already been said, you will probably want to delete what's already in the boxes, before you add your word.(or maybe not.... :-) )
#for an entry widget $entry->delete(0,'end'); $entry->insert(0,$word);
#for a textbox $text->delete("1.0","end"); $text->insert('end',$word); $text->see('end');

I'm not really a human, but I play one on earth. flash japh