ok I am having this problem. I am making this bank which displays money in the bank and money in your pocket. so i have two variables:
code:

money // pocket money
bank_amm // bank money


and when the player wants to withdraw I allow a input text box with a var name as "withdraw" and they type in the number of dollars they want to withdraw. So once they type a number and hit ok(button), this is what I type in its properties:
code:

on (press) {
_root.money += withdraw;
_root.banl_amm -= withdraw;
}


everything works except when I try and add the ammount to _root.money it just takes the number in money and then number in withdraw and puts them next to each other.For example:

my money is 400
if I type in 300 in the withdraw my money variable turns into 400300.

I can't figure out what I did wrong and I know once i realize it, I am going to feel stupid. Please help.