How to Make an Interactive Powerpoint Including a Graded Quiz
- 1). Open a new blank presentation and enter a title and sub-title for your training. Click the "New Slide" button to insert slides and enter instructional text and graphics. Then, set up your quiz on that material.
- 2). Be sure that your security options allow you to run macros. Click the "Microsoft Office" button and click the "PowerPoint options" button. Click the "Trust Center" option then click the "Trust Center Settings" button.
- 3). Click the "Macro Settings" link and then click the "Disable all macros with notification" option. Click the "OK" button twice to close the dialog boxes.
- 4). Press Alt+F11 key to start the VBA Editor.
- 5). From the "Insert" menu, select the "Module" option and insert code below to provide feedback for correct and wrong answers.
Sub Wrong()
MsgBox ("That is wrong. Try again.")
End Sub
Sub Correct()
MsgBox ("That is correct.")
SlideShowWindows(1).View.Next
End Sub - 6). Press Alt+F11 to return to your PowerPoint presentation.
- 7). Save the presentation, saving the macro too.
- 8). Click the "New Slide" button and choose the "Title Only" layout.
- 9). Type the text of the first question in the title placeholder text box.
- 10
From the "Insert" menu, click the "Shapes" button and then click one of the "Action Buttons" options such as an arrow. Drag and draw your shape. From the "Action Settings" dialog box, click the "Run macro" option, select the "Correct" option. You will also see "Wrong" listed as an option. Click the "OK" button. - 11
Right-mouse click on the button. Choose the "Edit Text" option and type the correct answer choice. Copy and paste that button as many times as you need to complete your question slide. - 12
Right-mouse click each incorrect choice button and select the "Hyperlink" option. Next, click the "Mouse Click" tab and from the "Action on click" area, click the "Run macro" radio button and select the "Wrong" macro. Click the "OK" button. Choose the "Edit Text" option and type the incorrect answer choice. - 13
Create additional question slides by repeating these steps. - 14
Preview your presentation (by pressing the F5 key) to ensure it works properly and then save the file as a macro-enabled PowerPoint show that you can distribute to students by email.
Source...