I am re designing a portion of my current software project, and want to use hyperlinks instead of buttons. I really didn't want to use a Text widget, but that is all I could find when I Googled the subject. Anyway, I found an example of this, but keep getting this error:
TclError: bitmap "blue" not defined
when I add this line of code (using the Python Shell with IDLE )
hyperlink = tkHyperlinkManager.HyperlinkManager(text)
The code for the module is located here and the code for the script is located here
Anyone have any ideas? The part that is giving problems says foreground="blue", which is known as a color in Tkinter, isn't it?
I am using Python 2.6 on MS Windows XP Pro