Flex把字符串或数字显示在图上面。主要是利用TestField。

本文介绍了一种使用ActionScript 3.0 (AS3) 创建带有文本标签的圆形的方法。通过定义`LabeledCircle`类,该方法允许设置圆的半径和文本内容,并自动调整文本位置以适应圆形大小。
摘要由CSDN通过智能技术生成
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;
    	}
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值