Im working on MDX TreeView menu,
and my main problem is,
how do you make text for one selection only,
if you click on the treeview on other selections the text is still here and i wish to put other things on them, but different text for each selection any ideas?

alias mdx_fullpath { return $+(",C:\phmscript2003v1c\phmstat\mdx.dll,") }

alias mdx { dll $mdx_fullpath $1- }

alias mdxinit {
dll $mdx_fullpath SetMircVersion $version
dll $mdx_fullpath MarkDialog $dname
}

dialog Mdx_dialog {
size -1 -1 549 349
title "Dialog"
button "positioner",1001,0 0 0 0
list 1,5 7 168 313,extsel size
}
on *:dialog:Mdx_dialog:init:*:{
mdxinit
mdx SetControlMDX $dname 1001 positioner minbox maxbox > C:\phmscript2003v1c\phmstat\dialog.mdx
mdx SetControlMDX $dname 1 TreeView haslines linesatroot hasbuttons editlabels > C:\phmscript2003v1c\phmstat\views.mdx
did -i $dname 1 1 iconsize normal small
did -i $dname 1 1 seticon normal 0, $+ C:\phmscript2003v1c\graphics\stathdd.ico
did -i $dname 1 1 seticon normal 0, $+ C:\phmscript2003v1c\graphics\statnick.ico
did -a $dname 1 1 1 PHM Script
did -i $dname 1 1 cb root last 1
did -a $dname 1 2 2 About
did -a $dname 1 2 2 Credits
did -a $dname 1 2 2 Copy Right
did -a $dname 1 2 2 Web Site
did -i $dname 1 1 cb root 1
did -a $dname 1 1 1 Preferences
did -i $dname 1 1 cb root last 1
did -a $dname 1 2 2 Personal
did -a $dname 1 2 2 IM
did -a $dname 1 2 2 Location
did -a $dname 1 2 2 Script
did -a $dname 1 2 2 Times
did -i $dname 1 1 cb root 1
did -a $dname 1 1 1 Kick And Bans
did -i $dname 1 1 cb root last 1
did -a $dname 1 2 2 Kick Prefs
did -a $dname 1 2 2 Kick Counter
did -a $dname 1 2 2 Ban Prefs
did -i $dname 1 1 cb root 1
did -a $dname 1 1 1 Away
did -i $dname 1 1 cb root last 1
did -a $dname 1 2 2 Away Prefs
did -a $dname 1 2 2 Silent Away
did -a $dname 1 2 2 Regular Away
did -a $dname 1 2 2 Back Now
did -i $dname 1 1 cb root 1
did -a $dname 1 1 1 !!!Check For Updates
}