Flashpaper in cf 8

I'm having a couple problems. one is that when i go to print,
the scale is way off. It only prints out the top corner of the
page. the other problem is that images do not show up. if i remove
the cfdocument tag surrounding my correct html and css, the images
do show up.

I'm having a couple problems. one is that when i go to print,
the scale is way off. It only prints out the top corner of the
page. the other problem is that images do not show up. if i remove
the cfdocument tag surrounding my correct html and css, the images
do show up.

Similar Messages

  • Is there a way to ROTATE a flashpaper swf

    Is there a way to rotate a flashpaper swf on a web page?
    My client is converting brochures to flashpaper and has no
    way to rotate the image from her application. She prints to
    flashpaper and the result is a portrait mode that really needs to
    be on the web page in landscape format (rotated 90 degrees
    clockwise).
    Can it be rotated, either when printed to flashpaper (so she
    could do it) or when added to the web page (I could do it)?

    When you print from Word/Acrobat/whatever just change setting
    to landscape instead of portrait.
    Other wise you'd have to rotate it in Flash I guess but
    unnecssary hassle really

  • Converting uploaded documents into FlashPaper

    Hi all,
    i have a doc management system, in which i want to convert
    all the uploaded docs into FlashPaper. The input docs will be in
    different formats like PPT,DOC,PDF etc. is there any server side
    API to do tat? i dont want the user to be aware of what conversion
    is happening at the server. I have built the system in PHP, Please
    help me out.
    TIA

    Hi,
    I think you have startged two discussions for the same question:
    Please check the below mentioend
    http://forums.adobe.com/message/5318601#5318601
    ~Pranav

  • PDF links broken in SWF Flashpaper after conversion.

    I've been building a flash app to view documents that exist as PDF files currently.
    A recent demo of this app viewing the PDFs converted to SWF in Flashpaper viewer embedded in Flash player, we noticed that the embedded links (both interdocument links and the internet based links) were broken (didn't work).
    Is there something we were doing wrong or is there a fix for this in a newer flashpaper version?
    Thanks,
    John

    According to this http://www.adobe.com/products/flashpaper/productinfo/features/static_tour/navigation/hyper linking.html hyperlinks are supported, however I've seen these not working after converting PDFs to SWFs in my testing.
    Is there some requirement for hyperlinks (both internal to the document and external internet links) to be working correctly after the conversion?

  • Linking to a part (anchor) in FlashPaper

    I am trying to create a simple system that will let me open a
    FlashPaper .swf file to a certain section.
    I need this navigation to come externally, such as passing a
    link in, calling a variable, etc. I have Macromedia Director and
    have FlashPaper working in Director. I could also pass the call via
    an html page.
    Is there any way to do this?
    Ryan Deluz

    The quick answer is the function goToLinkTarget, but this is
    very poorly implemented in version 2 of FlashPaper.
    My solution and code to help goToLinkTarget work better
    follows:
    I am going to use Zinc to pass the link in via command line
    (as I couldn't get FlashPaper in director to resize properly). I
    created a function that will read the original names as shown in my
    Word Document.
    FlashPaper starts by changing the names of the links
    (anchors) when a word document is converted. It does not expose an
    interface to get these new names, so I don't know how people were
    assumed to use the goToLinkTarget function.
    The following code should work to load a .swf FlashPaper and
    create a map of its links for easy use. I hope this helps people.
    This also includes code to dynamically resize FlashPaper so
    that it looks good in a resizable player.
    //LOAD FLASH PAPER
    Stage.scaleMode = "noScale";
    Stage.align = "TL";
    //create MovieClip holder for FlashPaper
    //create instance of MovieClip holder and place on stage
    var mFlashPaperMC:MovieClip =
    _root.createEmptyMovieClip("mFlashPaperMC",
    _root.getNextHighestDepth());
    var mFlashPaper;
    var mBookmarkMap:Object;
    //flash paper interface
    var mFlashPaperListener:Object = new Object();
    mFlashPaperListener.onLoaded =
    function(mFlashPaper:Object):Void {
    //loading is complete, so we can now adjust the current
    page, zoom, etc.
    //mFlashPaper.setCurrentPage(mFlashPaper.getNumberOfPages());
    //mFlashPaper.setCurrentZoom(33);
    mFlashPaper.addListener(this);
    mFlashPaper.showUIElement("Brand", false);
    mFlashPaperMC.toolbar_mc.brandClip_mc._visible = false;
    mBookmarkMap = mapBookmarks(mFlashPaperMC);
    goBookmark("Home", mFlashPaper, mBookmarkMap);
    //mFlashPaper.setCurrentPage(mFlashPaper.getNumberOfPages());
    //LISTENS FOR RESIZE AND RESIZES FLASH PAPER
    var mStageListener:Object = new Object();
    mStageListener.onResize = function() {
    mFlashPaper.setSize(Stage.width, Stage.height);
    Stage.addListener(mStageListener);
    loadFlashPaper("QuickStartHelp.swf", mFlashPaperMC,
    Stage.width, Stage.height, mFlashPaperListener);
    stop();
    function loadFlashPaper(path_s, dest_mc, width_i, height_i,
    loaded_o) {
    var intervalID = 0;
    var loadFunc = function () {
    dest_mc._visible = false;
    mFlashPaper = dest_mc.getIFlashPaper();
    if (!mFlashPaper) {
    return;
    if (mFlashPaper.setSize(width_i, height_i) == false) {
    return;
    dest_mc._visible = true;
    clearInterval(intervalID);
    loaded_o.onLoaded(mFlashPaper);
    intervalID = setInterval(loadFunc, 100);
    dest_mc.loadMovie(path_s);
    function mapBookmarks(flashPaperMC) {
    //associative array to store book marks
    var asArray:Object = new Object();
    trace(flashPaperMC);
    trace(flashPaperMC.fpBookmarks_array);
    trace(flashPaperMC.fpBookmarks_array.length);
    for (var i = 0; i<flashPaperMC.fpBookmarks_array.length;
    i++) {
    trace(flashPaperMC.fpBookmarks_array
    .publicName_str);
    asArray[flashPaperMC.fpBookmarks_array.publicName_str] =
    flashPaperMC.fpBookmarks_array
    .anchorName_str;
    //store this bookmark name
    for (var j = 0;
    j<mFlashPaperMC.fbBookmarks_array.length; j++) {
    asArray[flashPaperMC.fpBookmarks_array
    [j].publicName_str] =
    flashPaperMC.fpBookmarks_array[j].anchorName_str;
    trace(asArray.toString());
    return asArray;
    function goBookmark(theName, flashPaperI, bookmarkMap) {
    flashPaperI.goToLinkTarget("anchor:"+bookmarkMap[theName]);
    }

  • FlashPaper doesn't display

    This is pretty bizarre.
    Using IE6 with Flash 7, the document displayed fine.
    A co-worker has IE6 and Flash 9 and the document doesn't
    display, get blank white screen never loads the "movie"
    I installed Flash 9, same problem. HOWEVER, Firefox with
    Flash 9 displays the document without issue. This makes no sense to
    me whatsoever. Flash 9 should be Flash 9 regardless of browser.
    Other FlashPaper examples from various websites DO display properly
    in IE 6 with Flash 9.
    Any ideas?

    Seems I shouldn't bother just found this link indicating
    Adobe is pretty much abandoning FlashPaper
    http://uk.techcrunch.com/2008/09/04/startups-in-chaos-as-adobes-flashpaper-discontinues/

  • Acrobat 9 - any sign of FlashPaper?

    With the new version of Acrobat claiming to provide a close
    integration of Flash and PDF, does anyone know if there is a
    replacement for, or update of, FlashPaper which disappeared in CS3?
    I find FlashPaper such a useful application that I'm amazed it
    appears to have so few users. How else can you easily display a
    fully formatted Word document on your site, under the complete
    control of Flash rather than losing control of it to whatever setup
    of Acrobat & browser your visitor is using?

    See http://support.apple.com/kb/index?page=search&src=support_site.home.search&local e=en_US&q=Java to find the Java install you need.

  • Flashpaper in director

    Hi,
    i have a problem with flash paper in director. when i import
    SWF file which is made by Flashpaper in director, i cant enlarge
    it. But when i open it in desktop it enlarge/reduce...
    can it possiable to scale it in director...
    gopalb

    You should try this tutorial. it covers your question:
    http://www.adobe.com/devnet/director/articles/flashpaper_in_director.html
    Good luck.
    Juan

  • Why is the FlashPaper in my website in front of my Navigation?

    I loaded FlashPaper onto my site so people can view the newsletter right on their screen, my problem however, is that now you cannot get to the horizontal Spry navigation because the Flashpaper file covers it.  How do I place the file at the back to allow the navigation to drop down over top of it?
    www.fccilm.org/news.html
    All help would be appreciated.  I am using DreamWeaver CS4.

    Also, for future reference, PPro2 has a different forum http://forums.adobe.com/community/premiere/premierepro_previous?view=all
    For this discussion, what are you editing?
    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    http://forums.adobe.com/thread/592070?tstart=30
    For PC http://mediainfo.sourceforge.net/en or http://www.headbands.com/gspot/
    For Mac http://mediainspector.massanti.com/

  • Interactive Forms and FlashPaper

    My client would like to replace our traditional HTML Contact
    form with a FlashPaper form which can be filled out and submitted,
    just like the HTML form. How would I go about creating such a
    form?

    Hi Luiza
    some of the interactive Adobe tutorials on the Web Dynpro tutorial page also contain Submit buttons.
    Check this page: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#pdf
    Regards,
    Markus Meisl
    SAP NetWeaver Product Management

  • Problem with contribute 3.11/flashpaper 2 printer driver

    I have problem with the contribute 3.11 and flashpaper 2
    printer driver. When I try to install it to my lab under domain
    enviroment, that mean multi user will use the same computer with
    differ user right. The problem is, when user with admin right log
    into the domain and left click on any file the first time,
    contribute install a new flahspaper driver, eg. macromedia
    flashpaper, macromedia flashpaper (copy 1), macromedia flashpaper
    (copy 2) etc...another problem is, when the user with domain user
    right login the computer, when they left click on any file the
    first time, contribute try to install the flashpaper printer driver
    for them, but since they are not allow to install any printer
    driver, the message," you do not have primission to install the
    printer driver etc" pop up and it only pop up once.
    Are there anyone have the same problem? Anyone know how to
    fix it? Thank you for the help in advance.
    Darksolo

    Hi,
    Please check with in your environmental variable whether JDK is 32 bit or shifted to 64 bit.
    It seems even though you have 64 bit still it is taking 32 bit only.
    Regards,
    Kal

  • FlashPaper Menu in Word Missing

    I have recently installed Studio 8 which comes with
    Contribute 3 which come with FlashPaper2 (why they bundled
    Contribute and FlashPaper together, I can't figure). I like
    FlashPaper and have been experimenting with it in my work area. For
    some reason, I get to work today and Word does not have the
    FlashPaper conversion menu or the Tool bar showing. I check my
    toolbar settings to turn them back on and the option isn't there. I
    check MS Excel and PowerPoint and the Menu and toolbars are
    showing, no problem. I tried unistalling Contribute and
    reinstalling (cuz FPis bundled with Contribute). Still no luck.
    Has anyone encountered this and if so, what is the solution?
    Most of my FlashPaper conversions would be in Word.

    Adjust your Macro Security settings (via "Tools") in MS
    Office applications: bring it to "medium" level, and restart MS
    Word/Excel/Powerpoint.
    When prompted: accept Macros from Adobe and particularly the
    "blank" one. And you see "flashpaper" menu and toolbar appearing
    within seconds.
    Still doesn't work? Restart your computer, with the macro
    settings in MS office application at medium security level.
    Hope it helps. Please share your experience.

  • FlashPaper & Command Line Conversion

    Hello,
    I need for work purposes to use FlashPaper for ppt pdf swf
    conversion, but I want to do such things from our J2EE FlashCom
    webapp (calling run.exec("C:\Program Files.....\flashpaper.exe...
    ")) as if we were running FlashPaper from command line. Is there a
    way to run it from the command line lets say :flashpaper -inputfile
    - outputfile. If yes does somebody know the synopsis for doing
    that?
    Thanks & Cheers,
    A.Dafinei

    quote:
    Originally posted by:
    JC!
    Yes. If you run the FlashPaper.exe file with the file to
    convert and specify the output file name with a -o flag, you can do
    it via the command line. What this does is launch Acrobat Reader,
    load the file, and print to SWF. It isn't elegant, but it works.
    FlashPaper.exe MyFile.pdf -o MyFile.swf
    The problem with simply sticking this into a loop is that the
    command returns immediately, even though the conversion hasn't
    completed yet. Since Acrobat Reader is actually doing the
    conversion, you have to wait until the PDF file exists before you
    process the next file.
    Here is a Perl script a co-worker found that basically does
    this for a folder, recursively. Move the source and output files
    elsewhere and pop the whole thing into another loop and it should
    go indefinitely. It is pretty simple, and should be easy to convert
    into the scripting language of your choice.
    <legal mumbo-jumbo>
    This script is provided as-is, with no guarantee that it will
    be appropriate for your use.
    </legal mumbo-jumbo>

  • FlashPaper hangs when converting PowerPoint t to Flash swf

    I tried a very simple one page powerpoint with the word test.
    I hit FlashPaper-convert to Flash SWF; the dialog box appears and
    indicates it is converting but it never finished. Is this also a
    bug and is there a fix?
    Thx,
    Dave

    No you can't from a book - there might be a script for it?
    I've had alook around and I can't find one.
    You could place all the indesign files into a new indesign file and then export to SWF that way.
    There's a script called multipage importer that would be able to automate the inesertion of all the pages.

  • Unloading FlashPaper Document from Flash Movie

    I'm using the following script to play a FlashPaper movie clip:
    // 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", true);
    fp.showUIElement("Print", true);
    fp.showUIElement("Find", true);
    fp.showUIElement("Tool", true);
    fp.showUIElement("Pop", true);
    fp.showUIElement("Zoom", true);
    fp.showUIElement("Page", true);
    fp.showUIElement("Overflow", true);
    fp.enableScrolling(true);
    // Some additional API features (here commented out):
    // Go to page:
    // fp.setCurrentPage(8);
    // 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 = this.createEmptyMovieClip("theDocMC",100);
    // Position it on the stage:
    theDocMC_mc._x = -220;
    theDocMC_mc._y = -150;
    // Load the FlashPaper SWF into the clip,
    //   size it, and trigger the onLoaded() function:
    loadFlashPaper("MarketingDoc.swf", theDocMC_mc, 500, 350, this);
    Everything works fine on all pages including the page with the FlashPaper movie. The problem is after I visit the page with the FlashPaper movie my file starts to play through all the pages and wont stop.
    I'm new to flash and this has been driving me mad. Any tips would be greatly apprciated.
    files attached for example of my problem:
    Thanks.

    jollygrizzly wrote:
    > This might seem like a bit of a silly question. I have a
    PDF I want to upload
    > and make available to download from my flash website. I
    originally did this by
    > uploading the file to '4share' but my employer did not
    like it saying it was a
    > bit confusing and full of adverts. If I upload the PDF
    with the rest of my
    > site to the remote folder how do I connect a button in
    the website to
    > automatically start a download of the file? Should I
    have the file in an html
    > document, or is it a simple case of getURL on the
    desired button? If so, what
    > do I need to do to the PDF before the link will work
    correctly.
    >
    getURL action and instead of URL, path to your file on sever.
    Depends on user end, if the browser has DPF plugin, the file
    will
    automatically open so if you want to force download, zip that
    file.
    ZIP always prompt download dialog.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • FlashPaper from PDF Doesn't Search

    Greetings Flashers! I need to be able to search a FlashPaper
    document that is being converted from a PDF. As of now, I am unable
    to search the new FlashPaper document. The original PDF is created
    in InDesign CS2 and is being exported as a PDF, version 7. I did
    see on here that to fix this search issue, one should save the PDF
    as a version 5.1, but that didn't seem to work. Can anyone help me
    with this? Thanks so much in advance!
    Jonathan

    Hi,
       Same problem here too.
       I am using:
        FlashPaper 2.0,
        Flash Player 10,
        Acrobat 9 Pro,
        Flash CS5.5.
          But, search does not work when printing from PDF. (It works when I print from MS-Word)
    Please let me know if any solution available.
         Thank you,
        Vinod Kumar.K.V

Maybe you are looking for

  • How can I download my copy of photoshop from a new computer?

    Hi, I'm trying to download my copy of photoshop and I'm entangled by menu options. It was once downloaded on an old computer, but I have no access to that computer anymore--long story, the program isn't in use. Is it even possible? Thanks in advance,

  • Windows File CS Content Crawler - Permission Issues

    Hi, Having a strange problem with a Windows File CS Content Crawler. We have setup a shared directory on a server (on the same subnet/network as the portal server) where users drop their files (Word, PDF, Excel etc). We have a Content Crawler job tha

  • How much better is the new Graphic Card?

    How much better is the new graphic card compared to the X1600 256mb in the older 2.33 Core 2 duo's? Im a gamer and was wondering if there is gonna be a big difference or just a small difference?

  • Change mouse pointer over selected text

    I have a JTextArea and i want to change the default mouse pointer to the arrow pointer when the user points to a selected text. Just like the way JCreator works.! Thanx

  • Pages being displayed at inconsistent sizes. Help?

    Running Acrobat Pro 9 on Windows XP. Hi. I have recently been tasked at work with scanning several laboratory logbooks to create PDF versions of the book to be archived in our network. Since all pages come from the same book, all files (saved as .PNG