box=Text(window)
scrollbar=Scrollbar(window, orient=VERTICAL, command=box.yview)
scrollbar.pack(side=RIGHT, fill=Y)
box.config(yscrollcommand=scrollbar.set)
I have created a large program with tkinter to create graphical interface. I tried to add scrollbar but it doesn't work.
It doesn^t move up and down