I am working on a program for work and trying to make a massage bar with text can anyone help? I just want the text to move across the screen.
from tkinter import *
Gui = Tk()
Gui.geometry('8000x100+1+600')
Gui.title('ALARTS')
Gui.config (bg = 'blue')
massage = Label(Gui, text = 'this is a demo')
massage.config (fg = 'white',bg = 'blue', font=('times','60'))
massage.place( x = 1,y = 0,)
Gui.mainloop()