Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes...

12
Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes with text to create a static/manual score board

Transcript of Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes...

Page 1: Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes with text to create a static/manual score board.

Team One

Team Two

Team Three

Team Four

Team Five

Team Six

Team Seven

Team Eight

1

Combine text boxes with text to create a static/manual score board

Page 2: Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes with text to create a static/manual score board.

Timer Bar

Sorry! You’re time is up!

2

See how-to video

Page 3: Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes with text to create a static/manual score board.

Use popup boxes to apply the contiguity principle when combing text & graphics

Place a ‘no fill’ action button over graphic image, group them, then animate the grouped button with emphasis

Pop-up Boxes

3

Page 4: Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes with text to create a static/manual score board.

5045

25

15

10

055

75 1065

Spin wheel

4

Page 5: Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes with text to create a static/manual score board.

Drag & Drop (uses the dragdrop macro – does not work on ppt 2007+)

5See introduction to writing macros in Visual Basic in MS Office applications at http://www.steverindsberg.com/pptlive/

Right mouse click on a game piece and select Hyperlink. You will see that click has been assigned to run the macro named “dragdrop”. This macro does NOT work in Powerpoint 2007+.

However, you can move pieces by viewing slide in edit mode.

Page 6: Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes with text to create a static/manual score board.

Using the Exit animation following every mouse click on a specific square

6

Page 7: Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes with text to create a static/manual score board.

100 99 98 97 96 95 94 93 92 91

81 82 83 84 85 86 87 88 89 90

80 79 78 77 76 75 74 73 72 71

61 62 63 64 65 66 67 68 69 70

60 59 58 57 56 55 54 53 52 51

41 69 68 67 66 65 64 63 62 50

40 39 38 37 36 35 34 33 32 31

21 22 23 24 25 26 27 28 29 30

20 19 18 17 16 15 14 13 12 11

1 2 3 4 5 6 7 8 9 10

Drag & drop

7

Right mouse click on a game piece and select Hyperlink. You will see that click has been assigned to run the macro named “dragdrop”. This macro does NOT work in Powerpoint 2007+.

However, you can move pieces by viewing slide in edit mode.

Page 8: Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes with text to create a static/manual score board.

Drag & Drop

8

Right mouse click on a game piece and select Hyperlink. You will see that click has been assigned to run the macro named “dragdrop”. This macro does NOT work in Powerpoint 2007+.

However, you can move pieces by viewing slide in edit mode.

Page 9: Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes with text to create a static/manual score board.

10

Wrong answer

Reset score

The action buttons in this slide use the Visual Basic Macros (see below) to change the score displayed in the scorebox. Reveal developer menu option. Then select Developer/Macros/Edit to see macros in the Visual Basic Editor

Sub pointSubstract() score = Val(ActivePresentation.SlideShowWindow.View.Slide.Shapes("scorebox").TextFrame.TextRange.Text) ActivePresentation.SlideShowWindow.View.Slide.Shapes("scorebox").TextFrame.TextRange.Text = score - 1End SubSub pointAdd() score = Val(ActivePresentation.SlideShowWindow.View.Slide.Shapes("scorebox").TextFrame.TextRange.Text) ActivePresentation.SlideShowWindow.View.Slide.Shapes("scorebox").TextFrame.TextRange.Text = score + 1 If score => 10 Then MsgBox "You win!"End SubSub Resetscorebox() ActivePresentation.SlideShowWindow.View.Slide.Shapes("scorebox").TextFrame.TextRange.Text = 0End Sub

To assign a name a textbox , click Home/Select/SelectionPane. Select the object you wish to assign a name, and double click that object listed in the Selection pane to insert the object’s new name.

Code written by Allan Jeong, February 2010

Learn how to write macros in Visual Basic in MS Office applications at http://www.steverindsberg.com/pptlive/

Score box

9

Right answer

Yes

Page 10: Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes with text to create a static/manual score board.

Place Your Multiple Choice Question Here

Which Answer Below is Correct? - Robie Knows!

Robie Says – Try Again

Robie Says – Try Again

Robie Says – Try Again

Robie Says – Great Job!

Incorrect Answer3

Incorrect Answer1

Incorrect Answer2

Correct Answer

NextBack 302928272625242322212019181716151413121110987654321

10

Page 11: Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes with text to create a static/manual score board.

Roll DieRoll Die

Roll Dice (not working)

11

Page 12: Team One Team Two Team Three Team Four Team Five Team Six Team Seven Team Eight 1 Combine text boxes with text to create a static/manual score board.

3

23

0

Roll Dice (not working)

12