Re: Tkinter Bold Text

2008-09-18 Thread Guilherme Polo
On Thu, Sep 18, 2008 at 1:06 PM, April Lekin <[EMAIL PROTECTED]> wrote: > Is there any way to highlight, bold or change the color of one word in a > variable to be displayed on a Tkinter GUI? Yes. > > Like: > > material = "Plastic" > introVal = "This report describes the construction of the %s."

Tkinter Bold Text

2008-09-18 Thread April Lekin
Is there any way to highlight, bold or change the color of one word in a variable to be displayed on a Tkinter GUI? Like: material = "Plastic" introVal = "This report describes the construction of the %s." % (material) this is what I want: This report describes the construction of the Plastic.

Tkinter Bold Text

2008-09-18 Thread April Lekin
Is there any way to highlight, bold or change the color of one word in a variable to be displayed on a Tkinter GUI? Like: material = "Plastic" introVal = "This report describes the construction of the %s." % (material) this is what I want: This report describes the construction of the Plastic.