python - Getting Tkinter text widget to show the latest addition -
this question has answer here:
my application uses tkinter text widget display user every time calls api. api called numerous times, text displayed goes beyond scope of text area. so, user has go on text area , scroll know present status. there way can text widget scroll little down every time new comes up?
the program following every time has say:
text.insert(index,'fetching names, authentication tokens , designations...\n') index+=1 root.update_idletasks()
i think after see method:
text.see(end) % example
Comments
Post a Comment