Adding variables

_root.onEnterFrame = function() {
I am creating a simple form. I have created several variables input through text boxes.
lets say for simplicity
var a
var b
var c
these varibles will be numbers and I want to add them.

total = a+b+c

I do this and it creates a string out of them. How do I make the **** thing add.
Thanks in advance
Cap. P

Number(total) = Number(a) + Number(b) + NumberĀ©

Thanks a lot. One note though, you dont have to add the
Number(total) or you get an error. Just put the variable there.

i figured. :slight_smile: I just got Number() happy.