Topic: can i use mootools TIPS with each element of the Mif.tree?

Hi,
i need to apply a 'tip' (with mootools Tips) on 'mouseover' event to each node of the Mif.tree. It's possible? and how?
Thank you very much

Re: can i use mootools TIPS with each element of the Mif.tree?

u can add tips using hover event. Something like (it's just a code prototype, not a real example):

tree.addEvent('hover', function(node, target, state){//target=name|icon|gadjet|node, state=over|out
    if(target=='name' && state=='over'){
        showTip(node)
    }
    if(target=='name' && state=='out'){
        hideTip(node)
    }
})

i can create small demo later if it's neccesary

Re: can i use mootools TIPS with each element of the Mif.tree?

Thank you again! bye

4

Re: can i use mootools TIPS with each element of the Mif.tree?

I am not able to add Mootool Tips to node. It would be nice if you can give some working example.

Thanks