In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

forked from: 縦横のサイズが異なる長方形を並べる

配色の異なる色の連続を表示するプログラムを作成しました。
Get Adobe Flash player
by ena185 17 Oct 2011
/**
 * Copyright ena185 ( http://wonderfl.net/user/ena185 )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/8RVO
 */

// forked from lenonsun's 縦横のサイズが異なる長方形を並べる
// 縦横のサイズが異なる長方形を並べる
package 
{
    import frocessing.display.F5MovieClip2D;
    /**
     * 8個の縦横の大きさの異なる長方形を横一列に並べる
     * @author shmdmoto
     */
    public class GraphicExample extends F5MovieClip2D
    {
        public function setup() : void
        {
            // ここに描画命令を記述します 
            var rectWidth : Array = new Array(50,50,50,50,50,50,50);
            var rectHeight : Array = new Array(50,50,50,50,50,50,50);
            var i:int;
            for( i = 1; i <= 7; i++) {
                fill(i*200,100,200);
                rect( 50 * i, 100, rectWidth[i-1], rectHeight[i-1]);
            }
        }
    }
}