Introduction to Action Script Make a Flash Adding Machine 1. Make a new Flash Movie 2. Rename layer 1 to ITF (for Input Text Fields). 3. Add 2 text fields and change them to TextInput on Properties. These will be the two input fields. 4. Select the top one and, in properties give the first one an instance name of num_1 5. Select the bottom one and give it an instance name of num_2 6. Create a new layer called Artwork. Use the line tool to draw a line under the two entry fields. 7. Create a new layer and name it DTF (for Dynamic Text Field) 8. Drag a new Text Field onto the stage. Set it to Dynamic Text and give it an instance name of resultNum 9. Create a button. 10. Make a new layer and call it button. Drag the button from the Library to the stage. 11. Select the button and add the following action script: a. on(release){ resultNum.text = Number(num_1.text) + Number(num_2.text); } 12. Test with Ctrl+Enter. 13. Can you make modifying the code to do Subtract/Divide/Multiply?