Thread: GS2 Tabs
View Single Post
  #2  
Old 05-04-2007, 05:05 AM
Gambet Gambet is offline
Registered User
Join Date: Oct 2003
Posts: 2,712
Gambet is on a distinguished road
You don't need to put anything, just read what you need in the actual script.

Example:
PHP Code:
function whatever_tab.onSelect(tabid,tabtext,tabindex)
{
 switch(
tabtext)
  {
   case 
"Bob":
     
player.chat "Bob tab selected!";
     break;
   case 
"Bill":
     
player.chat "Bill tab selected!";
     break;
  }


etc...
Reply With Quote