flash on 2010-3-24
♥0 |
Line 24 |
Modified 2010-03-24 19:14:23 |
MIT License
archived:2017-03-20 16:36:52
ActionScript3 source code
/**
* Copyright aass ( http://wonderfl.net/user/aass )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/cmOE
*/
package {
import flash.display.BlendMode;
import flash.display.Sprite;
import caurina.transitions.Tweener;
import caurina.transitions.properties.ColorShortcuts;
[SWF(width=465, height=465, frameRate=30, backgroundColor=0xFFFFFF)]
public class FlashTest extends Sprite {
public static const BALL_RADIUS:uint = 10;
public static const BALL_MARGIN:uint = 10;
public function FlashTest() {
// ColorShortcuts を有効化
ColorShortcuts.init();
// ball の横と横の個数を計算
var l:uint = Math.ceil(stage.stageWidth / (BALL_RADIUS * 2 + BALL_MARGIN));
var m:uint = Math.ceil(stage.stageHeight / (BALL_RAIUS * 2 + BALL_MARGIN));
for (var i:int=0; i<l; i++) {
for(var j:int=0; j<m; j++) {
//ballを作成
var ball:Sprite = new Sprite();
ball.x = i * (BALL_RADIUS * 2 + BALL_MARGIN) + (BALL_RADIUS + BALL_MARGIN);
ball.y = j * (BALL_RADIUS * 2 + BALL_MARGIN) + (BALL_RADIUS + BALL_MARGIN);
addChild(ball);
}
}
}
}
}