Also, what code do you use to draw circles? Even in the MM docs, there are 2 methods, using 2 types of bezier curves: quadratic and cubic. Quadratic bezier method (of drawing circle) works fast and uses just 4 calls to curveTo(). But the result is "squared". Cubic bezier method uses Math class (sin and tan), draws perfect circles, but mu-u-uch slower.
Try to find the fastest method. And, of course, the less circles you draw, the better :-). -- Best regards, GregoryN ================================ http://GOusable.com Flash components development. Usability services. > -------- Ian Thomas wrote: > > I am basically plotting/drawing a circle at each point the mouse moves to > while clicked. (This isn't a paint package, it's for something else entirely > - which is why I'm not drawing lines...) > > I had already got as far as trying rectangles - they are indeed a lot > faster, just not as pretty. :-) They are my fallback position if I can't get > anything better to work. > > I can't quite see why the MovieClip option would work - but I'm willing to > have a go. I'll let you know how it works out. > > Many thanks, > Ian _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

