public void ExerciseScreen_Load(object sender, EventArgs e) { InstructionVideo vid = new InstructionVideo("Pinch.wmv"); vid.ShowDialog(); //this.label2.Text = vid.vidLocation; exercise = new PinchExercise(this); //this.comboBoxHealth.SelectedItem = "No Stroke"; exercise.start(); //add analysis stuff }
public PinchExercise(Debug caller) { exerciseName = "Pinch Exercise"; exerciseDescription = "This exercise is..."; instructions = "Pinch the ball shown on the screen"; //video = new InstructionVideo(); video = new InstructionVideo("Pinch.wmv"); output2 = caller; }