View Single Post
  #2  
Old 07-20-2013, 02:33 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Avoid using continue and break when you don't have to.

PHP Code:
function selectToolName(temp.staffCode) { 
  
temp.code 0;
  
temp.tools getTools();
  
DoctorStaffBar_Control_Text.text temp.tools[temp.staffCode][0];
  for (
temp.code 0temp.code temp.tools.size(); temp.code++) {
    
temp.thing = ("DoctorStaffBar_Control" temp.code); 
    if (
temp.code == temp.staffCode) { 
      
temp.thing.alpha 1
    } else {
      
temp.thing.alpha 0.3;
    }
  } 

__________________
Quote:
Reply With Quote