The
first section of code: "
_root.lineStyle(3, 0x0000FF, 100); " tells flash
HOW to draw the line. First it specifies the thickness
of the line in pixels, the color of the line in hexadecimal
then the level of transparency (alpha channel percentage).The
second line of code: "
_root.curveTo(150,150,100,200);
" commands flash to "draw a curve".
|