Difference between revisions of "The AdditionExample Applet"

From WeBWorK_wiki
Jump to navigation Jump to search
Line 12: Line 12:
 
#Create a new ActionScript 3.0 class file and add the code below and save the file as '''AdditionExample.as''.
 
#Create a new ActionScript 3.0 class file and add the code below and save the file as '''AdditionExample.as''.
 
<nowiki>package {
 
<nowiki>package {
import flash.display.MovieClip;
+
import flash.display.MovieClip;
 
public class AdditionExample extends MovieClip {
 
public class AdditionExample extends MovieClip {
 
public function AdditionExample() {
 
public function AdditionExample() {

Revision as of 15:00, 29 June 2011

Introduction

In this example, it is shown how to set up a simple applet for use in a WeBWork problem. The complete code for the applet, as well as the corresponding PG file, can be downloaded from (add download site). The applet, shown below, asks for the sum of two integers. Notice that there are no buttons for checking the answer in the applet, since this will be handled by WeBWork.

AdditionExampleStart.jpg

Initial Setup

The initial code for the applet can be downloaded from (add download site), or it can be created by the following steps.

  1. Create a new applet in Flash and draw the controls as shown in the picture above. The first two text fields are of type Dynamic Text, and the rightmost one is of type Input Text
  2. Name the text fields, respectively, txtFirstNumber, txtSecondNumber and txtResult.
  3. Click anywhere on the stage outside of the controls and, in the properties pane, set Class to AdditionExample.
  4. Create a new ActionScript 3.0 class file and add the code below and save the file as 'AdditionExample.as.
package {
        import flash.display.MovieClip; 
 	public class AdditionExample extends MovieClip {
 		public function AdditionExample() {
 			//The following statments are used just for testing the applet
 			//offline, and should be commented out in the online version.
 			//When used in a WeBWork context, these are set by setConfig()
 			txtFirstNumber.text = "9";
 			txtSecondNumber.text = "7";
 		}
 	}
 }