I've been trying to figure out how to use the stipple options for the Text 
widget.  I've gotten bgstipple to work simply enough.  Figure that fgstipple 
should work just the same but instead it just seems to blank out the complete 
range of characters to which it's applied.  Here's the code I've been 
experimenting with:

from Tkinter import *

root = Tk()
t = Text(root)
t.insert( END, '01234567890123456789' )
t.tag_add( 'x', '1.4', '1.12')
t.tag_config( 'x', fgstipple='gray12' )
t.pack( )
root.mainloop()



Does anyone know what I'm doing wrong or is this a bug in the widget?

Ron
_______________________________________________
Tkinter-discuss mailing list
Tkinter-discuss@python.org
http://mail.python.org/mailman/listinfo/tkinter-discuss

Reply via email to