I'm using the text widget to give ongoing updates to the user. When something happens in the program, I want to add an update to the user in the text widget.
But I can't figure out how to add each new update onto it's own new line. I've looked through the documentation, but I don't see any methods that would help me, so I figured I could just use the index END and use modifiers on it, but no such luck. Here's my script (my italics, obviously): from Tkinter import * # I import Tkinter into my Python script. ... # Blah blah blah mytextbox.insert(END + 1 lines, textfordisplay) # The interpreter stops and tells me that lines is "invalid syntax". Any suggestions? Thanks for reading? -- View this message in context: http://old.nabble.com/Why-can%27t-I-use-the-END-index-with-my-text-widget-in-Tkinter--tp30431052p30431052.html Sent from the Python - tkinter-discuss mailing list archive at Nabble.com. _______________________________________________ Tkinter-discuss mailing list Tkinter-discuss@python.org http://mail.python.org/mailman/listinfo/tkinter-discuss