Article

How To Convert PowerPoint To Flash Manually

Topic: SoftwareBy Earl JeffsonPublished Recently added

Legacy signals

Legacy popularity: 1,393 legacy views

Reader rating

Not enough ratings yet

Aggregate average appears after enough eligible reader ratings.

Rate this resource

Sign in to rate this resource.

Sign in to rate this resource

Converting PowerPoint to Flash would absolutely be a good choice to distribute your bulky PowerPoint presentations. You can do the whole PowerPoint to Flash conversion manually or with professional applications.nnFirst, you'll need to prepare the PowerPoint files. 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.nnSecond, 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.nnNext, 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.nnThen, 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.nnFinally, 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."nnAlright, 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.nnfscommand("fullscreen","true")-; To make sure the Stage resizes correctly specify the scaleMode.nnStage.scaleMode = "exactFit"; nnFinally, 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.nnstop(); You'll need to include some functions that will be used frequently to navigate the presentation.nnfunction gotoNextSlide():Void {n if (_currentframe < _totalframes) {n gotoAndStop(_currentframe + 1);n } else {n quit();n }nn}nnfunction gotoPreviousSlide():Void {n gotoAndStop(_currentframe - 1);nn}nnfunction gotoHome():Void {n gotoAndStop(1);nn}nnfunction gotoEnd():Void {n if (_currentframe < _totalframes) {n gotoAndStop(_totalframes - 1);n }nn}nnfunction quit():Void {n fscommand("quit");nn}nnNext, 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.nnvar myListener:Object = new Object();nnmyListener.onKeyDown = myOnKeyDown;nmyListener.onKeyUp = myOnKeyUp; Key.addListener(myListener);nnmyListener.onMouseUp = myOnMouseUp; Mouse.addListener(myListener);-Here are the listener functions.nnfunction myOnKeyDown():Void {n if (Key.isDown(Key.DOWN) || Key.isDown(Key.PGDN)) {n gotoNextSlide();n } else if (Key.isDown(Key.UP) || Key.isDown(Key.PGUP)) {n gotoPreviousSlide();n } else if (Key.isDown(Key.END)) {n gotoEnd();n } else if (Key.isDown(Key.HOME)) {n gotoHome();n }nn}nnfunction myOnKeyUp():Void {n if (Key.getCode() == 27) {n quit();n }nn}nnfunction myOnMouseUp():Void {n gotoNextSlide();nn} If the steps below is too complicated to you, you can try some PowerPoint to Flash converters. Some free office applications like OpenOffice (http://www.openoffice.org) offers the output as SWF file, but without animations and effects. Also you can try commercial converters such as Wondershare PPT2Flash (http://www.sameshow.com/powerpoint-to-flash.html) to output originals with animatinos. After all, these conversion tools can help you convert PowerPoint to Flash automatically without too much coding.

Article author

About the Author

Further reading

Further Reading

4 total

Article

Organizations are starting to scale their cloud native operations. And as they do, the inefficiency of managing dozens of isolated clusters has become an evident problem. As the clusters continue to sprawl, businesses must unite diverse workloads onto shared infrastructure. This is because companies need better resource utilization and centralized governance among other things. But it is imperative to remember that going from a single tenant to a multi-tenant environment need

March 12, 2026

Article

It has been for everyone to see the short product lifecycles and a pressing need for rapid technical scalability that have come to define the modern startup ecosystem. For early-stage companies, the challenge is no longer just conceptualizing a solution. But they must also carry it out with enough precision to withstand high market volatility and fierce competition. We know that internal teams concentrate on core business strategy and fundraising. That still leaves us with th

March 12, 2026

Article

In today’s regulated and data-driven environments, organizations are under constant pressure to ensure that temperature and environmental conditions remain within defined limits. Even small fluctuations can result in product loss, compliance violations, or operational downtime. As a result, many facilities are moving away from manual checks and standalone sensors and adopting comprehensive environmental monitoring solutions instead. An environmental monitor provides rea

March 5, 2026

Article

Organizations have come to rely heavily on large amounts of data in today's competitive markets. But to what end? For starters, to inform strategic decisions and power machine learning models. It goes without saying that the value of these digital assets is completely dependent on the accuracy of the underlying data. So, when data is fragmented or inconsistent across departments, you will obviously have inaccurate reporting and operational inefficiencies at your hands. This c

March 2, 2026