Can I make flash cards with Powerpoint?

  • Thread starter Thread starter Guest
  • Start date Start date
Making a series of flash cards is fairly easy

Make a slide with 1 box for the flash part, and the another for the answer.

Use an animation to make the second box (answer) appear. How to do this
varies according to PowerPoint version. Which do you have?

Add this macro (for how see How do I use VBA code in PowerPoint?
http://www.rdpslides.com/pptfaq/FAQ00033.htm )

=====Start=====
Sub ShuffleFlashCards()

Dim x As Integer
Dim oSld As Slide

For x = 1 To 50
For Each oSld In ActivePresentation.Slides
oSld.MoveTo Int(Rnd * _
ActivePresentation.Slides.Count) + 1
Next oSld
Next x

Set oSld = Nothing

End Sub
=====End=====

Add a third shape, doesn't matter what, but type "Shuffle" into it

Right click on the shape and select Action Setting. On the Action setting
dialog box that opens select On mouse click ... Run Macro ...
ShuffleFlashCards ... OK

Now copy the slide as much as needed and change the "question" and answer"
text.


--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
http://billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
vestprog2@ Please read the PowerPoint FAQ pages.
yahoo. They answer most of our questions.
com www.pptfaq.com
..
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top