Change color for tags : Text : GUI Tk PYTHON examples


PYTHON examples » GUI Tk » Text »

 

Change color for tags


Change color for tags
 
from Tkinter import *
root = Tk()
def hello(event)
   print 'Hi'

text = Text()
text.config(font=('courier', 15'normal'))                
text.config(width=20, height=12)
text.pack(expand=YES, fill=BOTH)
text.insert(END, 'Li1nnLin 2nnLin 3.nn')  


text.tag_add('demo', '1.5', '1.7')                      
text.tag_add('demo', '3.0', '3.3')                      
text.tag_add('demo', '5.3', '5.7')                       
text.tag_config('demo', background='purple')             
text.tag_config('demo', foreground='white')             
text.tag_config('demo', font=('times', 16'underline')) 
text.tag_bind('demo', '<Double-1>', hello)              

root.mainloop()


           
         
  



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo GUI Tk
» Text