PDF export to SWF with options

I would like to have an export feature to export my PDF's to a SWF file with navigation buttons, page curls, page location, zoom in/out features (magnifying glass showing), page print, and other additional interactivity that I can choose and/or customize.
The one that is included in the Indesign CS4 is not very intuitive and is very weak.

Many thanks. The batch option converts absolutely everything in a folder. Next time I'll move the EPS files to a new folder and disable the 'Open' command.

Similar Messages

  • Which program would export a swf with embedded mp3?

    And not export with it in a Resource folder, as i need to upload one file with music embedded within?
    I am currently exporting from INDD but the interactive mp3 is exported in a seperate resource folder, and I wish to upload the SWF to a website home page as a single file, thanks!

    Hello James,
    a swf-file with a mp3 in it? I'm not sure to understand you in the right way.
    I for my part made a Dreamweaver testwebsite which I called "INSERT Test with different types of media". You could have a look there to see whether it satisfies your expectations: Forum Video
    Hans-Günter

  • Crystal Reports for VS 2010 corrupts "some" Thai chars on PDF Export

    Any Thai character that contains a symbol above it (like an umlat in English) gets corrupted when exporting a report to PDF, yet the same report can be exported to Excel or Word without any issue.
    See the following character - once with a symbol above one without:
    ล้ ล
    The PDF file will not display the first character - instead it displays the second character overlayed on a box (like you get when the font does not contain the required character)
    If I create a text field in the Crystal designer, it does the same thing - but when I right click and edit, it displays correctly - until I click out of the field when the problem returns. So this suggests the problem is before the PDF export and maybe with the designer - but then why does it work if i export to Word?
    I have tried may different fonts - including those specifically recommended and used by the Thais, but all have the same issue.
    My work around at the moment is to use Word instead of PDF, as I do not believe there is a configuration change I can make that will resolve the issue, but would love to hear otherwise.
    I am using Crystal Reports for Visual Studio 2010 version 13 running on Windows 7 x64. I have a beta 2 download of v14, but it requires a key code which i do not have, so as yet ahave been unable to verify if this issue is resolved in that version.
    if anyone knows otherwise, please let me know
    Cheers
    Jed

    Thanks Don,
    (Good to know that version 13 I am running is the correct one)
    I have tried many UTF-8 fonts, with largely similar results, but this testing here is with Cordia New - a font largely aimed at Thai Language and the one our Thai customers always use.
    I have confirmed that right click and export from the IDE still shows the box on certain characters - but note that the box does not replace these characters (as would be the case if they were missing) but rather overlays them - which is why my subject includes the word 'corrupt'
    All testing so far in on my Windows 7 development machine - so no user issues are involved
    The code if fairly simple at this stage - define and load a data set - then link it to the report and use the built in export to disk functions:
                    OutboundSummary rpt = new OutboundSummary();
                    rpt.SetDataSource(outboundSummary);
                    string tempDir = Environment.GetEnvironmentVariable("TEMP") + "
                    string filename = tempDir + DateTime.Now.ToString("yyyy-MM-dd HH-mm-ss");
                    rpt.ExportToDisk(ExportFormatType.PortableDocFormat, filename + ".pdf");
                    rpt.ExportToDisk(ExportFormatType.WordForWindows, filename + ".doc");
    If anyone wanted to verify, here is a piece of Thai text that will show the problem
    ผลรวมแฟกซ์ที่ยังอยู่ในคิว
    To better illustrate the problem, the attached image will help
    [IMG]http://i55.tinypic.com/hweh42.jpg[/IMG]
    I am coming to the conclusion that perhaps these characters are not single characters - at least do not appear as such with each font - and perhaps Windows does some magic to make them appear correctly. I can see that Word automatically converts them to a suitable font - i.e. a mixed language text file imports into word with different fonts for different languages - and you cannot change the font to one that does not support the language. I can specify Arial from Crystal which does not contain thai characters at all - but export to word and they show correctly.
    Crystal spits the data out and Word converts it correctly, but acrobat does not - so maybe it is their fault?
    I have all language packs on my machine - and doing Chinese next suggests that even if I find a thai font that worked, it would not work in chinese, so am thinking word or rtf might be the winner.
    Cheers
    Jed

  • Bad quality footer in PDF export

    I have been using pages for a while and find it really handy for the day to day's work. But I found an apparent limitation:
    I often use footers that are really small (8pt) and in a light font (Helvetica Neue light). When I export my file to PDF (both, with the PDF export functionality and with via the printer and "safe as pdf ..."), the quality of the footer is always really bad - like with a bad resolution. The rest of the text is ok, just the footer ... what could that be?
    Tanks for any help.

    I'm having the same problem. Creating a PDF (print->preview, export, or print->save as pdf) for a document that contains any font sized 8 point or lower results in really poor quality output... blocky non anti-aliased fonts.
    This happens with multiple fonts (Helvetica, Helvetica Neue, Garamond, Futura, etc). Raising the size to 9 point or greater gives high quality output.

  • Remove ALL Images from PDF Export?

    I'd like to remove ALL images from a PDF export (Indesign CS6), with the intention of having the smallest file size possible for review. All the images are Photoshop PSDs.
    I have created a PDF Preset (PDF 1.7) that omits EPS, PDF and Bitmap.
    That covers any PSDs that contain opaque backgrounds, i.e. are considered to be non-transparent. However, any PSDs that do NOT contain such backgrounds still appear in the exported PDF. I assume they are NOT considered to be Bitmaps?!?
    I've gone for maximal compression of images (in the Preset) also just to see how small I can get the file, but it's still over a meg, and I'd really like even smaller. I live in a rural part of England where net access is painfully slow, and even a few meg of data takes far too long to upload, not to mention the constant drop-outs. Consider further that my document is likely to grow by several orders of magnitude and hopefully you can see why I'd like to sort this issue out as soon as possible.
    I've not done any scripting but assume it would be trivial to hide images with a script. However, I'm not sure how such a script might know how to make visible only the images that were previously hidden by the script. Obviously I would not wish to unhide images that must stay hidden. Maybe some form of image/object tagging, if that's even possible in this product, i.e. tag them "temp hide" on first pass of the script, and so forth.
    Any suggestions much appreciated.
    Regards,
    James

    @James – to mark the container frames of the nonprinting images by a fill color, you could add the following lines of code in the for loop:
    allGraphicsArray[n].nonprinting = true;
    //The parent of the graphic is the container that holds it.
    //We could use it to fill it with a tint of e.g. 20% of black:
    allGraphicsArray[n].parent.fillColor = "Black";
    allGraphicsArray[n].parent.fillTint = 20;
    But this approach will add a new problem for images, that only use a portion of the holding graphic frame. Or are only partly visible due to a clipping path or a clipping mask or totally transparent areas due to transparent pixels.
    Already colored backgrounds will be recolored…
    @Sandee – I see the advantage of the PostScript to Distiller way in this situation, but there are two disadvantages:
    1. Live transparency will be flattened (could be no issue in this use case, but you never know).
    2. The gray area with the big X will be applied also to parts of the images where no pixels are present (transparent pixels in PhotoShop or TIFF files).
    To work around all these issues we need a more complex script that is building a  path object around the transparent parts of an image or using an applied clipping path for that purpose and fill that with a gray tint (and maybe with an X).
    Here some screen shots to illustrate the problems (with or without using PostScript/Distiller):
    1. Original set up:
    One placed PhotoShop file with transparency stacked upon the text frame.
    The image inside its holding frame is selected.
    The visibility of one of its layers depicting a second chair on the left side is switched off.
    2. The same setup in a different view:
    3. After running the script with the two additional lines of code:
    Using the PostScript method would do nearly the same plus adding a cross using the  area of the selected image.
    Uwe

  • Adobe PDF Export Converting 100% Black Body Copy to 4-color Black

    Hi,
    I've been trying to figure out the best way to make use of an RGB workflow for our news publication and magazines. In the process, I've noticed that in my PDF export, by selecting the option under "Profile Inclusion Policy: Include Destination Profile" it causes all of my 100% black text to become 4-color. Why is it doing that?

    But the text is not RGB, it is 100% black in CMYK.

  • Export to PDF with Options

    Hi,
    I would like to export the active document to PDF with options [Standard options] using vbscript.
    Is there any sample or references for this?
    Thanks,
    Shailesh

    A quick copy to help you getting started.
    myInDesign.ActiveDocument.Export "Adobe PDF", TargetPDFfilepath, False, IDPDFPresetName
    The command can be found in VB reference guide (and scripting guide I believe)

  • PDF Export option greyed out in DIAdem 11.1 with Win7 64-bit

    In DIAdem Report tab, the "PDF Export..." (Under menuitem "File") option is visible but greyed out.

    Hello NI_LV_82_User,
    The DIAdem PDF output is not compatible with Windows 7 (DIAdem 11.1 was released in July 2009, Windows 7 was made available in October 2009). The DIAdem R&D department is currently working on a fix to add this functionality under Windows 7. We are working to provide a solution as soon as possible and will make the release of the Service Pack known here on the forum as soon as it is available.
    Message Edited by Otmar on 11-30-2009 02:13 PM
    Otmar D. Foehner
    Business Development Manager
    DIAdem and Test Data Management
    National Instruments
    Austin, TX - USA
    "For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

  • How do I play FC swf with animation & video inside interactive pdf?

    Hello...good people! I want to create an interactive PDF using a published FC swf (offline view version) with flv video and animation. The problem I'm having is with video playback inside the pdf. EVERYTHING ELSE WORKS EXCEPT VIDEO! It's as if Acrobat is not reading the asset folder (where the video file is located) created by FC. All animations work and even the video control (skin) appears! Just....no....video!
    When I RUN PROJECT (inside browser), everything works perfectly!
    As a matter of fact, I am able to create damn-near-the-same SWF (with flv video playback and animation) inside InDesign CS5 (hint hint!) using the animation and media panel and Export> SWF command (and again everything works perfectly!)
    In case you want to know how I do it, here's how it works....
    1. Drag-and-drop your SWF created in InDesign into Acrobat 9 Pro or Pro Extended.
    2. When the INSERT FLASH dialogue box appears, check SHOW ADVANCED OPTIONS. Click the RESOURCES tab. Click the ADD DIRECTORY button. Then, locate the asset folder (with flv/f4v video) associated with your SWF. Click OK.
    3. And bam!!...the SWF (video playback and animation) should appear and play as soon as the dialogue box closes.
    But remember...this is with InDesign CS5! How do I do this with FC? Why does everything work BUT the video playback when I follow these same steps after publishing from FC? WHAT AM I MISSING OR DOING WRONG?!!! I know I can do a lot more with FC and I want to see the same awesomeness of FC interactivity in my PDF as I see in my browser!!! If InDesign can do it, I know there's a way FC can!!!! Now....a little help please!
    Thanks,
    Big Waddy

    Hi,
    Interesting application for the Fc output.  I tried this out and it seems to work fine.  Here are the steps I went through.
    Created the fxp file and output the result
    Created the pdf
    From inside Acrobat Pro, I selected the Multimedia > Flash Tool and then chose the area in the document where I wanted to place the Fc output
    I chose the Main.swf for placement
    Acrobat Pro places the file
    I saved the pdf and then opened the file in the browser
    A play button appears and works when pressed
    Not sure what would happen when placed on a server.  Expect that you would need to keep all the files in the correct path/relationship to each other.
    Hope this helps.
    Tanya

  • Problem with PDF 1.3-Export: Photoshop-Files with transparency over InDesign colored objects

    Hello!
    I'm using InDesign CS6.
    I'v finished now a layout for a folder, and I put a photoshop-image with transparency over a InDesign-rectangle which I have filled with a cmyk-color in yellow.
    When I export a PDF with the Settings "PDF X-3:2002" (with PDF-Standard 1.3) the Photoshop-image shows uggley jagged edges at the border to the InDesign-colored background. However, the Photoshop-images which are over another bitmap-image (as background), this images don't show this annoying edges.
    When I export to PDF-Standard 1.4 the problem doesn't occor, however my printing-service requests PDF 1.3.
    I know, the workaround for this problem is, to replace the yellow background-color with an bitmap-file with the same color, but is there any other option to get a correct result without this more time-consuming image trick?
    I think it has to do with the transparency reduction which is necessary if using PDF 1.3. When I examine the PDF-File in Illustrator, this edges occurs mostly at the borders from the tiles in which the image is cut during the transparency reduction process. Although, if I open the rendered PDF in Photoshop this jagged edeges are visible, so it is definitly a render error.
    I would be glad if someone of you has a solution for this problem, in the attachment is an image which illustrate the problem.
    Best wishes

    Find another printer.
    End of problem. It really saddens me to think that these Luddites are
    still in business making no effort to move into the 21st century.
    Bob

  • Fonts Not Embedding Consistently with PDF Export - Inconsistent Fix and Unknown Cause

    I have had ongoing problems with PDF export from FrameMaker. Sometimes the correct fonts do not embed in the PDF and Times New Roman is substituted. The problem appears and disappears and is causing me a lot of lost time and frustration.
    I am running FrameMaker 9.0 fully patched on Windows 7 Ultimate 64-bit. I have seen people complain about this issue and am familiar with the suggested fixes. However, the exact cause and solution eludes me because the problem continues to recur and I am only able to recover with guesswork and workarounds.
    Initially I did the following:
    ACROBAT PDF SETTINGS
    - In the printer properties for Adobe PDF settings I turned off the option "Rely on system fonts only; do not use documents fonts."
    ACROBAT DISTILLER SETTING
    Under "Font" Settings I changed the following:
    - Under "Settings/Font Locations" I added the font folder for Technical Communication Suite 2.0 and made sure all the fonts existed there and in the Windows default font directory.
    - Under "Settings/Edit Adobe PDF Setting/Fonts" I changed the following options:
                - Selected "Embed all fonts"
                - Under "Embedding" chose "Always Embed" for the target fonts.
    I tweaked these settings for hours and got no results. Then I rebooted and the problem had magically disappeared. I fixed the issue in the same way on another machine and the results were permanent and I was just happy to finally have it fixed, But this time it didn't last.
    I should note that upon reboot, when I used the stock "PDF Job Options," the correct fonts still embedded, leading me to believe that the fix had nothing to do with the changes I made to Distiller settings.
    After reboot I generated PDFs with the correct fonts embedded. Then I shut down FM, but left the system running. The next morning I opened FM again and the same problem occurred.
    So I rebooted again -- and the problem disappeared again. I therefore thought maybe the issue fixes on reboot but recurs when you shut down FM and reopen. So I shut down FM again and reopened, but it is still working fine for the moment.
    I verified that the Adobe PDF settings under "Printers & Devices" that I turned off (Rely on system fonts only; do not use documents fonts) remained correctly unchecked through all these changes.
    I would really like to know why this happens so I can resolve it permanently and avoid more lost time.
    Thanks in advance,
    Douglas

    The common theme I'm seeing here is that the setting edits you make in
    Distiller through the FM "Save As PDF" option don't seem to take effect.
    Do you know if that is true or could you elaborate on the notorious nature
    of this method for me?
    >
    There are too many potential and transient problems to list. The only thing
    I can say is that I've been an active member of the FrameUsers listserv
    (http://lists.frameusers.com/mailman/listinfo/framers) since FM version 6.0,
    circa 2001, and probably 95% of the PDF problems reported there have been
    fixed simply by using print to Adobe PDF (or to Acrobat Distiller in older
    PDF versions), instead of using Save as PDF. Common advice there has always
    been to avoid Save as PDF and even some Adobe employees have recommended
    against using it. It doesn't matter which FM version.
    The once-busy FrameUsers listserve has been fading away, recently, as this
    new Adobe forum software allows reading via e-mail, and attachment of
    screenshots.  Even if you look around on this forum now, you'll probably
    find that there are two main fixes for issues with PDF. One is NOT using
    Save as PDF, which seems to fix a whole bunch of issues. The other is the
    use of a Windows hotfix to squash a Windows OS bug that causes dropped
    characters in PDFs.
    In the rare instances that someone has issues with printing to PDF, they are
    almost always related to errors in settings. Or occasionally someone can't
    embed fonts because they are trying to the embed the virtual fonts that come
    with their printer driver instead of fonts that have actually been installed
    on their computer. (The fonts are hard-wired on their printer, so the system
    can use them but not embed them.)

  • Aliased text on PDF export with blending modes

    So I've had this issue with a pdf, I tried to export it CMYK, RVB, interactive pdf, regular pdf, with tons of different other options, the text was still very aliased.
    I decided to take it back from scratch, openned a new document with the same size, and copied/pasted element after element from the old one to the new one, exporting as pdf between each copy/paste. The first exports went really well, the render was great… until I pasted a vector element that was applied with a blending mode (overlay).
    When I switched it to normal, the pdf export was smooth again. Tried every blending mode, everyone makes the text jaggy. Switch back, it's ok. So I'm 100% sure that this comes from blending modes, as opposed to what I could have read on other forums.
    This is a request, please, InDesign team, take care of this problem, this is quite annoying in many cases.
    Thank you for your attention!
    Twitted here as well : https://twitter.com/grinderlabs/status/448381486627311616

    To minmize the possibility of rasterizing or outlining text when transparency is flattened, keep the text above any transparent objects. Blending modes, along with most effects, use transparency.
    You can also minimize the risk by exporting the PDF with live transparency, which is supported in Acrobat 5 or higher compatibility.

  • Captivate 8 : the PDF export created a file with a PDF extension.. but it's actually a video. Shouldn't it export the slides as a proper PDF document ?

    In Adobe Captivate, there is a "PDF export" checkbox available when you publish your project.
    It checked the box, and the project pulication created a file with a PDF extension.. but it's actually a video. Shouldn't it export the slides as a proper PDF document ?

    Thanks for the quick answer. I did not know about interactive PDFs..
    I just found how to export as a Word document. I would have expected to find that option in "Publish" or "Export", not "Print".. Anyway, I now have what I needed

  • Export PDF as JPEG fails with Adobe Save for Web AI Error

    Hello,
    We have an Illustrator Javascript program to convert a PDF file to a JPEG.  It does some adjustments along the way, but I have boiled the script down so it just opens the PDF file, then uses the export method to export it to a JPEG file.  The problem is the JPEG conversion is failing.  When I run with user interaction layer set to DONTDISPLAYALERTS, as I normally do, it silently fails and continues; I do not get an exception, and the export method does not have another way to return an error.  When I do display alerts, I get a dialog box saying:
    Adobe Save for Web AI Error
    Could not complete this operation. An unknown error has occurred.
    It looks like this:
    What's weird is if I open the same PDF file in Illustrator and select File / Export it works fine.  I do get this error though if I select File / Save for Web & Devices.  I'm not sure why the export method would do a Save for Web though.
    The code looks basically like this:
    // Set filename, docName, destFolder
    file = new File(filename);
    sourceDoc = app.open(file);
    var fileSpec = new File( destFolder + "/" + docName +"_LARGE");
    var exportOptions = new ExportOptionsJPEG();
    var type = ExportType.JPEG;
    app.activeDocument.exportFile( fileSpec, type );
    For testing purposes, I have shortened the code so it is that, with the variable setting code above.
    Any help is very much appreciated.
    Thanks!
    ------Scott.

    I have not tested exporting without passing any options. You have however created a variable to an empty options object but not passed it.
    did you also try…
    app.activeDocument.exportFile( fileSpec, type, exportOptions );

  • INDS CS6 - PDF Export at High Quality issues with Gradients.

    Hi all,
    We're noticing that on our PDF exports from our INDS instances we're seeing that gradients are showing up when the PDF is printed. You can visibly see the gradient lines. We have our INDS set for 'High Quality Print' and upon viewing the PDF in your browser it looks fine but when you print the PDF you can see the gradient lines.
    We've exported the same IDML's directly from InDesign to PDF to Print and the gradients do not show up.
    Is there a ExportPDF option we are missing on the InDesign Server that I need to tweak to make these gradients smooth and disappear?

    Marvin,
    The TIF file in this example consists of a repeating sequence of adjacent columns in the following configuration: 8 white pixel, 7 black pixels.
    This pattern repeats across the width of the file.
    I've attached one of these files below. Please try to view it at 4000% when placed in InDesign.
    (Please note that this problem also occurs with photographic images as well).
    If I then crop the attached file in Photoshop, re-save and place in InDesign it will preview correctly at 4000%.
    If I leave it at its original dimensions, but convert to a Gray TIF, it will preview correctly -for a while, but eventually also become "corrupted". As I mentioned in my initial post, I've had to use a Grey TIF to get the placement correct, then replace with the CMYK TIF version. Saving with and without LZW compression makes no difference. The fact that the Grey version works temporarily has got me confused. As it happens, for the moment anyway, a narrow width file in CMYK is previewing okay, but then in the past I've used TIFs just ~100 mm wide and had the same problem.

Maybe you are looking for