Automatic conversion ppt to flash with flash paper?

I am using flash paper to convert powerpoint file to flash.
How can I have this done automatically?
I mean, if i upload a ppt file to my server, i would like it
to be automatically converted in swf. Is there a server verison of
flash paper?
Thanks

InDesign > Flash Professional workflow may be a bit bumpy road... In some cases you may make it easier by creating interactive widget in Flash, exporting it as SWF and placing SWF to InDesign. Then you can use InDesign´s SWF export for creating your digital publication.
I have few very nice examples of digital interactive flash magazines made that way. I can send you some links. Let me know if that interests you:
petteri.paananen[x]prepress.fi (replace x with at)

Similar Messages

  • Flash Paper dans un document flash

    Allo tout le monde,
    J'ai converti mes fichiers pdf en flash paper 2 format swf :
    ça au moins c'est très facile !
    Méthode: - Ouvrir un fichier pdf
    - Aller à la fonction imprimer
    - Choisir l'imprimante qui est Flash Paper 2 et pouf !, tout
    ce fait automatiquement.
    - On choisit le format de fichier, .swf ou pdf. que l'on
    désire.
    Bon tout est beau jusqu'à ce point mais là...
    J'ai un document flash déjà créer avec un
    menu déroulant et des clips divers associés aux
    différents boutons du menu déroulant. J'ai besoin
    d'importer un de ces fichiers converti en flash paper dans mon
    application flash et je n'y arrive pas.
    Dans aide Flash paper 2, il y a une page de code à ce
    qu'il faut faire pour arriver à importer un fichier flash
    paper dans flash. J'avoue que je n'y comprend pas grand chose. Je
    ne suis pas vraiment une programmeuse. Voici le code, si quelqu'un
    pourrait m'expliquer ce que ça veut dire et à quel
    endroit l'appliquer. Je marque des notes à ce que je ne
    comprend pas. Alors voici:
    Texte intégrale du flash paper 2 dans aide
    Utilisation de FlashPaper avec Macromedia Flash
    Vous pouvez insérer un fichier SWF FlashPaper dans un
    fichier FLA Flash. Lorsque vous exportez le fichier FLA dans SWF,
    le fichier SWF FlashPaper est incorporé comme partie du
    fichier SWF Flash exporté.
    Le code suivant indique comment charger un fichier SWF
    FlashPaper dans un fichier FLA normal à l'aide de la fonction
    loadFlashPaper() : ( à quel endroit inscrit-on ce code? au
    frame 1 du document flash ou au frame 1 d'un clip vide ou ???)
    function loadFlashPaper(
    path_s, // path of SWF to load
    dest_mc, // MC which we should replace with the SWF (est-ce
    que je dois créer un clip ? )
    width_i, // new size of the dest MC
    height_i, // new size of the dest MC
    loaded_o) // optional: object to be notified that loading is
    complete
    var intervalID = 0;
    var loadFunc = function()
    dest_mc._visible = false; ( est-ce que dest_mc est le nom
    que je dois donner à un clip?)
    var fp = dest_mc.getIFlashPaper(); ( fp ( est-ce le nom de
    mon document flash paper ?)
    if (!fp) (getFlashPaper ( est-ce le nom de mon document
    flash paper? )
    return;
    if (fp.setSize(width_i, height_i) == false) ( est-ce que je
    dois donner une grandeur, largeur ?)
    return;
    dest_mc._visible = true;
    clearInterval(intervalID);
    loaded_o.onLoaded(fp);
    intervalID = setInterval(loadFunc, 100);
    dest_mc.loadMovie(path_s);
    Le code suivant indique comment vous pouvez utiliser la
    fonction loadFlashPaper() après avoir incorporé un
    fichier SWF FlashPaper : ( à quel endroit on indique ce code?
    Dans le clip lui-même sur une frame 1 ou sur le frame 1 du
    document flash? )
    function onLoaded(fp)
    // loading is complete, so we can now adjust the current
    page, zoom, etc.
    // go to page 50.
    fp.setCurrentPage(50);
    // change magnification to 33%
    fp.setCurrentZoom(33);
    loadFlashPaper("FlashPaper.swf", theDocMC, theDocMC._width,
    theDocMC._height, this);
    La valeur fp.setCurrentPage a été définie sur
    50 et la valeur fp.setCurrentZoom sur 33. Lorsque vous exportez le
    fichier FLA, la page 50 du fichier SWF FlashPaper incorporé
    apparaît à l'intérieur du fichier SWF exporté
    avec un agrandissement de 33 %.
    Donc à l'aide de ces codes, il serait bon de faire un
    exemple pas à pas concret comment on intégre cela dans un
    document flash.
    Alors j'attendrai la réponse de celui ou celle qui veut
    bien relever le défi que de répondre à cette
    question un peu compliquée.
    Un Gros Merci d'avance !
    Nurse 1

    J'ai trouvé la solution dans la documentation en
    englais. Après l'avoir essayer, ça fonctionne.
    Alors voici je joins le code: attach code à ce document.
    C'est un pas à pas. En espérant que cela peut
    aider d'autres personnes.
    À une prochaine !
    Nurse 1

  • Major Questions about Flash Paper 2.0

    Ok, I've been fiddling around with flash paper 2 over the
    last few days. Like it a lot for my non-technical users..however, I
    have a few questions. Hopefully someone can answer soon. Ok, I have
    a main swf and in there I'm using a script I found (person who
    wrote it, last name: Whitehouse) on the Net which allows me to load
    a flash paper file from within that main swf along with some
    control on some interface features. Here it is:
    onClipEvent (load) {
    // function: loadFlashPaper
    // Parameters:
    // path_s: path of SWF to load
    // dest_mc: Movie clip to hold the imported SWF
    // width_i: New size of the dest movie clip
    // height_i: New size of the dest movie clip
    // loaded_o: (optional) Object to be notified that loading is
    complete
    function loadFlashPaper(path_s, dest_mc, width_i, height_i,
    loaded_o) {
    var intervalID = 0;
    var loadFunc = function(){
    dest_mc._visible = false;
    var fp = dest_mc.getIFlashPaper();
    if (!fp) {
    return;
    } else if (fp.setSize(width_i, height_i) == false) {
    return;
    } else {
    clearInterval(intervalID);
    dest_mc._visible = true; // Now show the document
    loaded_o.onLoaded(fp);
    intervalID = setInterval(loadFunc, 100);
    dest_mc.loadMovie(path_s);
    // Function called once the FlashPaper SWF is embedded:
    function onLoaded(fp) {
    // We can now call the FlashPaper API functions.
    // Remove the standard user interface features:
    fp.showUIElement("PrevNext", false);
    fp.showUIElement("Print", false);
    fp.showUIElement("Find", false);
    fp.showUIElement("Tool", false);
    fp.showUIElement("Pop", false);
    fp.showUIElement("Zoom", false);
    fp.showUIElement("Page", false);
    fp.showUIElement("Overflow", false);
    fp.showUIElement("useHandCursor", false);
    fp.enableScrolling(true);
    // Some additional API features (here commented out):
    // Go to page:
    // fp.setCurrentPage(3);
    // Change the magnification to 50%:
    // fp.setCurrentZoom(50);
    // Now we're ready to start
    // Create the destination movie clip to hold the SWF:
    var theDocMC_mc = _root.labserviceworkclip;
    // Position it on the stage:
    theDocMC_mc._x = 15.4;
    theDocMC_mc._y = 211.8;
    //theDocMC_mc.useHandCursor = false;
    // Load the FlashPaper SWF into the clip,
    // size it, and trigger the onLoaded() function:
    loadFlashPaper("labservicework.swf", theDocMC_mc, 730, 510,
    this);
    //_root.miningprojectspopup.hidecontainer.loadMovie("19a.swf");
    Now, is it possible to:
    1.) Remove the hand curser?
    2.) Remove the Flash Paper splash that appears before the swf
    is loaded? Maybe replace it with loader bar?
    3.) Control color of scrollbar (like you can on flash
    components)
    4.) The main swf is set to transparency, but if make
    background color in Word doc a color, that color does not show up.
    Why?
    4.) In Word, I want to create multiple pages that appear
    seamless when scrolling down in the swf file. however, can't to get
    that to work. Has anyone tried this? I'm open to any option such as
    using tables inside my Word docs (am trying that now but still not
    working).
    5.) I created an 8 page document in Word 2003 and saved it as
    swf BUT am getting this "Printer Failed.." response. If I do pages
    smaller in number, works fine. What's going on with that. I also
    have installed CutePDF installed..could that be screwing it up?
    6.) I want to include anchors inside the swf file so that at
    the click of a button, I can automatically move the scroll up or
    down. Any idea how to do that?
    7.) I want to inlude links inside the swf file to navigate to
    different frames inside main swf. Is that possible?
    8.) When creating hyperlinks in Word to swf file, (yes, I
    chose correct target frame), the page doesn't appear to open into a
    new window. What's up with that?

    First off I would recommend buying the non academic full version for $20 more because its worth it. So when Aperture 2.5 or 3 comes out, you do not have to pay the full price for it.
    As for your library, make a backup if you want, but all you need to do after installing a licensed version of Aperture 2 is go to your previous library and then select "open with..." then chose Aperture 2 (default)
    Once you do that you will receive a message stating that "once your library has been updated, it will not open in previous versions of Aperture, do you wish to continue?"
    After you do that your library will be fully imported into Aperture 2 exactly as it was in the previous versions of the program.
    Hope that helps.

  • The pdf security is not working in Flash Paper

    Is anyone facing a similar problem.
    The pdf security if applied with a passsword to select the
    text & graphics, printing, etc does not work. It selects any
    and every text in flash paper and pdf. Does anyone know how can one
    prevent to copy any text or graphics ...

    I have the same issue. My phone says the files are corrupt and they stay corrupt if I forward then from my phone. It like the phone checks for something in the PDF, when it never did before.

  • Director and Flash Paper

    Hi Adobe forums,
    I've just about putting the finishing touches together for an
    interactive CD at work using director 1.0.11. I've provided users
    with a print button that then in theory should open the
    corresponding flash paper file and then the user can just print out
    what ever he or she wants.
    Don't ask me why I used flash paper over pdf, it was
    something new and I wanted to try it out. It works fine on my
    machine but when I burn the projector and accompanying swf and xtra
    folder to cd it won't work on other machines.
    I'm guessing this is a Flash Xtra problem, but I've already
    selected Flash Assest and Flash Asset Options X32 via modify >
    movies > xtras but this doesn't seem to solve the problem. To
    handle the opening of this file I've also downloaded and installed
    BuddApi as well.
    Here's the code I use to open the swf file:
    property pFile
    global gDelimiter
    on getPropertyDescriptionList
    description = [:]
    addProp description,#pFile, \
    [#default:"test.swf", \
    #format:#string, \
    #comment:"Type the full filename to open: Example: test.swf"]
    return description
    end
    on mouseEnter me
    -- sets the cursor to the hand
    cursor 280
    end
    on mouseLeave me
    -- sets the cursor to default
    cursor -1
    end
    on mouseUp me
    --- setting the file path to go to, you need to put your
    folder name or file structure in.
    --- the moviepath is the path to the actual .exe file. So you
    just need to
    --- add the structure from that point on. In the below case
    there is a
    ---folder called "pdf_files" in the same directory as the
    .exe
    sPath = the moviePath & "swf_files" & gDelimiter
    & pFile
    --- & is simply appending each item, so it is appending
    pdf_files to the
    ---existing path, and then appending
    --- gDelimiter which is either a \ or : and then finally
    appending the name of
    ---your file
    baOpenFile(sPath, "Maximised")
    --- buddyAPI command you will have to download and install
    buddy API
    ---Xtra. It is free, do a google search for BuddyAPI and the
    site will come
    ---up, simply download the appropriate version and place in
    your Xtras
    ---folder.
    cursor -1
    end
    If anybody could point me in the right direction I would be
    very grateful.

    Thats the strange thing, at work all machines are set up the
    same way via an image ripped down to them when they are first
    configured. Part of the standard desktop image is the Flash Plugin.
    For some strange reason the .swf file isn't recognised on the
    CD. Drag the associated file to the users computer and the file is
    recognised.
    I'll give the error reporting alert a try and feedback the
    results. It might be that I just have to embed the Flash Paper
    within the Director Projector.
    If anybody else has any ideas I would be very grateful.
    yiendos

  • Severe issues when integrating flash paper in director

    I'm trying to integrate flash paper documents into director
    projector, but there are 2 severe problems about usability:
    1. the mouse wheel doesn't work, so i can't scroll document
    with mouse
    2. i see two cursor on document, the standard arrow cursor
    and the simulated flash paper hand cursor; it is possible to hide
    the simulated hand cursor in flash paper?
    I'm referencing to integration guidelines found at
    http://www.adobe.com/devnet/director/articles/flashpaper_in_director.html
    Please help, thanks

    quote:
    Originally posted by:
    Chunick
    if you can access a command or event in the flash paper that
    will scroll the flash paper then you can try the free scrollWheel
    Xtra that can be found here:
    http://www.mods.com.au/xtras/default.htm
    Thanks for the reply,
    i've fixed the 2#, and i've come up searching at the
    mousewheel xtra, and i've got your same idea: send to Flash Paper
    some command to force the scrolling, but it seems that such command
    doesn't exists... or maybe it is undocumented?
    Someone have more informations?

  • Loading Landscape PDF in flash Paper

    I am using Flash Paper to load different pdf's in flash but i
    am facing one problem that once i convert any pdf that is on
    landscape size it will rotate the pdf in swf and it looks like a4
    size so any idea how to fix it

    Bob,
    > I can embed a PDF file in an HTML table cell [...]
    > But I can't do this in Flash (unless you know
    otherwise),
    > which seems an amazing blind spot from Adobe.
    It's not really a blind spot. Adobe obviously cares about
    both
    products, and in fact, both products can be intermixed in AIR
    (Adobe
    Integrated Runtime), a separate runtime available on the
    Adobe.com site.
    There are a number of technical reasons you can't embed a
    PDF directly
    into a Flash movie. For one, Flash Player only supports a
    limited subset of
    the HTML specification -- a subset that, for better or worse,
    excludes table
    cells, and (importantly) the <embed> tag. But even more
    importantly, Flash
    Player doesn't support the Acrobat plugin. Your browser does,
    which is why
    you're able to embed a PDF into an HTML document. The browser
    can display
    the PDF because you've installed the Acrobat browser plugin
    (or ActiveX
    control). Flash Player itself has no such plugin.
    > I can achieve the same result by using Flash Paper from
    > Studio 8, but this is not included in CS3.
    If you still have Flash Paper installed, you can keep right
    on using it!
    Its output -- SWF files (that is, Flash movies) -- is 100%
    compatible with
    the tools in Creative Suite 3. Flash Paper creates SWFs that
    emulate many
    of the features of the PDF format ... but in the end, you're
    simply
    embedding another Flash movie.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • How to hide some functions in the menu bar of flash paper

    Do anyone know how to hide some functions in the menu bar of
    flash paper? As I want to show a swf file(converted from pdf) on
    the website without printing function. How can I do it?
    Also, if possible, can anyone know how to hide all functions
    on the menu bar except the logo of flash paper?
    Thank you very much, it is very urgent.

    Here is an article about how to integrate flashPaper into
    Director. It has most of the functions that can be executed on
    flashPaper. Maybe it will help?
    http://www.adobe.com/devnet/director/articles/flashpaper_in_director.html
    and here is all his code
    http://www.mediamacros.com/item/item-1006687373/
    Note: it is for 1.01, but works with 2.0

  • Error Printing using flash paper

    I have flashpaper 2.0 installed onto a windows XP Pro SP2, a
    particular user is not able to use the flash paper printer. He just
    gets Windows XP Printer Error box with 'Error printing - An unknown
    error occured'.
    There is an entry in the printer's queue, it too is marked
    with 'Error - printing'.
    When i log in (i'm an admin user) it works fine.
    Any clues on where to look?

    I have the same problem. Installed Studio 8 with Contribute 3
    and FPV2 on WIN XP PRO SP2. I can't print to FlashPaper; I just get
    the "Error-Printing" in the print queue. I have admin privledges
    but still have the problem. I have uninstalled and reinstalled
    Contribute twice. I have downloaded FPV2 drivers. I have tried
    adding FPV2 drivers through WIN XP 'Add Printer" process and always
    the same thing.

  • Flash Paper 2 & Document Map

    I'm trying to find a solution which enables PDF files to be
    converted to Flash Paper with some form of navigation (Same as or
    similar to the Document Map function in Word). Unfortunately the
    Document Map function doesn't work with PDF files. My current
    method of converting PDF to Word using a converter programme is not
    effective enough. Adobe are saying this isn't a priority for them
    and no updates are scheduled in the near future. Has anyone found
    solution for this?

    Hi, I have the same problem... at the end have yoe got any
    solution??
    Thank you!

  • Can't See Flash Paper Document

    First, my appologies if this has been mentioned before. I couldn't find it so I posting it.
    I just installed Flash Paper2. Converted a Word document to PDF and draged it to Flash Paper2's window. It loaded fine. I then saved it as a SWF.
    It looks great. The load it into a page via Dreamweaver. The preview test looks winderful.
    I Upload all the required files online for the public to view it. But nothing comes up. Instead it says I need a new version of Flash Player (which I already have. That was Friday. Today, I have a white box in FireFox. And in IE, it's the same white box, but now the original (non-Flash Paper) Flash at the top is missing as well.
    To make matters use, a very simple Flash SWF I've made dozens of times is now not loading. It also says I need to update. But I Already Did! This simple flash is just three flyers that swap places every 100 frames. No reason for it to need updateing. The Flash I created (in the exact same program) still works on the page, but not the new one.
    What's going on?! I can see Flash Paper SWFs and normal SWFs just fine on other sites. Just not the one I'm working on.
    Here the link to the Flash Paper page:
    http://www.dlhenry.com/MediaKit.html
    Please help.

    Windows has a few graphics formats not supported by Mac OSX, such as .emf, probably the graphs are in an unsupported format.
    OpenOffice is very compatible with MsOffice, if it opens the files correctly you might be able to copy and paste the graphs over. They will probably turn into .pdf graphics in the process.
    Failing that make a screen snap of them using +command shift 4+ drag around the image and look for the subsequent file on your desktop.
    Peter

  • Does Flash Paper support the PDF Bookmark functionality inside SWF?

       Does Flash Paper support the PDF Bookmark functionality inside SWF?

    I don't think you will be to happy with this, but I think it
    does not come with the Web Premium CS3 for the Mac:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16582#flashpaper

  • Flash Paper Appears Outside of Table

    I am sure this has smething to do with object tags and the IE
    upgrade, but I can't figure it out! I have a Flash Paper content
    that is to appear in the center of the page. It does fine in
    FireFox, but in IE it appears outside the table in the bottom left
    corner. What do I need to change so IE will view it properly? The
    other Flash Paper pages in the site appear fine in IE. What is
    wrong with this page?
    Flash">http://www.ohiowestie.com/club_newsletter.html[L=Flash
    Paper Problem page

    http://www.ohiowestie.com/club_newsletter.html
    Try that link. Sorry.

  • Flash paper -explorer 7

    Has any one noticed that you can not load flash paper files
    in internet Explorer 7. I loved converting word documents to load
    directly and it worked fine until #7. The files load if you embed
    them in an html file but not directly. Has anybody else noticed the
    problem and figured out a solution? I have hundreds of files out
    there that are going to no longer work when people load the new
    explorer.
    Thanks for your help

    I have the same problem. Works perfect in other browsers. But
    if you click the maximize button, it opens a new popup window as it
    should, but it gets a javascript error and doesn't load. Example:
    http://www.justiceforvictimsaz.com/sub/forms-brochures.html
    (expand the forms section). ANy help would be GREAT! if not,
    guess I'll have to do the PDF thing as well. Shame Adobe doesn't
    want to support a wonderful product just because it use to compete
    with PDFs.

  • Flash Paper Toolbar Buttons

    I use Flash Paper 2 regularly to print documents from
    Microsoft Access. In Word and Excel there is a toolbar button for
    Flash Paper but none in Access, and there is nothing available in
    the list of tools to add to a custom Access toolbar.
    Is there any way to get a toolbar button for Flash Paper in
    other applications such as Access?
    Thanks

    Thanks Urami! This worked. However, there is still one set of
    buttons that still don’t work. These buttons are programmed
    to open a new window that is a specific size and has all the
    toolbars and menu bars turned off. The html page that opens in the
    window contains an swf file that runs a video.
    Again, it works perfectly over the Internet or when I test
    the html page from Dreamweaver on my PC, but the window will not
    open when the button is pressed if the program is running from a
    CD.
    This program was originally created with Studio MX 2004 with
    Flash Professional. With that version, the CD worked on Windows
    2000 PCs but not Windows XP. We re-published the entire program
    with Flash Professional 8. Once I fixed the file names as you
    suggested, everything works except the buttons that open a child
    window. Now these buttons in the Version 8 program don’t work
    on a CD running on Windows 2000 either.
    Here is the code that I have in Flash movie for the button:
    on (release) {
    getURL("javascript:newWindow('videowin_turnassist.html')");
    Here is the code that I have in the html document:
    function newWindow(bookgif) {
    bookWindow = window.open(bookgif, 'bookWin',
    'toolbar=no,location=no,menubar=no,scrollbars=no,resizable=no,width=400,height=425')
    bookWindow.focus()
    I got this html code out of a reference book several years
    ago and we use it all the time to open child windows from parent
    windows.
    I tried other code that I got out of an ActionScript book and
    from the Help files, but I can’t get any of it to work at all
    (not even from Dreamweaver).
    Do you have any other suggestions for opening a specifically
    sized child window that will run a Flash movie?
    TIA
    Diane

Maybe you are looking for

  • PL SQL block - Check for empty file

    Hello, I need help in writing pl sql code to check a file to verify if it has 0 records (file size = zero kb.) In a preceding pl sql block, I am performing a SELECT on data and writing it to a file. If that file is empty/has no records, then I would

  • Question about External HD as Backup

    I'm backing up my HD using a LaCie external and SuperDuper. SuperDuper is set to erase the external and transfer files/folders, etc. from the HD to the external and reboot the computer using the external. Everything seems to work fine but I thought w

  • Possible to further enhance this SQL query?

    Hi Experts, I have this query running with 23min in development server, but report took 1hr to execute in production server. Hoping to get idea of to improve on the performance. I have attached necessary information as below. When i try to ftp my tra

  • Displaying Blob data (MS Word Doc) in Reports

    Anyone have suggestions/idea on how to display an MSWord Doc stored within a blob column (not a bfile pointer) within Reports? All I see is the binary data but would like to see the Word Doc itself. Thanks.

  • Coldfusion 8 Developers Edition not showing fckEditor.

    I just installed coldfusion8 developers edition on windows vista ultimate. I also have the fckeditor installed correctly on a local site. I know it is correct, since the same code runs on a production server as expected. When I look at a site locally