FlashPPT is about using animation techniques and Flash together in PowerPoint, and also exporting to rich media formats from PowerPoint.
There are many reasons to attain various ends that people go on the path of converting PowerPoint to Flash. And almost a decade after this started, I have to say that I have found no perfect automated solution!
Many products claim to do this, and some do come quite close to perfection. But if they are suitable for one presentation style or purpose, they may not work out as well in another scenario.
And so the search continues!
On this site, I’m going to explore all these products and share my opinions. And your opinions count even more — so feel free to comment on all these products. Maybe, we’ll find the perfect product!
Watch this blog, and keep commenting.
Filed Under:
Add-in, Convert, Flash, PowerPoint
Comments Off on Converting PowerPoint to Flash with Third Party Products
In a previous post, I introduced FlashBack — a PowerPoint add-in that rewinds (and replays) Flash movies in PowerPoint slides.
Here’s a step-by-step tutorial on using the add-in:
Figure 1: FlashBack shows in the Tools menu in PowerPoint.
Figure 1: FlashBack options.
Rewind and play the movie: If you want to just rewind the movie, leave this option unchecked. More often than not, you’ll want to leave this checked. Remember, all your Flash movies in all presentations you play get rewound automatically as long as FlashBack is installed. If you don’t want that behavior to happen, you’ll have to disable FlashBack altogether. Instructions on how you can disable FlashBack can be found here…
Eliminate ‘residual’ image flashing: The last frame in a Flash movie may provide a flicker when it is rewound. This flicker or flashing may happen when you revisit the slide that contains the Flash movie. If you want a solution for this behavior, check this option.
Remember that FlashBack is a machine specific solution, not a presentation specific one. If you want a presentation specific solution, you’ll have to use the manual VBA route…
If you use the VBA route, you must first disable FlashBack…
Filed Under:
Add-in, Flash, FlashBack, Insert, PowerPoint
Comments Off on Using FlashBack
This post will show you how you can download, install, and disable FlashBack, a free PowerPoint add-in that automatically rewinds inserted Flash movies in PowerPoint slides.
Figure 1: Extracted FlashBack files.
Figure 2: Change Security Level to Medium.
And if your Security dialog box does not show the Very High option, don’t worry — all versions of PowerPoint don’t provide that option.
Click OK to get back to PowerPoint.
Figure 3: Your Add-ins dialog box may not be as crowded as mine, but that’s not an issue!
Figure 4: Find FlashBack.ppa, and select it.
Figure 5: The Security Warning box looks a little scary!
Figure 6: FlashBack shows in the Tools menu in PowerPoint.
Note: You may want to change your Macro Security Level back to High or Very High once you finish installing FlashBack.
To see how you can use FlashBack, look here…
Disable FlashBack
You might want to disable FlashBack for a while, especially if you want to rewind your Flash movies manually using VBA. To do that, choose Tools | Add-ins, and uncheck the FlashBack option in the resulting dialog box. Click Close to get back to PowerPoint.
Filed Under:
Add-in, Flash, FlashBack, Insert, PowerPoint
Comments Off on Install and Disable FlashBack
FlashBack is a free PowerPoint add-in from Shyam Pillai, a Microsoft PowerPoint MVP that rewinds a Flash movie so that it plays from the starting frame when shown again in the same presentation. You can learn more about why rewinding is required here…
FlashBack automates a lengthy process that requires some coding in a VBA environment. You can download a free copy of FlashBack from Shyam’s site…
Remember though that FlashBack is machine specific, not presentation specific. If you need to add the rewinding code to a presentation that will be distributed, you should use the VBA route…
Learn how to install and disable FlashBack…
And here’s information on how you can use FlashBack…
Filed Under:
Add-in, Flash, FlashBack, Insert, PowerPoint, Rewind
Comments Off on What is FlashBack?
I already discussed why you would want to rewind your Flash movies, the ones you insert into PowerPoint slides.
Now let me show you how you can do that with a little VBA code. Remember though that this code is dependent on ActiveX controls that are not supported by both the free PowerPoint Viewer on Windows, and PowerPoint on the Mac. So this will only work on PowerPoint 97 or higher for Windows.
Figure 1: The Visual Basic window is where you add code in PowerPoint.
Figure 2: A new module has been added.
Sub OnSlideShowPageChange()
Dim obj As ShockwaveFlash
Set obj = ActivePresentation.Slides(2).Shapes(“ShockwaveFlash1”).OLEFormat.Object
obj.Playing = True
obj.Rewind
obj.Play
End Sub
Figure 3 shows you the main window after the code was added:
Figure 3: Code has been added.
As you can see, the code simply sets the Playing property to true, rewinds the movie, and plays it.
Also, if your presentation contains more than one Flash movie, you’ll need to repeat this process for each movie. However, change the numbering in the 3rd line again after the word ShockwaveFlash, so that you name them ShockwaveFlash1, ShockwaveFlash2, and so on. Then, in the Properties window, give the object the same name in the Name row, which is just under the Custom row (see Figure 4).
Figure 4: Match the object names in the Visual Basic window, and the Property window.
Remember, your macro security settings may stop the VBA code from executing. In PowerPoint, choose Tools | Options | Security | Macro Security, and make sure it isn’t set to High. In addition, coding in the Flash file itself may stop the movie from playing.
I wish to thank Ellen Finkelstein, author of How To Do Everything with PowerPoint 2007 for providing the VBA code used in this tutorial. You can visit Ellen’s site here…
Microsoft and the Office logo are trademarks or registered trademarks of Microsoft Corporation in the United States and/or other countries.