私はFlash Builderを初めて使用しましたが、これまでのところすべてがうまくいきました。私が達成しようとしているのは、合計を計算する5つの数値入力フィールドを使用することです。まず、これは私が開発しようとしているモバイルプロジェクトです。私はすでにUIを作成しています。私はこれらの数値フィールドを使用して、その下の合計を計算するだけの助けが必要です。Show A Flash Builder 4.6の数値入力フィールドを使用したモバイルプロジェクト
0
A
答えて
0
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" title="Transaction" xmlns:components="components.*"
viewDeactivate="callout.close()"
xmlns:mx="library://ns.adobe.com/flex/mx">
<fx:Declarations>
<s:RadioButtonGroup id="PaymentMethod"/>
<components:MyCalloutComp id="callout" height="200" close="location.text=event.data" verticalPosition="after"/>
</fx:Declarations>
<s:Label x="17" y="15" color="#1294E7" fontSize="18" fontWeight="bold" text="Method of Payment"/>
<s:RadioButton x="291" y="46" label="CREDIT CARD" groupName="PaymentMethod"/>
<s:RadioButton x="11" y="46" label="CASH" groupName="PaymentMethod"/>
<s:RadioButton x="144" y="47" label="CHECK" groupName="PaymentMethod"/>
<s:Label x="26" y="90" text="Card Type"/>
<s:Button x="686" y="413" width="82" label="Print"/>
<s:Button x="800" y="413" width="96" label="Process"/>
<s:TextArea x="25" y="175" height="38" maxChars="7"/>
<s:Label x="25" y="159" text="Drivers License #"/>
<s:TextInput softKeyboardType="number" x="616" y="34" width="175"/>
<s:TextInput softKeyboardType="number" x="847" y="33" width="154"/>
<s:TextInput softKeyboardType="number" x="616" y="106" width="175"/>
<s:TextInput softKeyboardType="number" x="847" y="103" width="154"/>
<s:TextInput softKeyboardType="number" x="616" y="180" width="175"/>
<s:Label x="638" y="17" text="Towing Charge"/>
<s:Label x="870" y="16" text="Mileage Charge"/>
<s:Label x="656" y="88" text="Labor Charge"/>
<s:Label x="849" y="86" text="Extra Person Charge"/>
<s:Label x="636" y="162" text="Special Equipment"/>
<s:TextInput softKeyboardType="number" x="847" y="178" width="154"/>
<s:Label x="867" y="160" text="Storage Charge"/>
<s:Label x="800" y="264" text="Subtotal"/>
<s:Label x="815" y="311" fontSize="19" fontWeight="bold" text="Total"/>
<s:TextInput softKeyboardType="number" x="262" y="106" width="320"/>
<s:Label x="265" y="89" text="Credit Card Number"/>
<s:Label x="422" y="159" text="Expiry Date"/>
<s:TextArea x="622" y="321" width="139" height="38"/>
<s:DateSpinner x="295" y="274"/>
<s:TextInput id="location" x="22" y="107" width="205" editable="false" enabled="true"
focusIn="callout.open(this.location,true)" text="Select..."/>
</s:View>
0
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
minWidth="955"
minHeight="600">
<s:layout>
<s:VerticalLayout />
</s:layout>
<fx:Script>
<![CDATA[
import spark.events.TextOperationEvent;
[Bindable]
protected var total:Number = 0;
protected function inputChangeHandler(event:TextOperationEvent):void
{
var n:Number;
total = 0;
n = Number(input1.text);
if (!isNaN(n))
total += n;
n = Number(input2.text);
if (!isNaN(n))
total += n;
n = Number(input3.text);
if (!isNaN(n))
total += n;
n = Number(input4.text);
if (!isNaN(n))
total += n;
n = Number(input5.text);
if (!isNaN(n))
total += n;
}
]]>
</fx:Script>
<s:TextInput id="input1"
change="inputChangeHandler(event)" />
<s:TextInput id="input2"
change="inputChangeHandler(event)" />
<s:TextInput id="input3"
change="inputChangeHandler(event)" />
<s:TextInput id="input4"
change="inputChangeHandler(event)" />
<s:TextInput id="input5"
change="inputChangeHandler(event)" />
<s:Label text="{total}" />
</s:Application>
+0
のスクリプトを提供することができますmxmlのための私のUIに? –
+0
ヘイ・ジェイソンはスカイプを持っていますか? –
関連する問題
- 1. キャプティブビルドFlash Builder 4.6の問題
- 2. Flash Builder 4.6ネイティブ拡張エラー
- 3. Flash Builderの4.6/Flexの文字列アンシリアライズ
- 4. eclipse/Flash Builderを使用して未使用のソースコードファイルを削除します。4.6
- 5. Flash Builder 4.6のsqliteデータベースの場所
- 6. Flash Builder 4.6でデバッグ用のブラウザが起動しない
- 7. パッケージ化Flash Builder 4.6デスクトップアプリケーションとしてのモバイルアプリケーション(エアランタイム付き)?
- 8. Flash Builder 4.6でswcライブラリの相対パスを使用する方法
- 9. Flash Builder 4.6はLZMA圧縮SWFを作成しますか?
- 10. Flash Builder 4でグローバル変数を使用
- 11. FlexモバイルプロジェクトまたはActionScriptモバイルプロジェクト?
- 12. Flash Builder 4.6。 IOSのモバイルアプリのサイズを縮小する方法
- 13. Flash Builder 4.5.1のモバイルプロジェクトのメタデータの時間制限を埋め込む?
- 14. Windows 7(32ビット)にAdobe Flash Builder 4.6をインストールできない
- 15. AIR for mobile(Flash Builder 4.6)のiOSユーザ名+パスワード接続ボックスエミュレーション
- 16. Flash Builderプラグイン
- 17. Flash Builderの変数
- 18. Flashプロジェクト用Flash Builder:ワークスペース
- 19. Flash Builder 4.6のstage.stageWidthがAndroidで動作するFlexを使用していないのはなぜですか?
- 20. 変数が変数に入力値を格納し、入力フィールドをリセットした後、入力フィールド
- 21. Flashbuilder 4.6の入力領域の動的グリッドを作成する4.6
- 22. Flash Builder 4.6は、常にGoogle Chromeで空白のhtmlページを表示します
- 23. 例外の行番号を使用したFlash Builderのデバッグ
- 24. Flash BuilderのコンポーネントFlash Builderの4.6試用版で、私はMXMLアプリケーションなどの基本的なチュートリアルを実行しようとしてい
- 25. Flash Builder for PHPのモバイルアプリケーションでFXGを使用したスプラッシュ画面
- 26. FluorineFxを使用したFlash Builderと.NETの統合
- 27. Hudsonを使用したFlash Builder ASプロジェクトのビルド
- 28. 角度リピータを使用した複数の入力のアラート入力値
- 29. Flash Builder 4.5でtrace()コマンドを使用
- 30. AngularJS - 入力フィールドをフィラーとして使用し、入力フィールドとして同時に使用する
あなたはUIがモバイルプロジェクト用のタブ付きナビゲーションを使用しているスクリプトは、ジェイソンはあなたが私を与えたこの答えは、私がアプリケーションファイルを作成する必要があるだろうか、私はちょうどこれを追加するUI – mgraph