I put in my frame scale, but I'm not sure how I can show the value of this scale in my label. I need to update it every time the scale moves. How can I do that?
self.options_settings.framepripojeni6 = Frame(self.options_settings.tab1)
self.options_settings.framepripojeni6.pack(side=tkinter.TOP, expand=0, fill=tkinter.BOTH, padx=2, pady=4)
self.options_settings.scale = Scale(self.options_settings.framepripojeni6,from_=1, to=60, length=350)
self.options_settings.scale.pack(side=tkinter.TOP)
self.options_settings.labelScale = tkinter.Label(self.options_settings.framepripojeni5, text="x")
self.options_settings.labelScale.pack(side=tkinter.LEFT)