How to Convert PowerPoint to Flash Manually

Converting PowerPoint to Flash would be absolutely a good choice to distribute your bulky PowerPoint Presentation. You can do the whole PowerPoint-to-Flash conversion manually or by related softwares.

First, you'll need to prepare the PowerPoint document. Make sure you are not using any complicated gradients or animations. These will be interpreted poorly when they are brought into Flash. Also, make sure there are no objects that fall outside the confines of the slide area.

This will ensure that all the slides align correctly when they are imported to Flash. Now, save a copy of your presentation without any background images. You may want to also choose a contrasting background color to easily see the content of each slide. You all import the background images into Flash at a later time.

Second, choose File > Save As... from your PowerPoint document and save the presentation as a Windows Metafile (*.wmf). This will save your entire presentation as a sequence of files. WMF files keep all text.

Next, create a new Flash Document and resize the Stage to 720 x 540. Change the background color to black. Choose File > Import > Import to Stage... and import the first WMF file. When asked to import all of the images in the sequence, choose Yes. This will place each slide from your presentation onto a sequence of frames.

Then, create a new layer under the slides layer and import the images to use for your background. You'll probably need two images, one for title slides and one for the regular slides. Now it's time for some manual labor. You'll need to go through every frame of the movie and delete the solid background shape from your slides layer. Once this is complete, you should see the content of each slide with the correct background image behind it.

Finally, add a frame to the end of your movie. Place some static text on that frame that says something like "End of slideshow, click to exit."

Alright, now it's time to move on to some ActionScript. Create a new layer for your actions. There are a few statements you'll need to include right away. First, you want this movie to play full screen so add an fscommand. fscomma("fullscreen","true");To make sure the Stage resizes correctly specify the scaleMode.

Stage.scaleMode = "exactFit";Finally, you don't want the movie to begin playing through all the slides right away before the user starts clicking, so add a stop function. stop();You'll need to include some functions that will be used frequently to navigate the presentation.

function gotoNextSlide():Void {

if (_currentframe < _totalframes) {

gotoAndStop(_currentframe + 1);

} else {

quit();

} }

function gotoPreviousSlide():Void {

gotoAndStop(_currentframe - 1); }

function gotoHome():Void {

gotoAndStop(1); }

function gotoEnd():Void {

if (_currentframe < _totalframes) {

gotoAndStop(_totalframes - 1);

} }

function quit():Void {

fscommand("quit"); }Next, we need to handle all the keyboard and mouse events so that the

user can navigate through the slides. We'll do this by creating a new listener object. var myListener:Object = new Object(); myListener.onKeyDown = myOnKeyDown; myListener.onKeyUp = myOnKeyUp; Key.addListener(myListener); myListener.onMouseUp = myOnMouseUp; Mouse.addListener(myListener);Here are the listener functions. function myOnKeyDown():Void {

if (Key.isDown(Key.DOWN) || Key.isDown(Key.PGDN)) {

gotoNextSlide();

} else if (Key.isDown(Key.UP) || Key.isDown(Key.PGUP)) {

gotoPreviousSlide();

} else if (Key.isDown(Key.END)) {

gotoEnd();

} else if (Key.isDown(Key.HOME)) {

gotoHome();

} }

function myOnKeyUp():Void {

if (Key.getCode() == 27) {

quit();

} }

function myOnMouseUp():Void {

gotoNextSlide(); }

If that's too complicate to you, you can try some PPT to SWF software, like SameShow PPT to SWF Converter, MelodyPPT, Arbicate etc, all of them can help you convert PowerPoint to Flash with cool effects.

http://www.sameshow.com

SusanZheng writes, teaches, trains and consults on business and professional presentations and eCommerce related matters. For more information PPT to SWF Converter visit http://www.sameshow.com

In The News:


pen paper and inkwell


cat break through


27 Tips For An Effective Presentation

So you're not a professional speaker. That's no excuse for... Read More

The Ten Essential Tips On Writing A Powerful And Persuasive Presentation

Have you ever had to give a speech?Do you remember... Read More

Plasma Screen Hire ? What Do You Need to Know for Presentations

How many people will need to see the screen? A... Read More

Tech Tips: PowerPoint Keyboard Shortcuts for PowerPoint Slide Shows

Whether you use a mouse or a remote control to... Read More

Creating Your Presentation Success With a Positive ?I CAN? Attitude

According to the Lamalle Report on Top Executives of the... Read More

A Discussion about Facilitation Skills

Interview with Julia Apple-Smith, Manager of Employee Development at Sauer-Danfoss... Read More

Presentation Skill Mistakes

Last week my husband and I attended an awesome 4... Read More

Preparation for Your Presentations

(Excerpted From the Jim Rohn Millennium Weekend Event)Persistence in your... Read More

The Right Speaker Makes a BIG DIFFERENCE

MORE and more corporations in Malaysia have awoken to the... Read More

Your Unique Point of View

I had a chance to go to one of those... Read More

Rise Above Cattiness

Cattiness is something no one ever wants to be accused... Read More

Business Presentations - Use Power Pitching - Get the Personal Edge

Whenever and whatever you're pitching, dozens of factors will figure... Read More

Clear Communication: The Benefits and How to Achieve Them

Communication is a complex and often difficult process for both... Read More

How You Can Save On Conference Calling

In recent years, companies have recognized the need to expand... Read More

Powerful Presentations: How to Write and Deliver a Presentation to Remember

If the mere thought of standing up in front of... Read More

Painless Presentations

Did the "Painless" part of the title get your attention?Speaking... Read More

How to Convert PowerPoint to Flash Manually

Converting PowerPoint to Flash would be absolutely a good choice... Read More

Present Your Message with Power and Pizzazz

If you're ready to kick your career or business up... Read More

The Presentation After the Presentation

Allowing the audience to ask questions after your presentation is... Read More

Dump Your Speeches For Leadership Talks

The CEO of a worldwide business asked me to help... Read More

Too Many Choices - Dont Confuse Your Customers

Conventional wisdom is that the more choices customers have, the... Read More

Choosing the Right Work Shirts for Your Small Business

Company attire says a lot about your business philosophy to... Read More

How to Teach: Lecture vs. Discussion

WHEN ONLY A LECTURE WILL DO: Under certain circumstances, of... Read More

Building a Trade Show Display

If you are taking your newest products to a trade... Read More

Can Stage Presence be Learned?

What is stage presence? Can it be learned?There are, undoubtedly,... Read More

Death by PowerPoint!

The most critical job of a manager, when you boil... Read More

Tough Talk: Bad News Delivered the Right Way

Communicating Bad News The Right WayIt's the rare executive who... Read More

Give Your Audience Something to Talk About

There is an old saying: "The first thing to do... Read More

Ancient PowerPoint Secrets: Ask Your Grandma!

Yes, there are ancient PowerPoint secrets...secrets your grandmother knows and... Read More

Dump that Overhead Projector!

What is it about overhead projectors that causes us to... Read More

Watch Out For Power Thieves

"I'm not an expert on this topic, but . .... Read More

Using Your Audience to Your Advantage

Regardless of what response technique may be convenient in a... Read More

Qualities of Good Communication

Webster's Dictionary defines communication as "a giving or exchanging of... Read More