package
{
import flash.text.TextFormatAlign;
import flash.text.TextField;
import flash.display.Sprite;
import flash.text.TextFormat;
public class LabeledCircle extends Sprite
{
private var textField:TextField;
public function LabeledCircle(radius:Number, label:String = "")
{
// Prepares the textField
var textFormat:TextFormat = new TextFormat();
textFormat.align = TextFormatAlign.CENTER;
textField = new TextField();
textField.defaultTextFormat = textFormat;
addChild(textField);
// Sets the default parameters
this.radius = radius;
this.label = label;
}
public function set radius(radius:Number):void
{
// redraws the circle
graphics.clear();
graphics.beginFill(0x000000, .5);
graphics.drawCircle(0, 0, radius);
// recenters the textfield depending on the radius
textField.width = radius * 2;
textField.x = -radius;
}
public function set label(label:String):void
{
textField.text = label;
}
}
}
Flex把字符串或数字显示在图上面。主要是利用TestField。
最新推荐文章于 2022-12-13 22:43:50 发布
本文介绍了一种使用ActionScript 3.0 (AS3) 创建带有文本标签的圆形的方法。通过定义`LabeledCircle`类,该方法允许设置圆的半径和文本内容,并自动调整文本位置以适应圆形大小。
摘要由CSDN通过智能技术生成