17 Replies
Jackson Hamner

Some javascript that should work

Number to Text

var player=GetPlayer();
var number = player.GetVar("numberVariable");
var text = number.toString();
player.SetVar("numberVariable", text);

Text to Number

var player=GetPlayer();
var text = player.GetVar("textVariable");
var number = integer.parse(text);
player.SetVar("textVariable", number);
Ashley Terwilliger-Pollard

Hi Ruben,

This thread is a bit older so I'm not certain that folks are still subscribed. I'm not equipped to assist with Javascript, but you may want to share a bit more about what specifically you need to know in terms of next steps? You could also reach out to any users in this forum using the "contact me" button on their profile. 

Zsolt Olah

Mark,

If you can name the number variables as Num1, Num2, Num3, Num4, and Text1, Text2, Text3, etc (it doesn't matter what the name is as long as you distinguish them by a number increasing from 1-30).

Then you can use this:

var player=GetPlayer();

var number = 0;

var text = "";

for (var i = 1; i<=30; i++)

{

number = player.GetVar("Num"+i);
text = number.toString();
player.SetVar("Text"+i, text);

}

Sumrah Khalid

Hello Matthew

I have a slide where I need the students to choose 5 options. Each option has 5 marks assigned to it. Since I need to award marks on each response hence I couldn't rely on Pick Many. 

For this purpose, I created a numeric entry variable 'Score' and assigned a trigger(attached screenshot). This variable adds all the marks based on what option the student has chosen. 

Now I need to reflect the accumulated marks from this custom variable in my LMS, hence I followed the instructions you have outlined by using the How Many survey slide.  But the result is not awarded.

Please help! What am I doing wrong? 

Crystal Horn

Hi Sumrah!  I'm not sure if this is what you're going for, but check out this sample I created.  I had created a "survey" type quiz slide which customized feedback based on what the total score was in the survey.  I added Matthew's twist of using the How Many survey question type to enable the survey score to be reported to the LMS.

I'm attaching the file so you can see the setup.  Hoping that helps!

Jason Morse

It would be Extremely helpful if storyline converted number to string when checking what a var is equal to. example   i have a custom question slide where the user fills in blanks like 4 or 5 per slide. Some have multiple answers that have to be tested for. the client would like the user to be able to say type in 4 or four or 4mm   as the answer BUT storyline will not do this on its own. This also something a less knowledgeable storyline author would have issues figuring out why its not working. 

Leslie McKerchie

Hi Jason,

If you have multiple answers, a fill-in-the-blank may work better for you:

By design, each slide can have one fill-in-the-blank question, but many in the community have created slides with multiple:

Jason Morse

There are multiple text input boxes on screen at once.  example, textinput 1,  with correct answers of 4, four, 4mm.  textinput 2 with correct answers of 6, six, 6mm. 

when doing the actions to to see if the imputed text is is one of those it will see 4, and 6 as not being = to the correct answers as storyline doesnt convert number to string.    it works perfectly fine for questions that do not need to have just a number as a possible answer.

And yes I could just use javascript and do it fully myself but this should be something storyline does on its own. it also will confuse newer authors as to why its not working if they have a limited understanding of how programing actually works.