Ok, I have 4 variables. ji, fi, mi and qti1. ji, fi and mi are all input text boxes. qti1 is a dynamic text box, and I want it to display the sum of ji, fi and mi. I made this code
onClipEvent(enterFrame){
_root.qti1=_root.ji+_root.fi+_root.mi;
}
I'm not a great coder, and so I don't know why this is wrong, but instead of adding the numbers together, it just puts them side by side. For example, if: ji, fi and mi are 3, 4 and 5 respectively, it just outputs 345, when it should output 12. ...Help?