MOOCit Docs
English
English
  • Introduction
  • Getting Started with MOOCit
  • Take Your First Demo Course in Learner View
  • Studio vs LMS
  • Set Your Platform Language
  • Course Development
    • Create a New Course
      • Course Creation Form
    • Course Set-Up
      • Course Pacing and Schedule
      • Course Name, Description and Image
      • Add a Course 'About' Video
      • Additional Course Run Info
      • Prerequisite Course
      • Course Entrance Exam
    • Course Structure
      • Building the Course Outline - Video Tutorial
    • Course Content Visibility and Access
      • Subsection Prerequisites
      • Hiding Sections and/or Subsections
      • Hide a Subsection after Due Date
  • Course Properties
    • Manage Course Visibility
    • Make a Course Private
    • Course Grading Configuration
    • Delete a Course
    • Course Updates
    • Course Handouts
    • Certificate Configuration
    • Modify the Name of a Course (legacy)
  • Course Components
    • Common Problem Type
      • Checkboxes, Dropdown, Numerical & Text input
      • Add Multiple Questions
      • Add an explanation (Show Answer)
      • Hints and Feedback
      • About; Question Title, Header, Prompt & Tips
      • Common Problem Settings
    • Images
    • Advanced Components
    • SCORM file
    • PDF File
    • PDF viewer without download / print option
    • Downloadable Document Button
    • Surveys & Polls
    • Video - Youtube
    • Video - Vimeo
    • Staff Graded Assignment
    • Tables
    • Word Cloud
    • iFrame (Genial.ly, Prezi, etc.)
    • ZOOM Meeting (Dedicated Instance)
    • ZOOM (SaaS Integration)
    • H5P
  • Instructors
    • Manage Course Team
      • Add new team member
      • Add a Discussion Moderator/Admin
      • FAQ
    • Enroll / Unenroll Learners
    • Download Learner List
    • Download Learner Grades
    • Reset Learner Exercise Attempts
    • Email Learners
  • Advanced
    • Discussion Forums
      • Hide discussion forum
    • Configuration of Badges
    • Duplicate a Course (Import / Export a Course)
    • Using Randomized Content Blocks
    • Pointing on a Picture Question
    • Tips and Warnings
    • Learner Cohorts + Content Groups
      • Enabling and Configuring Cohorts
      • Create Cohort Specific Content with Content Groups
      • Assign Cohorts to Content Groups
      • Dividing Discussions by Cohort
  • Rest API
    • API home
    • Enrollments
    • Completion
    • Grades
  • Data + Analytics
    • Opening CSV reports with Excel
Propulsé par GitBook
Sur cette page

Cet article vous a-t-il été utile ?

  1. Advanced

Pointing on a Picture Question

Add a background image, and have your learners click inside a defined area to select the answer.

PrécédentUsing Randomized Content BlocksSuivantTips and Warnings

Dernière mise à jour il y a 3 ans

Cet article vous a-t-il été utile ?

Use the question type 'Image Select' / also known as "image mapped input problem" or “pointing on a picture” to get your learners to find an answer within an image.

This exercise is fun and interactive for your learners, but can be a little more complicated to set-up than the others, so fasten your seatbelt 🏎️ and grab your coffee ☕ ! Follow the instructions below closely, and don't hesitate to contact us (support@moocit.fr) if you need help. 😊

Set-up Image Select Question

  1. Choose the image you want to use, and make sure it is relatively large, and high quality.

  2. Add your image to Studio > Content > Files and Uploads

3. Copy the web URL for your desired background image.

4. In a new tab, open up the Unit where you want to add your question.

5. Select to add a new Problem Component > Advanced > Image Mapped Input

6. The component will appear with a template already in place. Select to 'Edit' the component.

7. You will see the following code for the exercise:

<problem>
    
    <imageresponse>
        <p>What country is home to the Great Pyramid of Giza as well as the cities of Cairo and Memphis? Click the country on the map below.</p>
        <imageinput src="https://studio.edx.org/c4x/edX/DemoX/asset/Africa.png" width="600" height="638" rectangle="(338,98)-(412,168)" alt="Map of Africa"/>
        <solution>
            <div class="detailed-solution">
                <p>Explanation</p>
                <p>Egypt is home to not only the Pyramids, Cairo, and Memphis, but also the Sphinx and the ancient Royal Library of Alexandria.</p>
            </div>
        </solution>
    </imageresponse>
</problem>

8. On line 4 between <p> and </p>, modify your question text.

9. On line 5, replace the URL that appears after <imageinput src="to the URL of your image (copied in step 3). Keep the " " before and after the URL.

10. Also on line 5, you must change the width (width="600") and height (height="638") to that of your image. Ideally, your image width should not exceed 950 pixels.