Tkinter: tooltips (Windows)

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • M-a-S

    Tkinter: tooltips (Windows)

    How can I have tooltips for buttons of a toolbar
    or for control items of a dialog?
    Does such feature exist at all?

    M-a-S


  • Richard Townsend

    #2
    Re: Tkinter: tooltips (Windows)

    "M-a-S" <NO-MAIL@hotmail.co m> wrote in message
    news:lsJ9b.1316 2$x21.6784@twis ter.southeast.r r.com...[color=blue]
    > How can I have tooltips for buttons of a toolbar
    > or for control items of a dialog?
    > Does such feature exist at all?
    >[/color]

    You can use the Pmw.Balloon widget to do this.

    For Pmw (Python Mega Widgets), see: http://pmw.sourceforge.net/

    John Grayson's book 'Python and Tkinter Programming' (see
    http://www.manning.com/grayson/index.html) has some examples which use it.

    The code in the book can be downloaded from


    RT





    Comment

    • M-a-S

      #3
      Re: Tkinter: tooltips (Windows)

      Thank you!

      "Richard Townsend" <nospam@here.co m> wrote in message news:1063740937 .38115.0@doris. uk.clara.net...[color=blue]
      > "M-a-S" <NO-MAIL@hotmail.co m> wrote in message
      > news:lsJ9b.1316 2$x21.6784@twis ter.southeast.r r.com...[color=green]
      > > How can I have tooltips for buttons of a toolbar
      > > or for control items of a dialog?
      > > Does such feature exist at all?[/color]
      >
      > You can use the Pmw.Balloon widget to do this.
      >
      > For Pmw (Python Mega Widgets), see: http://pmw.sourceforge.net/
      >
      > John Grayson's book 'Python and Tkinter Programming' (see
      > http://www.manning.com/grayson/index.html) has some examples which use it.
      >
      > The code in the book can be downloaded from
      > http://www.manning.com/getpage.html?...me=Source.html
      >
      > RT[/color]


      Comment

      Working...