Hello if you are using a vertical scrollbar:
Code:
scroll1=Scrollbar(orient='vertical')
scroll1.place(x=1,y=1,height=100)
and if you are using a horizontal scroll bar:
Code:
scroll2=Scrollbar(orient='horizontal')
scroll2.place(x=1,y=200,width=100)
so basically Scrollbar(orien t=VERTICAL/HORIZONTAL).pla ce(x=x,y=y,heig ht/width=amount)


thats for place if you are using pack its like...