Sharing PDFs, and Flash Paper

We'd like to use be able to Share PDFs in our Adobe Connect
sessions, just as one might do with PowerPoints files. However, we
can't seem to get it to work for us. Is there a way to share PDFs
with meeting participants?
Secondly, if we *can't* share PDFs, is there a way to turn
them into .swf files so they *can* be shared?

PDF's cannot be share in the share pod with this version of
Connect.
Use FlashPaper (3rd item down on the Getting Started page) to
install a Print to SWF driver on your computer. It works the same
as a Print to PDF driver.
However, if you are on a Vista or Mac box, then you will
probably need to reach out to something like www.print2flash.com
that allows you to use a free web app to convert the files to SWF.
Jorma@RealEyes

Similar Messages

  • [ANN]REPORTMILL 5 BRINGS PDF AND FLASH TO JAVA WEB APPLICATIONS

    REPORTMILL 5 BRINGS PDF AND FLASH TO JAVA WEB APPLICATIONS
    Dallas, TX - February 25, 2002 - ReportMill Software, Inc. today announced the
    general availability of ReportMill 5 - the only developer tool in the world providing
    dynamic PDF and Flash web pages and reports for web applications. The new version
    is written entirely in Java and runs on all major platforms with support for all
    Java based web application servers, including those from BEA, IBM, Oracle, Sun
    and Apple.
    ReportMill rescues web developers from the crude look and feel that HTML-only
    solutions provide. By complimenting systems like Java Server Pages (JSP) from
    Sun, ReportMill brings a new level of professionalism and functionality to web
    applications.
    "Most web sites today offer much of their content in PDF and Flash, however, web
    applications are still limited to less-expressive HTML. Our customers deliver
    professionally formatted pages, such as invoices, catalogs, financial statements
    and itineraries in the paginated and printable Adobe PDF format. They offer content
    navigation that is interactive and portable in Macromedia Flash," says Jeff Martin,
    ReportMill CEO. "Only ReportMill seamlessly provides both with an integrated page
    layout application and an intuitive developer library."
    Availability and Pricing
    Available now. A fully functional evaluation version of the product is also available
    as a direct launch from your browser at http://reportmill.com/webstart.
    List pricing for ReportMill 5 starts at $495 (US) per developer and $4,995 (US)
    for a single processor deployment license. Volume pricing does apply. For specific
    pricing details, please see http://reportmill.com/pricing.html.
    About ReportMill Software, Inc.
    ReportMill Software, Inc. is the leader in web application "Object Reporting"
    and PDF and Flash content delivery for Java web applications. Founded in 1997,
    ReportMill has been the darling of the Apple WebObjects community, providing professional
    content solutions for dozens of fortune 500 corporations such as Merrill Lynch,
    Morgan Stanley, Fannie Mae, Verizon, WorldCom, NTT Communications, America Online,
    EDS, KPMG, AIG, Toyota and more. Now available to all web application servers,
    ReportMill will soon be a fixture in all web application development.
    Contact
    ReportMill Software, Inc.
    214.513.1636
    [email protected]

    REPORTMILL 5 BRINGS PDF AND FLASH TO JAVA WEB APPLICATIONS
    Dallas, TX - February 25, 2002 - ReportMill Software, Inc. today announced the
    general availability of ReportMill 5 - the only developer tool in the world providing
    dynamic PDF and Flash web pages and reports for web applications. The new version
    is written entirely in Java and runs on all major platforms with support for all
    Java based web application servers, including those from BEA, IBM, Oracle, Sun
    and Apple.
    ReportMill rescues web developers from the crude look and feel that HTML-only
    solutions provide. By complimenting systems like Java Server Pages (JSP) from
    Sun, ReportMill brings a new level of professionalism and functionality to web
    applications.
    "Most web sites today offer much of their content in PDF and Flash, however, web
    applications are still limited to less-expressive HTML. Our customers deliver
    professionally formatted pages, such as invoices, catalogs, financial statements
    and itineraries in the paginated and printable Adobe PDF format. They offer content
    navigation that is interactive and portable in Macromedia Flash," says Jeff Martin,
    ReportMill CEO. "Only ReportMill seamlessly provides both with an integrated page
    layout application and an intuitive developer library."
    Availability and Pricing
    Available now. A fully functional evaluation version of the product is also available
    as a direct launch from your browser at http://reportmill.com/webstart.
    List pricing for ReportMill 5 starts at $495 (US) per developer and $4,995 (US)
    for a single processor deployment license. Volume pricing does apply. For specific
    pricing details, please see http://reportmill.com/pricing.html.
    About ReportMill Software, Inc.
    ReportMill Software, Inc. is the leader in web application "Object Reporting"
    and PDF and Flash content delivery for Java web applications. Founded in 1997,
    ReportMill has been the darling of the Apple WebObjects community, providing professional
    content solutions for dozens of fortune 500 corporations such as Merrill Lynch,
    Morgan Stanley, Fannie Mae, Verizon, WorldCom, NTT Communications, America Online,
    EDS, KPMG, AIG, Toyota and more. Now available to all web application servers,
    ReportMill will soon be a fixture in all web application development.
    Contact
    ReportMill Software, Inc.
    214.513.1636
    [email protected]

  • 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

  • Adobe CS3 Pro & PDF files/Flash Paper

    I created a website in Adobe Fash CS3 Pro and I was wondering if you can insert a PDF file into a flash website or MacroMedia Flash Paper which then would be an SWF file.  If so, how can you do this.  Thank you in advance.........

    Thanks for your response, it is a mail problem, I been sendings filled form PDFs estimates for years from my Mac then yesterday I went from mountain lion to mavericks and the problem started, if I zip or move te files to any other windows or Mac computer it opens fine, the problem is when I attach it to a message in mail it attached the file blank

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

  • Add-on programs for PDF and Flash files

    Is there an PDF reader that can be loaded onto the 8130 to read PDF files online? How about a mobile version of Flash? I am finding out that there are alot of things that won't work on it that will work on my desktop which I understand. How about watching videos from YouTube?

    Flash can't be used in BlackBerry device...till date! May be in future device development will resolve the issue..Considering the public demand!
    BlackBerry devices are capable of viewing PDF files. Are you facing any difficulty in reading them. Can you please let know what type of error is being generated? 
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • Crashes when trying to open PDF and flash plugin has crashed

    Followed the directions that are on the troubleshooting for this problem and the "reset" was gray therefore I could not complete this action. No matter what I did I could not get this action the highlight or complete.

    Hello Jay.
    Older versions of Gearbox had been known to crash LE and Garage band at times. However, recent updates of the drivers have made it rock solid well, for me at least.
    Run the Line6 monkey in Gearbox and it will tell you if you are up to date and update any drivers of firmware that are out of date.
    FYI, I run the gearbox application first and then boot up LE, but have also done it the other way around with no problems.
    Its also not ideal to record on to the HD of your Mac.
    It should be ok to get started with and as long as the project is small and not running too many plug ins and tracks. But strongly suggest you get an external FW HD soonest as you get more proficient and your projects start to get bigger and more intensive.
    Hope this helps..
    Rick.

  • Missing Apostrophes in Flash Paper

    When I convert a word document into a pdf using flash paper
    all the apostrophes and quotation marks are missing. Is this a
    common problem? I'm hoping someone can sure any pearls of
    wisdom.......
    Flash Paper 2 version 2.02.2302.0
    OS: Windows XP home

    Stop reinstalling your fonts. Check what fonts are in Snow Leopard sys folder and library folder. There's a conflict somewhere. What type of font management do you use?
    I strip out all fonts from all folders except system folder and Adobe Required folder. I replace the fonts in the system folder with the OT or PS versions of Helvetica and Times. I use Font Agent Pro to manage my fonts.
    I do recall having font conflict issues when I first upgraded to Leopard. Can't remember how I resolved it. I would have to examine all my font folders again.
    Peter, I only export to PDF as a rule. I've been following the Snow Leopard stuff but I don't take notes. ;-)
    Edit:
    Okay, so if I export a postscript file and drop it in distiller that solves the problem.
    HA! My suggestion worked. It's a workaround but not a solution.

  • 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

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

  • Installing Studio 8, I could convert web pages/pdfs/.docs to flash paper CS3 I can't?

    If so, we need to bring it back, I used it as part of my
    workflow for clients. Some clients give me articles they've
    appeared in in the newspaper. Flashpaper was a great way to post
    the article in a printable format that wasn't pdf which I feel is a
    lot better/faster loading.
    Also, taking a .doc file into flash paper was awesome as
    well! please help me! somebody help me! I'll even pay for
    flashpaper functionality/exportability!
    -Line

    Although I don't think there was anything
    “official” it seems clear to most that Adobe no longer
    has any plans for Flash Paper.
    I believe you can still buy Flash Paper 2 as a standalone app
    however.
    I went with Print2Flash which has a tad more flexibility than
    Flash Paper 2 for about the same price.
    It is a great tool and maybe Adobe will release something
    better but if that's the plan they are keeping it very close to the
    vest.

  • Exporting from InDesign to PDF, and the updated PDF is larger than a month ago and not printing easily on letter paper, it is PDF presets?

    Hello,
    I am exporting from InDesign to a PDF and the page is larger in the PDF then others I have exported. Is this because of the PDF presents? One of the project managers is not able to print it out on 8.5 x 11 paper, but the document presets for InDesign are the same as before. I wish I could upload the PDFs to show, but the newly exported PDF is larger than the version I created a month ago. I created a PDF binder and the newly updated PDF is almost a .5 inch wider with the same export presets. Any thoughts?

    Sadira00123456789 wrote:
    One of the project managers is not able to print it out on 8.5 x 11 paper, but the document presets for InDesign are the same as before.
    I suspect the project manager simply has his/her copy of Reader/Acrobat set to print at actual size, rather than "Fit" (assuming the InDesign page size is truly 8.5 x 11).
    ..the newly updated PDF is almost a .5 inch wider with the same export presets.
    It would have nothing to do with export presets. How are you determining that half-inch difference?

  • I need to host a Shared PDF on SharePoint. If it is on SharePoint can only one person comment at a time? I know documents have to be checked out when using SharePoint. I need multiple users to be able to comment in real time and see comments in real time.

    I need to host a Shared PDF on SharePoint 2010. If it is on SharePoint can only one person comment at a time? I know documents have to be checked out when using SharePoint. I need multiple users to be able to comment in real time and see comments in real time. Is this possible?

    try here:
    http://www.bbb.org
    File a complaint with them. Verizon will call you to fix the blunder.
    But remember it is always up to the customer to insure what they are getting and what it costs. Don't trust the word of a sales person who makes their living on getting that sale. Lies, deceit or false promises will be and have been used by sales people for thousands of years.
    Good Luck

  • How do I print multiple PDFs AND fit them to my paper size?

    Hi,
    I'm using a 24 inch wide plotter with roll paper. I want to be able to print multiple PDFs  AND fit them to a specified paper size. I can print one page and fit it to the paper, but I can't do it with multiple PDFs.
    For example, I have two PDFs that are only 8x8 inches. I want to print them side by side on a 24 inch x 12 inch page size and fit them to size and then FIT them to the page size so the end result will be 2 PDFs printing at 12 x 12 side by side.
    I can't seem to be able to do this. I'm sure I was able to do this using earlier versions. As it is, I have to print one at a time and waste half of my roll paper size.
    Any help?
    Adobe Acrobat Pro, Windows 7 Proffesional, HP Designjet 111 roll fed plotter.
    Thanks

    Note this illustration is Based on Mac version of HP Print Driver standard inkjet. However Control should be smilar Layouts and titles may be different:
    Adjust items shown according to pages desired

  • I have just enrolled to study and my course is online. in order to view any of the course content, i need macromedia adobe flash paper to be able to read anything. Please help....

    I have just enrolled to study and my course is online. in order to view any of the course content, i need macromedia adobe flash paper to be able to read anything. Please help....

    Use a different device.
    Adobe did not develop Flash for iOS devices and has ended all Flash development for all mobile devices.
    You could try a different browser from the App store such as Skyfire or iSwifter.

Maybe you are looking for