GameObject user = NGUITools.AddChild (list, user_selection);
GameObject removeUser = user.transform.Find ("RemoveUser").gameObject;
if (TNManager.isHosting)
{
Debug.Log("Is host");
removeUser.GetComponent< BoxCollider > ().enabled = true; // Work
removeUser.GetComponent< UISprite > ().alpha = 1; // Doesn't work
}