Re: [Tkinter-discuss] putting a series of hyperlinks in a text widget

2008-08-17 Thread Fredrik Lundh
Alexnb wrote: Ya, I saw that but didn't help :( It does *exactly* what you asked for, though. ___ Tkinter-discuss mailing list Tkinter-discuss@python.org http://mail.python.org/mailman/listinfo/tkinter-discuss

Re: [Tkinter-discuss] putting a series of hyperlinks in a text widget

2008-08-17 Thread Alexnb
Ya, I saw that but didn't help :( But its good, I got what I need. Fredrik Lundh wrote: > > Alexnb wrote: > >> You know, I think this is exactly what I was looking for. >> >> Thanks for your help! > > Here's the first hit for "tkinter hyperlink", btw: > > http://effbot.org/zone/tkint

Re: [Tkinter-discuss] putting a series of hyperlinks in a text widget

2008-08-17 Thread Fredrik Lundh
Alexnb wrote: You know, I think this is exactly what I was looking for. Thanks for your help! Here's the first hit for "tkinter hyperlink", btw: http://effbot.org/zone/tkinter-text-hyperlink.htm ___ Tkinter-discuss mailing list Tkinter-discu

Re: [Tkinter-discuss] putting a series of hyperlinks in a text widget

2008-08-16 Thread Alexnb
You know, I think this is exactly what I was looking for. Thanks for your help! Mick O'Donnell wrote: > > Dear Alex, > > I think you are on to a valid solution: tag each anchor. > > I would use 2 tags: > > 1) A general tag called for example 'link', which you config > a) to present

Re: [Tkinter-discuss] putting a series of hyperlinks in a text widget

2008-08-16 Thread Michael O'Donnell
Dear Alex, I think you are on to a valid solution: tag each anchor. I would use 2 tags: 1) A general tag called for example 'link', which you config a) to present itself as a link (e.g., in blue, underlines) b) to respond to events, e.g., ButtonRelease 2) a tag for each individual l

[Tkinter-discuss] putting a series of hyperlinks in a text widget

2008-08-12 Thread Alexnb
I am having trouble figuring out the best way to do this and would love some help. What I need to do is to create clickable links in a text widget, but there will be at max 40. They will all be different. I am wondering what is the best way to create a clickable unique url in a text widget. I kno