Hi, so in order to make my problem more clear, I shall just make a simple example of what I am trying to do. I will start with a little code: from Tkinter import * master = Tk() msgbox = Text(master) msgbox.pack() mytext = raw_input("> ") msgbox.insert(END, mytext)