for(int i = 0;i < 3;i++){
GameObject test
= new GameObject
("TEST"+i
); test.AddComponent<UIDragScrollView>();
UILabel countryName = test.AddComponent<UILabel>();
countryName.font = MyriadProBold;
countryName.text = "Just testing";
test.AddComponent<BoxCollider>();
test.AddComponent<UISprite>();
test.AddComponent<LanguageChooser>();
}