1

我正在对表单中的某些字段值进行一些编程验证,Actionscript 中是否有任何方法可以像验证器那样以红色突出显示该字段?

4

3 回答 3

5

您只需要在程序验证错误上设置 errorString 属性

<s:TextInput errorString="error string value" />
<mx:TextInput errorString="error string value" />
于 2012-04-22T21:31:59.690 回答
2

使用:

var textField:TextField = new TextField();
addChild(textField);

要突出显示 AS3 中的背景:

textField.background = true;
textField.backgroundColor = 0xFFF000;

要在 AS3 中突出显示边框:

textField.border = true;
textField.borderColor = 0xFFF000;

要关闭它,只需将适当的布尔值设置为false.

于 2012-04-22T21:15:19.093 回答
1

尝试使用辉光滤镜:

<fx:Declarations>
    <s:GlowFilter id="gf" color="#ff0000" alpha="1" blurX="5" blurY="5" />
</fx:Declarations>

<s:TextInput id="ti" width="80%"/>
<s:ToggleButton id="btn" label="glow on/off" click="ti.filters = btn.selected?new Array(gf) : null;"/>
于 2012-04-23T00:30:44.830 回答