/**
* Copyright Masayuki.Kondo ( http://wonderfl.net/user/Masayuki.Kondo )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/6uMT
*/
package {
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
graphics.beginFill(0x000000,0.5);
graphics.drawRect(0,30,2000,5);
graphics.beginFill(0x000000,0.5);
graphics.drawRect(100,0,5,2000);
graphics.beginFill(0x000000,0.5);
graphics.drawRect(200,0,5,2000);
graphics.beginFill(0x000000,0.5);
graphics.drawRect(400,0,5,2000);
graphics.beginFill(0x000000,0.5);
graphics.drawRect(300,0,5,2000);
graphics.beginFill(0x000000,0.5);
graphics.drawRect(100,0,5,2000);
graphics.beginFill(0x000000,0.5);
graphics.drawRect(0,200,2000,10);
graphics.beginFill(0x000000,0.5);
graphics.drawRect(0,200,2000,5);
graphics.beginFill(0x000000,0.5);
graphics.drawRect(10,300,2000,10);
graphics.beginFill(0x333333);
graphics.drawRect(50,0,5,2000);
graphics.beginFill(0xff0000);
graphics.drawRoundRect(110,150,50,50,20,20)
}
}
}