interactivity in power point

9
Interactivity in PowerPoint USING VISUAL BASIC

Upload: eurythmic

Post on 27-Jul-2015

284 views

Category:

Technology


0 download

TRANSCRIPT

Page 1: Interactivity in power point

Interactivity in PowerPointUSING VISUAL BASIC

Page 2: Interactivity in power point

Set up your slide with the components you want

Invisible shapes for hotspots

Quiz questions and answers

Page 3: Interactivity in power point

Save as a macro-enabled presentation

File > Save As

Page 4: Interactivity in power point

View your developer tab

File > Options > Customize Ribbon

Page 5: Interactivity in power point

Add Visual Basic Code

Developer > Visual Basic

Insert > New Module

Each subroutine (sub) you write will

be a separate macro in your

presentation

Page 6: Interactivity in power point

To add a macro to an shape/text box

Select it

Go to Insert > Action

Choose “run macro” and pick the name of the

relevant subroutine

Page 7: Interactivity in power point

More complicated: adding a score

Variable to keep track of how many correct answers given

Each time an question is answered correctly, this increases by one

Show this value when the user has finished the quiz

Page 8: Interactivity in power point

More complicated: If each question is on a new slide

Moves on to the next slide once they have answered the question

Page 9: Interactivity in power point

More complicated: personalisationDeclare a username variable as a string (text)

Include the username in their welcome messageFind out their name