FILL IN THE BLANK - evaluate answer

Dec 20, 2018

I have a FILL IN THE BLANK question where the accepted answer is: 
TO PREVENT PLUGGING

I'm trying to come up with a list of all the possible variations students could come up with and still be correct, tedious.  And I could easily miss a variation, I can see a complaint coming at some point in the future.

What I'd like to do is evaluate the answer they give to simply see if the word "plug" is in the answer, then accept it as correct if it is.

Can we do that with some sort of javascript?

7 Replies
Daniel Servan

Hi,

You can use Javascript to search for the word "plug"

You can do like this.

var str = "There is a plug in here...";
var n = str.search("plug");

alert(n);// n is equal to 11, if n =  -1 then a word plug not found


You can also use indexOf() function
var str = "There is a plug in here...";
var n = str.indexOf("plug");

alert(n);// n is equal to 11, if -1 then a word plug not found

 

 

Jerry Beaucaire

Hmm, when I publish this slide to test, nothing happens, the TextEntry value never changes.

Here;s my final script:

var player = GetPlayer();

var str = player.GetVar("TextEntry");
var n = str.search("plug");

if(n > 0){
player.SetVar("TextEntry", "TO PREVENT PLUGGING");
}else{
player.SetVar("TextEntry", str);
}

Jerry Beaucaire

So I ended up

  1. abandoning the FILL IN THE BLANK
  2. switching to a TRUE/FALSE with the options hidden from user's view
  3. adding a layer with a text input box large enough for three lines that appears first to the user, the text box is already selected and blinking this way
  4. I used the javascript to evaluate the input box string and if the word "plug" is there, I changed whatever they entered to TO PREVENT PLUGGING
  5. use triggers to evaluate the text now, if it says TO PREVENT PLUGGING, set the hidden options to TRUE and submit.
  6. If it says anything else, set the hidden options to FALSE and submit.

https://360.articulate.com/review/content/9e0d2e6f-f608-4af3-a8f9-087d0b787005/review 

It's working on the review portal, question #5.

Thanks for the assist!

This discussion is closed. You can start a new discussion or contact Articulate Support.