13. Tkinter: ScrollText
Channel:
Subscribers:
5,850
Published on ● Video Link: https://www.youtube.com/watch?v=B2ktKJow4wU
Video code
#Imports the Tkinter Library
from tkinter import*
#Creates a new window
master=Tk()
#Changes the title of the window
master.title("My title")
#Changes the background of the window
master.configure(background='white')
#Changes the size of the window
master.geometry("350x200")
scrText=scrolledtext.ScrolledText(master, wrap=WORD)
scrText.pack()
scrText.insert('insert',"Hello \n\n\n\n\n")
scrText.insert('insert',"Hello \n\n\n\n\n")
scrText.insert('insert',"Hello \n\n\n\n\n")
scrText.insert('insert',"Hello \n\n\n\n\n")
scrText.insert('insert',"Hello \n\n\n\n\n")
scrText.config(state=DISABLED)
Other Videos By Game Design with Reilly
2020-05-03 | 5. JavaScript: Arrays |
2020-04-29 | 4.JavaScript - If Statement |
2020-04-29 | 3. JavaScript: Code Comments |
2020-04-29 | 2. Javascript: Variables |
2020-04-29 | 1. JavaScript: Outputs |
2020-04-22 | 18. Tkinter: Scales / Sliders |
2020-04-22 | 17. Tkinter: Combo Box |
2020-04-22 | 16. Tkinter: Checkboxes |
2020-04-22 | 15. Tkinter: Radio buttons |
2020-04-22 | 14. Tkinter: Text Entry |
2020-04-08 | 13. Tkinter: ScrollText |
2020-04-08 | 12. Tkinter: Notebook and keyboard inputs |
2020-04-08 | 11. Tkinter: Notebook |
2020-04-08 | 10. Tkinter: Keyboard input |
2020-04-08 | 9. Tkinter: Looping a grid |
2020-04-01 | 8. Tkinter: Frames |
2020-04-01 | 7. Tkinter: Place Layout |
2020-04-01 | 6. Tkinter: Grid Layout |
2020-04-01 | 5. Tkinter: Side Layout |
2020-04-01 | 4. Tkinter: Widget Functions |
2020-04-01 | 3. Tkinter: Widgets |
Tags:
tkinter
python
intro
introduction
tutorial
keyboard
notebook
scroll
text
entry
buttons
radio
combo
checkbox
scales
sliders