Convert PPT in seperate SWF´s

Hi there!
I hope anybody of you can help me!
I have to build up a web application on which you can select
a PPT from your local harddrive and then the PPT should be
converted into seperate SWF´s.
For example: if the user has a PPT with 10 slides, the output
should be 10 swf´s.
Thanks,
Anton

I found this one
http://ppt2swfsdk.com

Similar Messages

  • Converting PPT to an eModule

    I'm a new user and have worked through two Captivate books.
    My first project is converting PowerPoints to an eModule, and I
    have found the basic information covered in the books isn't
    specific enough to answer my eModule questions. Are there any
    tutorials that are recommended? Basic guidelines that I should
    follow? For example, what resolution should I use and what is the
    best way to record the PPT animations?
    Many thanks!

    I just noticed this post slipped through the cracks somehow.
    Sorry! Perhaps a part of the reason was that others didn't know how
    to answer because your questions are too subjective and/or general
    in nature. Let me ask a few questions to try to narrow your
    questions to something we can get a grip on, ok?
    What is an
    eModule? I haven't heard or seen that exact terminology so
    am wondering if it has to do with some specific 3rd party software,
    or is your own internal term for electronic-learning(?)
    You said you have "
    worked through two Captivate books". Which ones? There is no
    sense in me recommending what you have already completed, and
    frankly, I am only aware of one book that is currently used for
    training in Captivate (paper books, that is, as opposed to
    web-learning sites like "lynda.com"). The book I am familiar with
    is written by Kevin Siegel and is titled "
    Essentials of Adobe Captivate 2"
    Basic guidelines to follow(?) That's like asking someone to
    tell you how to walk. But have you viewed the nine (9) tutorial
    movies that are available from the main user interface (UI)? I
    would think those built-in tutorials would be helpful in getting
    started; though I admit I haven't watched them myself, I know the
    author and he is pretty good at explaining things.
    What
    resolution should (you) use(?). Again, that is a "How high
    is up?" question. The size of the project is dependent on the
    environment of the end-user and the goals of the developer and will
    change for every project. Try 800x600 recording size while you are
    learning, and be prepared to change that for specific needs.
    Finally,
    "What is the best way to record the PPT animations?". There
    is
    no way to "record the PPT animations". That is, if you are
    importing Power Point presentations, the "transitions" or "effects"
    on each PPT slide are lost during the import process. All that will
    be imported is the finished slide, with all objects and actions
    completed. This is a frustrating limitation of importing Power
    Point projects into Captivate. There are other applicaitons which
    can convert PPTs to SWF and so forth, but I can't tell you how (or
    how well) they work because I've never used them.
    I wish I were able to be of more actual help. Perhaps as you
    get deeper into the learning curve for Captivate we can offer more
    itemized help based on specific problems or questions ...
    .

  • Looking for a howto for an applescript to batch convert PPTS to Keynote...

    Looking for a howto for an applescript to batch convert PPTS to Keynote...
    Hi to group!
    (cross posted this a couple of weeks ago to Keynote forum, no responses) Perhaps the query really belongs here...)
    (I) Have a whole bunch of PPTs to convert to Keynote, now and more as time goes on.
    Looked into applescript to try to automate this a bit (could open PPT file but did not see any way to 'Save' file from a script).
    Also looked into bash scripting/automator too -- way too many options to choose from. Help!
    Anybody done anything similar to this already?
    TIA for pointers. //GH

    A word of caution.
    I have not tried the workflow before.
    I am not an applescript expert.
    These steps were quickly composed using my basic knowledge in Applescript
    What I was planning was to create a script droplet that when a ppt file is dropped upon it, it extracts the name of the file and sets it to a variable to name the keynote file later. You might have to modify it a bit to batch process multiple files.
    Try going through batch processing scripts made for quark or Adobe photoshop ( Not sure if these exist on internet) to see how they have implemented the steps in applescript.
    To GUI Script Keynote, do these steps...
    All the code has to go in here
    <pre title="this text can be pasted into the Script Editor" style="font-family: Monaco, 'Courier New', Courier, monospace; font-size: 10px; padding: 5px; width: 720px; color: #000000; background-color: #E0E0E0; overflow: auto">activate application "Keynote.app"
    tell application "System Events"
       tell process "Keynote"
          -- insert GUI Scripting statements here
       end tell
    end tell
    </pre>
    <pre title="this text can be pasted into the Script Editor" style="font-family: Monaco, 'Courier New', Courier, monospace; font-size: 10px; padding: 5px; width: 720px; color: #000000; background-color: #E0E0E0; overflow: auto">click menu item "Export…"  of menu 1 of menu bar item "File"  of menu bar 1</pre>
    This will click the next.. button provided the default export type is set to PPT
    <pre title="this text can be pasted into the Script Editor" style="font-family: Monaco, 'Courier New', Courier, monospace; font-size: 10px; padding: 5px; width: 720px; color: #000000; background-color: #E0E0E0; overflow: auto">click button 2 of sheet 1 of window 2
    </pre>
    This will click the Export button on the next window
    click button 1 of sheet 1 of window 2
    This piece of code can be used to set the name of the ppt file using the extracted name in the first step
    <pre title="this text can be pasted into the Script Editor" style="font-family: Monaco, 'Courier New', Courier, monospace; font-size: 10px; padding: 5px; width: 720px; color: #000000; background-color: #E0E0E0; overflow: auto">set value of text field 1 of sheet 1 of window 2 to "<string>"
    </pre>
    May be there is a better way out there.
    Thanks for red_menace for his Script formatter script
    Message was edited by: dj9027

  • AS2 font embeding in seperate swf file.....

    Dear all,
    I tried to embed font in as2 its working...this is the sample code
    var test_fmt = new TextFormat();
    test_fmt.font = "Font1";
    createTextField("text1",2,100,150,100,20);
    text1.text = "what the hell";
    text1.setTextFormat(test_fmt)
    text1.embedFonts = true;
    text1._rotation = -45;
    But i want to embed the font in seperate swf, how to call the font embeded swf.....Please if u have any sample share with me...
    Thanks in advance...
    Rajasekaran

    I tried the below code with your two lines inplace but it came up with an error
    trymeon_btn.addEventListener(MouseEvent.CLICK, tryMeButtonFunction);
    function tryMeButtonFunction(event: MouseEvent) {
    import flash.net.URLRequest;
    import flash.display.Loader;
    import flash.events.Event;
    import flash.events.ProgressEvent;
      function startLoad() {
       var trymeon_btn:Loader = new Loader();
       var mRequest:URLRequest = new URLRequest("hand2.swf");
       trymeon_btn.contentLoaderInfo.addEventListener(Event.COMPLETE, onCompleteHandler);
       //trymeon_btn.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgressHandler);
       trymeon_btn.load(mRequest);
      function onCompleteHandler(loadEvent:Event) {
       loadEvent.currentTarget.x=(stage.stageWidth-loadEvent.currentTarget.width)/2;
       loadEvent.currentTarget.y=(stage.stageHeight-loadEvent.currentTarget.height)/2
             addChild(loadEvent.currentTarget.content);
      function onProgressHandler(mProgress:ProgressEvent) {
       var percent:Number = mProgress.bytesLoaded/mProgress.bytesTotal;
       trace(percent);
      startLoad();
    ERROR: Error #1056: Cannot create property x on flash.display.LoaderInfo.
    at MethodInfo-2()
    Justin

  • Convert a PDF to SWF??

    I desperately need to know how it's possible to take a multi-page PDF (actually, over 120 of them) and convert them to flash/.swf format to make them available via our website.
    What Adobe program is there that can do this, now that Flashpaper is dead? (And, even that, we tried to download the trial copy to see if it worked, and it bombed out.)
    Right now, we're using Design Standard CS3 and we're aware we probably need to upgrade to be able to do this, but what program will let us do this?? The PDFs we need to convert are provided by clients of ours, so they're not something we created ourselves, and are mostly created from scanned copies of pages they had in-house. In other words, it's not like an InDesign document that we could just re-convert.
    (I just spent three hours trying to find the answer,  and couldn't find it ANYWHERE. So, forgive me if it's been answered already, and please provide a link!)

    If you're new to actionscript...but familiar with other
    object oriented languages, then you should be able to do this. If
    you are not familiar with object oriented coding it might be a
    little amitious to start with. Not wanting to discourage you...just
    to make sure you don't get frustrated by trying to learn too much
    at once.
    I have not actually used AlivePDF yet...I have not needed it
    so far. But I have heard great things, and Thibault Imbert /
    ByteArray definitely has a lot of valuable conributions to the
    community. I haven't looked, but I suspect its not a 'component'
    but a class that you need to use in code - in which case my comment
    above applies. Actually I just googled...here's an intro that
    should provide more insight:
    http://tv.adobe.com/#vi+f1472v1017
    Here is an tutorial/example of using the JPEGEncoder class
    with a php script:
    http://designreviver.com/tutorials/actionscript-3-jpeg-encoder-revealed-saving-images-from -flash/

  • I need help to convert photos in the .swf format to a format that will open on iOS

    I need help converting photos in the .swf format to a format that will work on my Mac.  Thanks

    SWF is a Flash file that should be able to be opened with your web browser on your Mac. Probably not on iOS though.
    You will likely need to find the source file for the application that created the SWF and the image will be in that. You could then export/extract the image and have it as a stand alone file.
    It does look like there are applications that can do what you are looking for though: https://www.google.com/search?q=SWF+to+JPG

  • Converting PPT file to PDF results in cover page disappearing -- using 10.1.3 Reader for Mac

    converting PPT file to PDF results in cover page disappearing -- using 10.1.3 Reader for Mac

    Adobe Reader cannot convert documents; what software did you use for the conversion?

  • Convert PPT into PDF

    why do i have to pay to convert my powerpoint into a pdf?

    You want to use Acrobat to convert PPT to PDF: you have to buy Acrobat.
    You want to use the PDF Pack to convert PPT to PDF: you have to purchase a PDF Pack subscription.
    You want to use Microsoft PowerPoint to convert PPT to PDF: you have to buy Microsoft Office.
    You don't want to pay anything: search Gooble for free conversion tools.

  • Movie clip to seperate swf

    hey quick question,
    i already made my flash site but realized afterwards that swf file is way too big. i compressed the images in photoshop as jpgs (72 dpi) but the site still loads way too slow during the preloader. the only option that i can think of is to make the site a swf file and the work section as another swf file. how would go about creating a seperate swf from my work section (which is a movie clip)?
    thanks

    have you considered removing all the jpgs from the swf and loading them?

  • About converting office doc to swf format

    hi Experts,
    My customer is asking me for online browsing document solution from wcc11.1.1.7, they need something like this:
    http://wenku.baidu.com/view/67abcdef856a561252d36f97.html
    Do we have word/ppt/excel/pdf to swf converter solution? I am newbie on IBR, seems we don't have OOTF for this, is flipfactory ok for this?
    I believe IBR should have some solution on this, pls guide me.
    Best regards

    Hi ,
    IBR is used for converting any other format to PDF , other way round is not possible as in doc to swf conversion is not available .
    Thanks,
    Srinath

  • Converting a single frame swf to a gif

    I have a couple of really cool animated 'shockwave flash
    movie windows projector' images that i would love to convert into
    animated gif's so that I can edit them to work in a theme I'm
    designing for my sony ericsson w580i. I was finally able to convert
    the exe files into swf's... but that didn't really do me any
    good... same issue. Also upon further scrutiny I discovered that
    both animated file types have only 1 frame! What should I do?!
    Please help!!

    I've experienced the same thing sometime long in the past,
    and I probably did a frame by frame Print Screen to get around it.
    If it's single frame swf, then that's probably all you're going to
    get is one frame as an output.
    You may be able to incorporate a jpeg encoder of some sort to
    take snapshots as the piece animates in some form of loop fashion,
    but I'm not savvy in that dept.

  • How can i convert ppt file into a keynote using windows 7 ?

    can i change a powerpoint file into a keynote file on my labtop using my windows 7 ?? if yes can i send it to someone who has mac OS and will it work well with him?

    No, he'll download it as a PPT.  Keynote can then open the PPT file, and he can choose to convert to the Keynote format once its open.
    Keynote: Supported file formats - Apple Support
    All he'll need to do is save it.

  • Error in converting locale file to swf.

    Hi all,
                While i was trying to convert my locale file to swf through command line '
    C:\Users\Karthikeyan R\Documents\Flash Builder 4\ttv_multiplethemes_localization>"C:\Program Files\Adobe\Flash Builder 4\Adob
    e Flash Builder 4\sdks\4.1.0\bin\mxmlc" -locale=fr_FR -source-path=locale\{locale} -include-resource-bundles=TtvText -output
    fr_FR_ResourceModule.swf'  in Flash builder4 using 4.1.0 sdk. I am getting an error like this.
    Exception in thread "main" java.lang.UnsupportedClassVersionError: flex2/tools/Mxmlc (Unsupported major.minor version 49.0)
            at java.lang.ClassLoader.defineClass0(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:502)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:250)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:54)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:193)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:186)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:272)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:315)
    But i was able to convert to swf using Flexbuilder3.
    regards,
    Jayagopal.

    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll

  • Converting timeline animations into .swf??

    Hello all,
    In CS3 I was able to export animations into .SWF files but with CS6 I cant seem to find out how to do this?  The only option is .MP4 via File>Export>Render Video but thats no good to me.  I've searched high and low for this answer but have come up with nothing!
    Any suggestions?  It needs to be SWF.  I've tried to convert MP4 into SWF using a 3rd party software but the quality was shocking and I'm unsure what settings to use for the original animation and also for the converting!  Doing it with CS6 is much prefered if possible!
    Thanks in advance

    To my knowledge, you cannot do this in Photoshop CS6. Check out this help document, Creating Timeline Animation (Photoshop Extended).
    Do you have Flash or After Effects?
    Cheers,
    Michael

  • Help! - convert jpg to flash(.swf) format

    Hi,
    I want to convert a jpg image file to the flash (.swf) format. very urgent.
    If any of you guys know how to do it in java plzzz help me
    thanks and with regards
    Anuradha

    wish I could help but I am Mac and Essentials is not in my work flow!

