try this one
where
"aa" is a movieClip/button on stage
"You_sponsored" is a input Text field
"average_BV_level1.text" is another inputTextField
"result_is" is a Dynamic text field where I used to display
the multiple result of the above text fields when clicking he
button
"NAN" may display if you use other than numbers.
aa.onRelease = function() {
result_is.text =
Number(You_sponsored.text)*Number(average_BV_level1.text);
};
hope you get it