ActionScript 3 在网格中排列图像(或任何东西)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 在网格中排列图像(或任何东西)相关的知识,希望对你有一定的参考价值。

// This code should be placed in a for loop of some sort
// that iterates through each of your images or display objects. 
// 

if(iNum==0) {
	// place the first image at 0,0
	currX = 0;
	currY = 0;
} else if(iNum%2 == 0) {
	// Change "2" to however many columns this grid should have. 
	// This runs anytime iNum is evenly divisible by 2
	// Which sets currX to 0 and adds another row height to currY
	// Essentially starting a new row. 
	currY += _imageHeight + _imageSpacing;
	currX = 0;
} else {
	currX += _imageWidth + _imageSpacing;
}
images[i].x = currX;
images[i].y = currY;

以上是关于ActionScript 3 在网格中排列图像(或任何东西)的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 在网格布局中定位显示对象

Actionscript 3,动作脚本中的网格和网格行

如何在 Actionscript 3.0 中获取数组的所有排列?

ActionScript 3 在AS3中生成网格

ActionScript 3 用于加载和预加载外部闪存或图像的通用类

如何在Actionscript 3.0中获取数组的所有排列?