I have this source code:
from Tkinter import *
import tkMessageBox
import time
class Window(Tk):
def __init__(self,parent):
Tk.__init__(self,parent)
self.parent = parent
self.initialize()
def initialize(self):
self.geometry('450x250+0+0')
self.configure(background="#379DDB")
self.title('Konversi Bilangan')
**self.label = Label(self, text='Konversi Dari',font=('times',24,'italic'),bg="#379DDB")**
self.label.pack()
self.tombol=Button(self, text='Biner',font=(18),borderwidth='3px',width=10,command=self.OnButtonClick1,bg="#69ABD3")
self.tombol.pack(side=TOP)
self.tombol2=Button(self, text='Desimal',font=(18),borderwidth='3px' ,width=10, command=self.OnButtonClick2,bg="#69ABD3")
self.tombol2.pack(side=TOP)
self.tombol3=Button(self, text='Oktal',font=(18),borderwidth='3px' ,width=10,command=self.OnButtonClick3,bg="#69ABD3")
self.tombol3.pack()
self.tombol4=Button(self, text='Hexa',font=(18),borderwidth='3px' ,width=10,command=self.OnButtonClick4,bg="#69ABD3")
self.tombol4.pack()
self.tombol5=Button(self,text='Quit',font=(18),borderwidth='3px' ,width=10, fg='red', command= self.quit,bg="#69ABD3")
self.tombol5.pack()
How to make marquee from that I bold? If it is not possible how to make marquee like vb in tkinter?