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


Incorporate Humor in Your Next Speech

Some speakers say, "I could never use humor in my... Read More

Shamus Browns Top 5 Sales Presentation Tips

When its time to give your next sales presentation, here... Read More

Top Ten Tips For Better Business Presentations To Asian Audiences

Audiences around the world are all different. Cultural, social and... Read More

Six Marketing Tips for Trade Show Success

A trade show is an ideal way of showcasing your... Read More

Show the World Your Wares Easily and Inexpensively

You've spent a lot of time preparing your PowerPoint presentations... Read More

Seven Tips for Coping with Pre-Stage Jitters

Whether you need to address large groups or small, familiar... Read More

Problems with the Lecture Format

ALTERNATIVES TO THE LECTURE FORMAT: How often do you use... Read More

How Storytelling Can Grow Your Business

People love stories. We love to hear about other people,... Read More

What Every Manager Should Know About How to Sharpen His Presentation Skills

Regardless of the nature of our job or social standing,... Read More

Nonverbal Communication in Business

There are five key elements that can make... Read More

Special Delivery! Tips for Improving Your Humor

Delivering humorous speeches involves a lot more than simply having... Read More

How You Can Save On Conference Calling

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

Facilitating Panel Discussions

A client recently called to say she was going to... Read More

Preparation for Your Presentations

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

Presentation Skills: Be More Productive Using a Facilitator Mode

There are many definitions for presentations. When you present there... Read More

Dump that Overhead Projector!

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

Develop The Winners Edge Through Conversational Hypnosis

Communication is vital for survival in an age of information... Read More

Presentation Skill Mistakes

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

Is This Thing On?: Keeping Your Audiences Attention

First and foremost, you must deal effectively with your own... Read More

Story Telling As A Tool For Trainers

Once upon a time????."Yeah right, don't tell us a story,... Read More

PowerPoint Presentations: How to Use This Tool More Effectively

Many of us use PowerPoint to convey a message to... Read More

Media Training 101: Where To Look During A Television Interview

Ever had that uncomfortable feeling of not knowing where to... Read More

Move Key Audiences to Actions You Want

How?Try a blueprint like this: people act on their own... Read More

The Secret Language of Money

At a number of business seminars and presentations, I passed... Read More

Just Say No to PowerPoint: Enough is Enough!

Have you ever been slideswiped? You walk into a meeting... Read More

Kvetching Behavior and How it Hinders Success

Kvetching is the Yiddish word for complaining, hand to the... Read More

Present for Success: Simple Strategies to Add Confidence and Credibility to Your Next Presentation

Tomorrow's the day and you're dreading it. You're scheduled to... Read More

Super Preparation ? Keys to Getting a Great Start to Every Presentation

Super Preparation ?Keys to Getting a Great Start to Every... Read More

How to Make Good Use of Your Web Conference Session

Preperation is vital when conducting a successful videoconference session. Thus... Read More

How to Prevent Presentation and Speaking Disasters

I just got back from my whirlwind speaking engagements and... Read More

Quick and Easy Rehearsal Tips

Never rehearse at the last minute. This creates undue tension... Read More

Practice Makes Perfect ? 7 Tips for Making the Most of Your Presentation Practice

Believe it or not, preparation is a better determinant of... Read More

The End is the Beginning

People remember best what you say last. In a presentation,... Read More