Hi

I have a circle drawn on a canvas (circle.graphics.drawCircle(...)).

I need to be able to subsequently draw a border around it as part of 
the circle's mouseclick event. I'm using

var circle:Datapoint=new Datapoint();
circle= this.getChildByName(_namePrefix + which.toString()) as 
Datapoint;
                        
var color:ColorTransform=circle.transform.colorTransform;
circle.transform.colorTransform=color;
circle.alpha=1;
circle.graphics.lineStyle(2,0);

The colour change works fine, but the border never shows up.

What am i doing wrong?

Thanks

Reply via email to