Maybe you are looking for

  • Remote Desktop Connection Mouse Slow with Windows 2012

    Hello: I am connecting to a customer site with Citrix and using Citrix's Remote Desktop. I know this may be a Citrix issue but not sure. Customer isn't helping so thought I would check here. I have two connections to computers in their network with R

  • Moving a folder from iPhoto

    I want to know how to permanently move a folder from iPhoto to my Time Machine, while retaining easy access to that folder. I'm looking to free up some space on my hard drive. I have a MacBook Pro with 4 GB RAM and 320 GB hard drive and we're running

  • Is there any way to avoid upgrading to Itunes 7 with new generation Ipods?

    My Ipod was stolen last week and I need to buy a new one today. To frustrate matters in my grief over Ipod loss, I have tried unsuccessfully many times to download Itunes 7 from Itunes and Software update. It downloads but then when I go to launch it

  • New Build old hard drive xp

    I am building a P6NGM with 2 Gig and a E2200 Intel I am giving up on the old gateway and want to move the Gateway hard drive with programs and data to the new machine it will not start but still starts in the old machine. I have done this with Win 20

  • ChaRM Setup in Sol Man 4.0

    Hi, I am looking for a step-by-step document to configure Change Request Management in Solution Manager 4.0 Please be kind enough to send it across.  Many thanks in advance, Abdul R Shaik