View Single Post
  #18  
Old 09-02-2011, 10:29 PM
Mark Sir Link Mark Sir Link is offline
Kevin Azite
Mark Sir Link's Avatar
Join Date: Sep 2005
Posts: 1,489
Mark Sir Link is just really niceMark Sir Link is just really nice
Send a message via AIM to Mark Sir Link
when you create the textlist, you should add some variable to each object as you add the rows like

PHP Code:
new GuiTextListCtrl("List"){
  
with(addrow(0"Archer")){
    
desc "Description for archer";
  }
  
with(addrow(1"Class2")){
    
desc "blah";
  }

  
thiso.catchevent(name"onSelect""onClassSelect");
}

function 
onClassSelect(temp.rows){
  
Class_MultiLine1.text rows.selected.desc;

Reply With Quote