奇葩的as3 TextField

这里列出来的是as3 TextField的奇葩之一:

当然,as3奇葩的东西,远远不止这些,这只是冰山一角;


如果设置tf的Format,则必须,以下两个语句一起使用;

否则,单单使用其一,格式还是会有很多丢失的;


				tf.defaultTextFormat=tfFormat;
				tf.setTextFormat(tfFormat);

大家可以,都我以下的源代码中的:两个no way 方法试试;先将must的隐掉;一个一个no way来设置;

package testTf
{
	import flash.display.Sprite;
	import flash.display.StageAlign;
	import flash.display.StageScaleMode;
	import flash.text.TextField;
	import flash.text.TextFieldType;
	import flash.text.TextFormat;
	import flash.text.TextFormatAlign;
	
	/**
	 *  [description]
	 * @author Jave.Lin(afeng)
	 **/
	[SWF(width="1200",height="720")]
	public class TestTf extends Sprite
	{
		public function TestTf()
		{
			super();
			
			stage.frameRate=60;
			stage.align=StageAlign.TOP_LEFT;
			stage.scaleMode=StageScaleMode.NO_SCALE;
			stage.color=0x888888;
			
			var aa:TextField = new TextField();
			
			setTf(aa,
				{
					visible:true,
					htmlText:"名称\ndsfasdfasfd\nasdfasdf",
					x:90,
					y:90,
					border:true,
					width:200,
					height:24*3,
					multiline:true,
					type:TextFieldType.INPUT
				},
				{
					size:19,
					color:0xff0000,
					align:TextFormatAlign.CENTER
				});
			
			addChild(aa);
			
			function setTf(tf:TextField,vars:Object,format:Object):void{
				var key:Object;
				for  (key in vars) 
				{
					tf[""+key]=vars[key];
				}
				var tfFormat:TextFormat=tf.defaultTextFormat;
				for  (key in format) 
				{
					tfFormat[""+key]=format[key];
				}
				
				//no way 1:
				//tf.defaultTextFormat=tfFormat;
				
				//no way 2:
				//tf.setTextFormat(tfFormat);
				
				//must :
				tf.defaultTextFormat=tfFormat;
				tf.setTextFormat(tfFormat);
			}
		}
	}
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值