Re: Wanted cycle

peter <[email protected]> Tue, 16 Sep 2003 21:26:47 +0200
Newsgroups gmane.comp.web.ming.general
Message-ID <[email protected]>
> how can I draw a filled circle as a shape.
if you use perl: man SWF::Shape

perlscript:
$s = new SWF::Shape;
$s->setRightFill(0xff,0,0);
$s->drawCircle(50);

peterdd