Position Display Objects in a Grid Layout


/ Published in: ActionScript 3
Save to your folder(s)



Copy this code and paste it in your HTML
  1. for (var i:uint = 0; i < 20; i++)
  2. {
  3. var displayObject:MyDisplayObject = new MyDisplayObject();
  4. displayObject.x = displayObject.width * ( i % 5 );
  5. displayObject.y = displayObject.height * Math.floor( i / 5 );
  6. addChild(displayObject);
  7. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.