im trying to create a form where the user can input their width and height of a printing and the calculator will automatically generate the total feet of the printing.
sorry if my scripting is bad, but it goes a little something like this:
calculator.onEnterFrame = function() {
var heighter:Number = calculator.height1.text;
var widther:Number = calculator.width1.text;
var total:String = heighter+widther;
calculator.Total.text = total+“ft”;
calculator.Price.text = “$”+total*1.50
};
at least i tot it goes something like this anyway.
any advice?
been working on it for 3 days =.=