Info |
---|
For an overview of Resources, click here. |
Panel | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
Deep Learning on Resources is found in Motive Academy. Click here to see the course this lesson is in. |
Table of Contents | ||||
---|---|---|---|---|
|
Overview
Storyflow has 4 different kinds of assessment items that you can use to track training results. As the author, you decide what the criteria for these various outcomes are. You will find these under the Resources tab:
...
The Completion Assessment will dynamically update as the learner proceeds through the scenarioScenario. This is accomplished by creating an assessment item that has a variable representing the value, then change the value after certain events occur.
...
If so, you must use a User Report resource in conjunction with this resourceResource. See an example of scripting this at the bottom of this article.
...
If you are using an LMS to track training result, many of them require a Scenario Result resource be added to the scenario Scenario to indicate that the scenario Scenario is complete. Scenario result tracks whether the entire scenario Scenario was completed and whether the learner was successful (criteria for completion and success are determined by you). We have not added a Scenario Result to this assessment scriptScript, but be sure to ask Motive Support about it if you are using an LMS or are interested in learning more about assessments.
Required Fields
...
Field Name | Description |
---|---|
Result | For this type of |
Resource there are two possible results - Complete or Incomplete. |
Optional Fields
Field Name | Description |
---|---|
Title | Title of the Assessment Item. Each Assessment Item typically represents a task the learner will complete. When a User Report is used in conjunction with this then each Assessment Item title will be a line item with the corresponding result. While the title field is not required, it is highly suggested. The User Report will have no context without them: Example with Titles: Example without Titles: |
Description | Descriptive information about the Assessment. |
Feedback | This is generally used to give the learner more context for their result. |
Events
Example In the Headset
In the Motive Lab, we’ll look at an example of using the Completion Resource. We are going to track when each task the learner is assigned is complete.
Open the script Script (typically this is a stand alone “Assessment” scriptScript)
In a frame Frame I’ve titled “Assessment Items”, drag and drop in Completion Resources for each task you want the learner to complete. I’m going to add three.
Now I will add titles to each resource Resource that correspond to the names of the three tasks the learner has to complete:
Put on PPE
Clean up tools
Put away paint supplies
Clean up spill
Optionally, you can add text to the “feedback” section. This is generally used to give the learner more context for their score/result.
...
In the Variable column, I’ll set each to “Incomplete”:
...
Now I need to create frames Frames where I will set the completion result to true.
I’ll create three top level frames Frames named after each task:
...
In the “Put on Nitrile Gloves Complete” frameFrame, I’ll add the Event that fires when the learner has donned the gloves into the Conditions field (note, this event is created in the script Script that has the tasks the learner is complete. It is a different script Script than the one we are working in):
...
Now I’ll do the same with the Goggles and Lab Coat frames
Next, I will add the variables Variables to the frames Frames so that we can change the value from Incomplete to Complete.
I’ll open the “Put on Nitrile Gloves Complete” frame Frame and drag and drop the variable Variable I created above into the Variables frame
I’ll choose the “Complete” value from the dropdown:
...
Now I’ll do the same in the other two framesFrames
Until now, none of the authoring you have done in the script Script creates anything the learner can see. The results tracked so far would get reported back to your LMS or Motive’s Launch service. If you want the learner to be able to see the results in the headset, you need to create a User Report.
Create a new top-level frame Frame in the Assessment Script called “Report” by using + icon
Drag and drop a Screen Message Resource (Playable) into the Resources pane of the frame to indicate that the scenario Scenario is complete (rather than just jumping right into the results)
Add title - Scenario Complete
Add text - “Great work! You have completed donning the PPE. Click OK to see how you did.”
...
Now I’ll create a new child frame Frame that opens when this Screen Message closes
Drag and drop a User Report resource into the Resources pane of the new frame Frame
Under “Report Items” I will add the three tasks that I want the learner to complete:
...
Then they will see the report showing the Completion Resources:
...