Hey Hani,
Are you sure you are calling the selection_clear method of the hlist child
widget and not the parent tree?
eg.
tree = Tix.Tree(root)
tree.hlist.selection_clear()
If you look in Tix.py you can see that Tree is a compound widget containing
two scrollbars and a hlist.
class Tree(TixWidget):
def __init__(self, master=None, cnf={}, **kw):
TixWidget.__init__(self, master, 'tixTree',
['options'], cnf, kw)
self.subwidget_list ['hlist'] = _dummyHList(self, 'hlist')
self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
Thus to clear the hlist selection you must address the child hlist directly
and not its parent Tree widget.
Cheers,
James
On 8/5/07, hani abraham <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm new to python and i'm using Tix Tree widget in my application. I'm
> trying to clear the tree selection but no luck so far. I tried
> selection_clear and anchor_clear but these aren't working. Can someone help?
>
>
>
> Thanks,
> Hani
>
> ------------------------------
> Ask a question on any topic and get answers from real people. *Go to
> Yahoo! Answers.* <http://ca.answers.yahoo.com>
>
> _______________________________________________
> Tkinter-discuss mailing list
> [email protected]
> http://mail.python.org/mailman/listinfo/tkinter-discuss
>
>
_______________________________________________
Tkinter-discuss mailing list
[email protected]
http://mail.python.org/mailman/listinfo/tkinter-discuss