// forked from flashinterface's forked from: 普通の時計 - Clock package { import flash.display.Sprite; public class ExampleApplication extends Sprite { public function ExampleApplication( ) { graphics.lineStyle(100, 0, 1); for(var i:int=0;i<50;i++) { graphics.lineStyle(0xff0000, 1 ); graphics.lineTo(Math.random( ) * 600, Math.random( ) * 200); } } } }