Take two inputs and do math then output to a box...

This sounds easy enough.

I am just trying to take 2 native.newTextField inputs and multiply them together and output the result to another box.

[lua] numericField = native.newTextField( 225, 60, 75, 36, fieldHandler)
numericField.inputType = “default”
numericField.text = “”
numericField.font = native.newFont( native.systemFontBold, 24)
numericField2 = native.newTextField( 225, 110, 75, 36, fieldHandler)
numericField2.inputType = “default”
numericField2.text = “”
numericField2.font = native.newFont( native.systemFontBold, 24)
result = numericField.text * numericField2.text
numericField3 = native.newTextField(225, 150, 75,36, fieldHandler)
numericField3.text = result

[/lua] [import]uid: 18783 topic_id: 11328 reply_id: 311328[/import]