Wednesday, June 25, 2008

Convert PowerPoint to Flash with Simulations

As everybody knows that, many times the most of the training courses is to introduce the software and give an overview of its features or basic uses. Many experts like to call it "show and tell" training. PowerPoint integrates simulations is ideal for the software or computer-based training and presentations, it could significant enhance the presentation and training content, and also it could make the presentation and training content more interactive and effective. PPT2Flash Professional enables users to insert the simulations created by Wondershare DemoCreator.

Wondershare Simulation Authoring Tool - DemoCreator records the activities when software running and then shows how the applications and systems work. Presenter is enabled to add some balloons, narrations to make the presentations and training more effective and animated. Learn more about DemoCreator >>

Here is a sample of how PPT2Flash Pro works with simulations. Click to view the sample>>

The flash simulations created by DemoCreator could be imported to PowerPoint with PPT2Flash Professional. The step-by-step tutorials as follows, please kindly check!

Create Simulations with Wondershare DemoCreator

1. Download a free trial of DemoCreator. And then run it, record the computer on-screen activities and add some balloons, buttons, animations, narrations and highlight click zones to make the simulations more interactive and animated.

2. Publish the simulations to Flash format. Create the simulations by DemoCreator, and then publish the simulations as flash or avi format.

Import Simulations to PowerPoint with PPT2Flash Pro

1. There is an “Insert Flash” button on PPT2Flash Professional Menu after installed it. Presenters could insert the flash file created by DemoCreator from local disk just by click this button.




2. Manage Flash Files for every slide. PPT2Flash Pro’s flash manager lists the flash files for every slide.

3. Move and resize the flash file and make it work with other slides.

Click to Learn more about PPT2Flash Professional>>

Click to Learn more about DemoCreator>>

Wednesday, June 4, 2008

Rapidly Spread Web Presentations and Reach to Thousands of Prospective Customers

Is your sales force spread too thin and you can't reach hundreds of prospective customers because your sales force can only make a limited number of formal presentations each week and the cost of visiting those customers exceeds your travel budget? What if every sales person in your organization could reach out to ten (10) times the number of customers through a detailed video presentation, duplicating what each would do if they were physically in front of the customer? If your product sells itself and the only limitation is exposure, Wondershare PPT2Flash Professional provides the solution.

"PPT2Flash Professional is a breakthrough for people who want to rapidly enhance their web presentations and e-learning courses with interactivity but don’t have the time, money or skills for complex programming or high-end visual design," says Wondershare eLearning Division President Black Jack. "PPT2Flash Professional’s intuitive, easy-to-follow templates and options now allow anyone to create visual, stunning, Flash-based interactive content from PowerPoint in minutes."

June, 2008 -- Wondershare software announced the launch of PPT2Flash Professional 5.0, an easy-to-use tool that allows anyone to create professional, compelling learning content with stunning visual quality, without the need for expensive design or programming.

Multimedia Presentations
PPT2Flash Professional’s integration of videos, narrations, flash movies and music enable the presenter to embed the corporate video, multimedia production and multimedia case to live up the content and make a powerful impression on their audience.

Presentations with Presenter’s video and audio
PPT2Flash Professional provides over 5 template players with company logo, presenter’s video and audio to enhance the interactivity of the presentation and training content. It could make the presentations and training would do if the presenter was physically in front of the customer.


Simulations and Quizzes Integration
Simulation embodies the principle of "learning by doing" -- to learn about the system we must first build a model of some sort and then operate the model. The Integration with simulations is ideal for the interactive software or computer-based training and presentations. PPT2Flash Professional enables users to insert the simulations created by Wondershare DemoCreator.

Feedback on performance is a critical part of a learning environment and assessment is one of the most important activities in presentation and training. The survey is ideal for the design the presentation and training courses, and the assessment could help the presenter and teacher to control the effect on the training and learning. PPT2Flash Professional enables users to insert the quizzes created by Wondershare QuizCreator just by one click.

Pricing and Product info
Price of PPT2Flash Professional: $199.95 (25% OFF for non-profit and academic organizations).
Product Page: http://www.sameshow.com/powerpoint-to-flash-pro.html
View samples: http://www.sameshow.com/powerpoint-to-flash/samples.html

About Wondershare Software
Wondershare Software is an industry-leading learning and training software application provider. Wonder share’s innovative tools for rich media content development quiz and test authoring, simulation creation and streaming video design let end users without technical skills to create content for web publishing, online education, and business presentation.

Thursday, May 29, 2008

New PowerPoint to Flash Converter will be released in this week!

News from Wondershare Blog, after about 2 months of development, Wondershare will release the new PowerPoint to Flash converter - PPT2Flash Professional 5.0, which was upgraded from V4.8 and got big progress on conversion quality of text, images and SmartArt. The new version of PPT2Flash Professional will be released in this week.

Click to Learn more about it>>

Click to view sample videos>>

Monday, May 5, 2008

How to convert PowerPoint to Flash Manually

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.

First, 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.

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."

Try Wondershare PPT2Flash for Easy PowerPoint to Flash Conversion>>

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.

fscommand("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 <>

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 the steps below is too complicated to you, you can try some PowerPoint to Flash converters. Some free office applications like OpenOffice offers the output as SWF file, but without animations and effects. Also you can try commercial converters such as Wondershare PPT2Flash Pro to output originals with animatinos. After all, these conversion tools can help you convert PowerPoint to Flash automatically without too much coding.

Learn more about PPT2Flash Pro: http://www.sameshow.com/powerpoint-to-flash-pro.html