ALL ABOUT ME

Flash :: 가로, 세로 정렬!! 본문

Lab

Flash :: 가로, 세로 정렬!!

threeword 2009. 4. 28. 15:12

.Variable

var colSpacing:uint = 233;      /// 무비클립 한개의 넓이 (간격포함)
var rowSpacing:uint = 134;     /// 무비클립 한개의 높이 (간격포함)
var totalCols:uint = 3;            /// 행 갯수
var totalRows:uint = 3;          /// 열 갯수

.Code
for(var i:uint = 0; i < totalCols * totalRows; i++){
DisplayObject.x = (i % totalCols) * colSpacing;
DisplayObject.y = Math.floor((i) / totalCols) * rowSpacing;
}

'Lab' 카테고리의 다른 글

Flash :: Red5 - Flash Media Server 설치  (0) 2009.05.15
Flash :: 올플래시 리사이즈  (0) 2009.05.06
Flash :: Bitmap Resize  (0) 2009.04.17
Flash :: FLVPlayback video smoothing  (0) 2009.04.16
Flash :: FlashDevelop !!  (0) 2009.03.02
Comments