in reply to Predefining a word in a TK Entry/Text box?
#for an entry widget $entry->delete(0,'end'); $entry->insert(0,$word); [download]
#for a textbox $text->delete("1.0","end"); $text->insert('end',$word); $text->see('end'); [download]