What is an Intro Item?
An Intro Item is an Item that appears before the actual Assessment. As the name implies it is used to introduce what follows, give instructions or hints on how to answer the questions and so on. As such, an Intro Item offers additional information to learners before the Assessment begins, especially in the context of online learning where an instructor or proctor might not always be present to answer questions beforehand.
The Intro Item is an unscored Item that is not part of the assessment and will not appear in the report. If you don’t have an Intro Item but show_intro is true, a plain white tile with the start button will appear instead.
Figure 1: an example of an empty Intro Item
How to create an Intro Item
Intro Items are created the same way you would create any other Item in your Activity. Should you be unfamiliar with the process of Item creation please refer to the Basics of Item Authoring page for further information.
Features are the perfect choice if you wish to implement an Intro Item. They do not require scoring or an answer, and they allow the author a great amount of creative freedom. You can choose from various Feature types such as Passage (rich text with or without images), Audio Player or Video Player that start playing as soon as the assessment begins or a combination of different Features. You can also make use of Actions to autoplay your features as soon as the Intro Item loads.
You can have only one Intro Item per Assessment. If you need an explanation or introduction for each Question you can choose to add a Feature or Simple Feature that provides the necessary information.
An example of what an Intro Item could look like is below. It’s a Passage that contains text and images and provides general information for the learners:
Figure 2: an example of an Intro Item
Similarly, an Outro Item can provide helpful information at the end of an Assessment, such as how to proceed after taking the test, when to expect the results or, in an unscored test, to acknowledge the efforts.
Figure 3: an example of an Outro Item
The Outro Item can be implemented in your code just like the Intro Item by adjusting settings in the same way as Intro Items are configured. It can be added as the last item in your item list in a linear Assessment or as an optional outcome in an adaptive Assessment.
Example for an Outro Item in an adaptive Assessment:
Code example 1: configuration for an Outro Item
The Intro and Outro items are enabled by default in the Activity Editor and default Intro and Outro Items are automatically made available to the Activitiy. To use your custom Intro or Outro Item, click on the customize link to select an already created Item.
Figure 4: Customizing Intro and Outro Items
How to change the default text of an Intro Item via label bundles
There are two ways of enabling Intro Items for an Assessment.
1. Changing the default text for an Intro Item via Activity Editor
The Learnosity Activity Editor allows you to customise all your Activities by creating templates. That way, you can also define a standard text for all your Intro Items.
In the Activity Editor, select Player, then click the Customize text labels button. The different options include all Label Bundle settings.
To customise the Intro Item text select Messaging, then 'introItemMessage' and insert the message you want to display.
This is a UI friendly way of changing the text for a single Intro Item. Any changes that have been made are immediately visible in the Preview mode. Similarly, all changes are mirrored in the Activity JSON as well.
NOTE: You must scroll down to the end of the page and hit the Apply button in order to save the changes you have made.
2. Changing the default text for an Intro Item via JSON
The "introItemMessage" key is part of the Assess API label bundle and can be changed in the JSON directly.
Code example 2: changing the default Intro Item text via JSON
The default message can be customised by changing the display text. Label bundles are available in many languages other than English, as well.
How to implement an Intro Item in your Assessment
There are two ways of enabling Intro Items for an Assessment.
- By ticking the box for show_intro in the Activity settings, which will set the value to 'true' and therefore make the Intro Item visible.
- By editing the objects in the custom JSON under the config settings, within the navigation settings, as shown in the sample code:
Code example 3: editing navigation settings in JSON
Next Steps
- If you want to learn more about Initialisation options, see the Items API initialization options for developers.
- Learn how to configure Activity settings.