0

単純なロジックまたは単純なコードがありません。http://activeden.net/item/loan-payment-calculator-with-slider-as3/897727のようなフラッシュas3でローン計算機を作成したい

行を横切ってドラッグされたオブジェクトのxを出力するフラッシュファイルがあります。

scrubber.x = _point.x;
tf1.text = String(_point.x);

私がやりたいのは、xに応じて一定量(たとえば1から20000)を印刷することです。基本的なas3が欠落していることは知っていますが、他のフォーラムでは何も見つかりませんでした。

4

1 に答える 1

0

パーセンテージ式を使用する必要があります

var a:Number = 320;//this is the amount on the line - you have to calculate it taking the position of the scrubber in relation to the position of the line
var b:Number = 640;//this is the 100%, 640 is the example and it will be the width of your "line"
var max_loan:Number = 10000;
var p:Number = a/b;//this is the percentage value, here it will be 320/640=0.5

var available_loan:Number = max_loan * p;//this is what you will display, here it will be 5000;
于 2013-01-08T08:08:46.953 に答える