Re: [Tkinter-discuss] newbie request for help

2011-06-08 Thread Cameron Laird
On Wed, Jun 08, 2011 at 08:55:39AM -0400, Kevin Walzer wrote: . . . > >To get tkHyperlinkManager installed here is what I would recommend. If > >the command easy_install is not currently available, then you may be > >able to in

Re: [Tkinter-discuss] newbie request for help

2011-06-08 Thread Kevin Walzer
On 6/8/11 8:29 AM, Kevin Buchs wrote: To get tkHyperlinkManager installed here is what I would recommend. If the command easy_install is not currently available, then you may be able to install the corresponding "distutils" module for Python using Fedora's package maintenance capability. Probab

Re: [Tkinter-discuss] newbie request for help

2011-06-08 Thread Kevin Buchs
Alessandro, The suggestion on this email list has been to use the Text widget, making use of tags. The second option you gave is going a different direction than that by using Labels. I do not think that will take you where you want to go. It may be that tkHyperlinkManager is the optimal choice whe

Re: [Tkinter-discuss] newbie request for help

2011-06-07 Thread alexxxm
ooops, I just found out: the code for tkHyperlinkManager is at http://pastebin.com/mWfDm7eZ alessandro ~~ alexxxm wrote: > > I thank you all for your help and I'm looking forward to implement it. > At the moment however I'm unable to do it since it appears

Re: [Tkinter-discuss] newbie request for help

2011-06-07 Thread alexxxm
I thank you all for your help and I'm looking forward to implement it. At the moment however I'm unable to do it since it appears I'm missing a basic piece: trying to approach the links, at first I used the code found at http://effbot.org/zone/tkinter-text-hyperlink.htm: import tkHyperlinkManage

Re: [Tkinter-discuss] newbie request for help

2011-06-07 Thread John W. Shipman
+-- | 1) open a text file | 2) display the text file, with links in the form {{image.jpg}} replaced by | the image, and [[linkname|linkfile.txt]] replaced by linkname | 3) when clicking on linkname, save the current text file and open in its | place the file linkfile.txt +-- Tkinter can do all th

Re: [Tkinter-discuss] newbie request for help

2011-06-07 Thread Cameron Laird
On Tue, Jun 07, 2011 at 11:05:09AM -0300, Cam wrote: . . . > You should be able to accomplish this easily with the tkinter "Text" widget. > > Cam Farnell > > On 11-06-07 10:03 AM, alexxxm wrote: .

Re: [Tkinter-discuss] newbie request for help

2011-06-07 Thread Cam
You should be able to accomplish this easily with the tkinter "Text" widget. Cam Farnell On 11-06-07 10:03 AM, alexxxm wrote: Hi everybody, I need some help to understand if tkinter is in fact the right tool to use for me. I intend to write a very bare-bone wiki in python. It should be able t