Well, here's a quote from MM docs (Flash 7 AS reference,
MovieClip.curveTo()):

====== start quote ===========
The following example draws a circle with a solid blue hairline stroke and a 
solid red fill:
this.createEmptyMovieClip("circle_mc", 1);
with (circle_mc) {
lineStyle(0, 0x0000FF, 100);
beginFill(0xFF0000);
moveTo(500, 500);
curveTo(600, 500, 600, 400);
curveTo(600, 300, 500, 300);
curveTo(400, 300, 400, 400);
curveTo(400, 500, 500, 500);
endFill();
}
====== end quote ===========

Yes, I'm still in Flash 7 (too?) .

-- 
Best regards,
 GregoryN                        
================================
http://GOusable.com
Flash components development.
Usability services.

> -------- Ian Thomas wrote:
> 
> I'm using an 8-arc method - I'd prefer to find 4-arc (i.e. the quadratic
> bezier) but haven't been able to find/work out suitable code. Could you
> point me in the right direction?


_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to