Casual Articles
#1 in Business Subscribe Email Print

You are here: Home > Business > Presentation > How to Convert PowerPoint to Flash Manually

Tags

  • private
  • probably
  • actions there
  • function myonkeyupvoid
  • fscommand fscommafullscreentrueto

  • Links

  • Top 5 Tips for College Grads Entering the Working World
  • Buy Disposable Cell Phones
  • US Government Own Worst Enemy
  • Casual Articles - How to Convert PowerPoint to Flash Manually

    Government Job vs. Private Job
    Choosing between a between a government job and a job in the private sector may be a bit difficult. They may both invariably fall broadly into the same category of career. But the significance of the matter arises when candidates are faced with this question at the beginning of their careers.What Influences Candidates Towards Government Jobs?Traditionally, government jobs have been considered safe with no or little threat of job loss, especially when job opportunities in the private sector were not. There was
    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(); }

    Christian Job Search: Humbly Tooting Your Horn
    I've said before that there's no such thing as "Christian job search." There's just job searching that Christians do.Every job seeker I know of has to write a resume, every job seeker has to participate in job interviews, every job seeker has to perform on the job. There's no wiggle room in "every."Christian or not, more often than not you have to "do job search" to get a job.One of the biggest challenges I've faced in helping lots of Christians write resumes is an almost overwhelming reluctance to toot
    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(); }

    Single Mom Manifests Big Business
    THE CIRCUMSTANCES:Single mother of 2 small children finds herself at the end of her marriage. NO post secondary education, no employment history for 5 years. No financial support. One day she witnesses someone painting a window ad onto a retail window and because of her curious nature, she begins to ask several questions: How long does it take to build a display like that (4 large storefront windows)? 3 Hours How much do you get paid? $500.00 To her astonishment she discovered a hidden secret:A
    lash 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(); }

    A New Way to Earn Money - How to Find Business Opportunities
    The most successful businesspersons in the world are not those who were born with money, or who came by it because they won the lottery. The most successful businesspersons are those who knew what to do with the money they had. They knew where to invest the money, how to make it grow, and how to use it to help other people and themselves. In other words, the most successful businesspersons, and perhaps the richest people in the world, know how to handle money because they know how to recognize business opportunities when th 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(); }

    Notable News - It's Not About You!
    You enjoy what you do. In fact, you love your product and want to tell everyone about it. Well, I hate to tell you this, but no one cares!  Think about the last major purchase you made…maybe a car …did you buy it because you met a car salesman who told you how much he loved his work or did you buy it because you would spend less on fuel and maintenance and be able to spend more on eating out, make up or your favourite hobbies. Maybe it's as simple as wanting to feel and look successful. Rather than prough 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(); }

    A Look at Life at Call Centers in India
    While writing a piece about racist attack on call center workers, I felt that I was not doing enough to get into the depth of the matter. Just analyzing the published data and reading report written by someone else did not feel enough. I decided to talk to someone who actually works in a call center. Following is the transcript of our talk. My respondent works at a call center in Pune, India. The answers have not been edited.1) Here in USA we hear about call center workers being abused by callers from USA. They call 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

    HTTP = HTML link (for blogs, profiles,phorums):
    <a href="http://www.casualarticles.com/article/34923/casualarticles-How-to-Convert-PowerPoint-to-Flash-Manually.html">How to Convert PowerPoint to Flash Manually</a>

    BB link (for phorums):
    [url=http://www.casualarticles.com/article/34923/casualarticles-How-to-Convert-PowerPoint-to-Flash-Manually.html]How to Convert PowerPoint to Flash Manually[/url]

    Related Articles:

    The Key To Understanding Broad Market Behavior

    Direct Mail for Bowling Alleys

    Networking Events - 7 Good Questions to Ask

    Bookmark it: del.icio.us digg.com reddit.com netvouz.com google.com yahoo.com technorati.com furl.net bloglines.com socialdust.com ma.gnolia.com newsvine.com slashdot.org simpy.com shadows.com blinklist.com