数値ステッパーで動作するように双方向のデータバインディングを取得しようとしています。値からバインドしてOKを表示しますが、GUIを更新してもモデル値は変更されません。どうすればこれを修正できますか?
<?xml version="1.0" encoding="utf-8"?>
[Bindable]
private var val:Number = 2;
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:NumericStepper x="30" y="27" value="{val}"/>
<s:Button x="30" y="58" label="Apply" click="trace(val);"/>