2009-05-27 8 views

Répondre

1

Voici un début:

for (var i:int = 0; i < 8; i++) 
{ 
    var button:SimpleButton = new MyButton(); //whatever the library linkage of your button is 
    addChild(button); 
    button.x = i * 100; 
} 
Questions connexes