flash on 2010-1-19
♥0 |
Line 12 |
Modified 2010-01-19 17:30:46 |
MIT License
archived:2017-03-20 04:55:44
ActionScript3 source code
/**
* Copyright itou_hiroki ( http://wonderfl.net/user/itou_hiroki )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/sx5i
*/
package {
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
graphics.lineStyle(3,0x008800); //線種 px,color
graphics.moveTo(100,100); //始点 x,y を設定
graphics.lineTo(50,100); //線を引く x,y
graphics.lineStyle(10,0x880088,5); //px,color,?
graphics.drawCircle(200,150,70); //円 centerx,y,
}
}
}