Exporting a PDF with a playable QuickTime embedded

Is it possible?
Thanks

For sure, it is … but not from Pages
Yvan KOENIG (VALLAURIS, France) lundi 27 septembre 2010 15:55:22

Similar Messages

  • Exporting to pdf with new numbers app

    recently i upgraded from numbers 09 to numbers 3.0. i have a worksheet with 2 pages. with numbers 09 when i export to pdf it export as pdf with 2 pages works fine. but in numbers 3.0 when i wxport the same worksheet it combines both pages in one pdf page so i can't print it on 2 pages. any solution ?

    Vikas
    The solution is to Print to PDF rather than Export to PDF.
    You will see that there are two pages in the Print dialog preview, and when you choose PDF, Open in Preview, you will see that the PDF version of the file has two pages.
    Jerry

  • Export as PDF with embedded profiles for Grayscale images

    Does InDesign CS6 export pages with Grayscale images as PDF with embedded profiles?
    Possible profiles, for instance:
    – Gamma 2.2
    – Dot gain 20%
    – Black Ink ISO Coated v2 (ECI)
    Export mode:
    – Acrobat 5 or higher
    – No color conversion
    – Embed all profiles
    Test by Acrobat Pro
    Advanced > Print production > Preflight > PDF analysis > List objects using ICC/Lab/Calibrated Color
    [The question is not about the export of Color images as Grayscales]
    Best regards --Gernot Hoffmann

    I wouldn't ever use different RGB profiles and different CMYK profiles and
    different Gray profiles in one doc – it's just necessary for tests.
    If you had a hypothetical case where your InDesign document's assigned CMYK profile and intended output was ISOcoated_v2_300_eci and you recieved grayscales for placement with different gray profiles assigned, I think you would have to make the conversion in Photoshop if you want the grayscales to be converted to your ISOcoated_v2_300_eci output intent space.
    So in this case I have a grayscale image with Dot Gain 10% assigned and you can see the 50% patch is reading as 50% in Info panel:
    If set my Working Gray space to the ISO Coated profile as above and do a Convert to Profile with the Destination set to Working Gray:
    The preview doesn't change but I get converted gray values—50% is now 44%:
    If I place the grayscale in an InDesign doc with ISOcoated_v2_300_eci assigned as the CMYK profile, the preview won't change (you have to turn on Overprint /Sep Preview), and the converted numbers will show in Separation Preview. The preview and numbers will also be unchanged in Acrobat if you export to default PDF/X-4

  • WAD: Problems when exporting to PDF with embedded .swf

    I'm using Web Application Designer (WAD) 7 and have created a template with an "Export to PDF" button and an embedded .swf flash file which is an Xcelsius dashboard.
    What i'm trying to do is show the information I want on my dashboard and then export that to a PDF to email out to multiple users who would be interested in the data each month.  If exporting to PDF isn't the best route to get a snapshot of this dashboard out to other users and there's an easier way please let me know, but here are the issues i'm having:
    1) When I have the dashboard showing the information I want and click the "Export to PDF" button, the dashboard reloads as the PDF settings window pops up and gets reset back to it's initial state.
    2)  If I ignore problem #1 and click on 'OK' in the Export dialog anyway after selecting PDF settings, my Adobe Reader pops up but then shows a message saying "The file cannot be opened because it has no pages".  Basically it doesn't see the .swf as being a component to take a snapshot of and print on a PDF. I did try adding a text component just so there was something on the template and I then get a PDF with that text component showing and no .swf snapshot.
    Has anyone come up with a workaround for this?  I've tried using the BEx Broadcaster with the 'Send' option but get the same results in regards to the blank page.
    Thanks as always for the help!

    Thanks for the reply.
    The dashboard is connected to a query in NetWeaver BI to get its data.  So the request of the user is to be able to adjust the dashboard to show the information they need (well say of a certain region) and then take a snapshot of that and email it out to co-workers in Group A.  Then the user will adjust the dashboard to show other data (for a different region we'll say) and take a snapshot to email out to co-workers in Group B. etc and etc.
    I have looked into installing a PDFCreator print driver but that wouldn't be feasible to get it on all machines in the business.  I've also looked into getting it as a .jpeg which would suffice, but am unsure if there is a way to do it with script and connect that to the dashboard when a button is pushed (will look into this).  This seems like a topic for over in the Xcelsius forum now.
    I used the following code within the <body></body> tags of the WAD's xhtml to embed the .swf:
    <object id="dashboard" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" height="600" width="800" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" >
    <param name="Movie" value="bwmimerep:///sap/bw/mime/Customer/JavaScript/dashboard.swf" />
    <embed src="bwmimerep:///sap/bw/mime/Customer/JavaScript/dashboard.swf" name="dashboard" type="application/x-shockwave-flash" />
    </object>

  • How to keep embedded PDF's in an MS Word 2010 document during export to PDF with PDFmaker

    Hi,
    I am preparing in MS Word 2010 a Software Manual with embedded PDF's
    When I double click in MS Word on the inserted PDF, Acrobat opens the embedded PDF (these are A0 CAD Drawings).
    I want this functionality also after I have converted the MS Word file to a PDF with the PDFMaker add-in (Acrobat X Pro)
    Is this possible?
    Greetzzz,
    Gerben

    No. PDF files cannot be embedded within the pages of other PDF files.
    What you could do is attach the other files after the PDF has been created, then manually link to those attachments in Acrobat.

  • Export to PDF with MetaData

    I have a script that exports each individual page to a pdf with each page having it's own metadata.
    It works fine except for on small thing.
    The keyword array looks like this in the final PDF.
    ; "Keyword1, Keyword2, Keyword3
    How do I get rid of the semicolon and quotes?
    Thanks!
    main ();
    function main() {
    var curDoc = app.activeDocument;
    var docPath = app.activeDocument.filePath; 
    // Array of paragraph Style names
    var paraStyleNames = ["meta-title", "meta-alt", "meta-subject"]; // insert here your para names !
    var missingParaStyles = [];
    // check, if the styles are valid
    for ( var p = 0; p < paraStyleNames.length; p++ ) {
        var curName = paraStyleNames[p];
        // if the style is missing, push it to the array
        if ( !curDoc.paragraphStyles.itemByName(curName).isValid ) {
            missingParaStyles.push( curName );
    var folderPath = new Folder(docPath + "/" + curDoc.name.replace(/\.indd$/,"") + "-pdf");
        if (!folderPath.exists)
            folderPath.create();
    // loop through all pages
    for ( var i = 0; i < curDoc.pages.length; i++ ) {
        // the current page
        var curPage = curDoc.pages[i];
    // Page number
        var pName = (curPage.name < 10) ? ("0" + curPage.name) : curPage.name;
       // controls the loop
        var controller = true;
      // all paragraphs on the current page
        var allPageParas = curPage.textFrames.everyItem().paragraphs.everyItem().getElements();
        // loop through all paragraphs and check, if one has the para style applied
        for ( var p = 0; p < allPageParas.length; p++ ) {
            if ( !controller ) break;
            // the current para
            var curPara = allPageParas[p];
            // loop through the styles
            for ( var n = 0; n < paraStyleNames.length; n++ ) {
                if ( curPara.appliedParagraphStyle.name == "meta-title" ) {
                    var docTitle = curPara.contents;
                   } // end if
                if ( curPara.appliedParagraphStyle.name == "meta-alt" ) {
                    var docAlt = curPara.contents;
                } // end if
             if ( curPara.appliedParagraphStyle.name == "meta-subject" ) {
                    var docKeywords = curPara.contents;
                    var docDirectory = Array(docKeywords); 
                } // end if
            } // end for paraStyleNames
        } // end for allPageParas
    for (var i = 0; i < docDirectory.length; i++) {
        docDirectory[i] = docDirectory[i].replace(/; /g, "");
        var filePath = folderPath + "/" + curDoc.name.replace(/\.indd$/,"")  + "-" + pName + ".pdf";
        var myFile = File( filePath );
        var pdfPreset = "Labels";
        with (curDoc.metadataPreferences){
        documentTitle = docTitle;
        author = curDoc.name.replace(/\.indd$/,"") ;
        description = docAlt;
        contentCreator = curDoc.name.replace(/\.indd$/,"")  + "-" + pName ;
        keywords =  docDirectory;
    with (app.pdfExportPreferences) {
      pageRange = curPage.name; 
      viewPDF = false }
      curDoc.exportFile( ExportFormat.PDF_TYPE, myFile, false, pdfPreset );
      } // end for > main

    You mean rendered on top of the image? That info is already embedded inside the image as metadata. To render metadata on top of your image, you can use the slideshow module, add a text overlay with your custom metadata and export to jpegs. You can do similar things inside the Print module but you cannot control the placement of the text.

  • JRC for Eclipse 2.0: Export to PDF with Flash Objects in RPT file

    Hi,
        We've a few reports created with Flash objects in it ( from Xcelsius). We are trying to generate the reports and export it to PDF using the new JRC for Eclipse 2.0. The exported file size is big ( 600MB) but there is no flash object or data in it. Can you please help us with this one?
    Thanks,
    Bala

    Hi, Ted. Thanks for looking into this.
    I asked a similar question last September in this [thread|CR report with embedded SWF: Export to PDF displays nothing;. It's my understanding that exporting flash objects to pdf is not support in  CR 2008.
    In CR 2008, when I export a report containing a swf to pdf, the flash file is not rendered in Adobe Reader. It looks like there's just a picture. In fact, in CR, if you r-click on the swf and do Format Flash... | Flash, you can change the picture used for export and printing. The default picture is what I'm seeing in the pdf.
    I'm creating the swf using Xcelsius 2008. In XC 2008, if I export to pdf, the flash object is rendered. Why the difference?
    The same Adobe reader is being used in both cases.
    I'd be glad to send an .rpt with embeded swf for you to test.
    Thanks again.
    Tim

  • Problem while exporting to PDF with japanese character in Crystal Report X1

    Hi,
    I am using Crystal report X1 with classic ASP on a Windows 2003 Enterprise Server, SP 2. In my application, I have to export the report into PDF, CSV, DOC formats. I am have Japanese strings in the report. While exporting to PDF, empty boxes has displayed in the place of Japanese string and in CSV file, question mark has been displayed instead of Japanese string. But the Doc file is exported correctly. I have not installed any language support software either in server or in client machine. I have used MS Gothic and Arial Unicode MS fonts for the text-objects which has Japanese strings.
    Please give me a solution so that I will get PDF file with Japanese strings instead of empty box or question mark.
    Do I need to install any language support pack software?
    Thanks in advance.
    Regards,
    Manju

    Hi Don,
    Thank You for your reply. I have resolved the issue of exporting to pdf from crystal report X1 having Japanese data after installing the language pack.
    But when I am exporting to CSV or TXT, i am getting ??? instead of Japanese characters. I have tried "export" through crystal report designer and got ??? instead of Japanese.
    The Crystal report version I am using is Crystal report X1  11.0.0.1282
    Crystal Report Desinger is installed in Windows Xp machine
    Font set for Text object is Arial Unicode MS, MS PMincho, MS PGothic
    Does the Crystal report X1 11.0.0.1282 has the UTF-8 support for CVS / txt
    Please provide me a solution
    Thanks in advance,
    Regards,
    Manju

  • Cannot export to PDF with grayscale PDF in layout

    IDCS5.5, MacPro, OSX 10.7.4
    I am working on a grayscale teacher’s guide that accompanies a CMYK schoolbook. The introduction pages contain miniature pages of the workbook (formatted as grayscale PDF), but InDesign refuses to output those pages as PDF ("Impossible d’exporter le fichier PDF"), or when it does produce a PDF (when exporting page by page), Acrobat warns of a possible problem and stuff is missing on the resulting page, not necessarily from the grayscale minipages.
    I have tried grayscale PDFs created from the original CMYK PDFs in Acrobat Pro X, grayscale PDFs exported from the original CMYK file in InDesign CS6, PDFs reduced to 20% in InDesign, PDFs reduced to 20% with a third-party application and imported in ID at 100%, and all sort of variations on the export values. The problem is also present in InDesign CS4 (after exporting the file as IDML) and in CS6.
    The thing is, there is no problem at all if I use the CMYK PDF version of the minipages (I then turned the resulting PDF into grayscale with Acrobat Pro X). But the printer expects to see only grayscale images in a grayscale job, not color... and a Photoshop version of those minipages is not acceptable.
    Has anybody encountered that problem? Can you reproduce it, i.e. can you export to PDF if you use any type of grayscale PDFs in your layout?

    FOUND IT! Inspired by Rob solution, I was able to export my InDesign CS5.5 document containing some grayscale PDFs to PDF/X-3:2002 (and PDF/X-1a:2001), with or without the standard, but without converting to destination. For some reason, it does not work with PDF/X-4:2008, nor with any of the other presets.
    -3

  • Can't export a PDF with XFA form

    Cannot convert/export a PDF document containing an SFA form - can this program not do this?

    Hi Morin27,
    XFA forms are not regular PDF's but XML files in a PDF shell.
    To create a word file from those files, you first have to flatten the XFA forms by printing as PDF with the Adobe PDF Printer.
    Then you can save using ExportPDF the created static PDF as Word document.
    ~ Pranav

  • Problem exporting a PDF with Helvetica Neue

    I am using InDesign CS6 on Mac OSX 10.8.4. I have a PDF with Helvetica Neue in it. When I export this file to a PDF my client claims that the text is jumbled and appears to be widely spaced/leaded. I've read it's an issue with Helvetica Neue as a system font, and found the following solution, but wondered if there was a simpler answer that does not involve messing with my system fonts.
    http://indesignsecrets.com/removing-nonessential-system-fonts-in-leopard.php

    I am sorry this is the simplest way if you need to use exactly that font.

  • Export a PDF with Acrobat Layers

    How do you do this via scripting? In the normal InDesign PDF export UI, this is referred to as "Create Acrobat Layers" and is only enabled for Acrobat version 6+

    That property doesn't seem to do it. Here's the code I'm trying without success:
    function ExportAsPDF(inDocumentPath, inSaveDocumentPath)
         try
            app.open(File(inDocumentPath));
            currentDocument = app.documents[0];
              var preset = app.pdfExportPresets.item("[High Quality Print]").duplicate();
              with(preset)
                   exportLayers = true;
                   subsetFontsBelow = 0;       
                pdfColorSpace = PDFColorSpace.CMYK;
                pdfDestinationProfile = PDFProfileSelector.USE_DOCUMENT;
            currentDocument.exportFile(ExportFormat.pdfType, File(inSaveDocumentPath), preset);
         catch(thisError)
              throw thisError;
    As I said before, I'm trying to get a PDF with layers.

  • Export a PDF with Imposition and wraparound

    Hi everybody,
    I'm a relative newbie here, and I apologize for that.  I'm looking for some help in CS5 with imposition.
    Specifically:
    I created a 28 page booklet, 8.5x11, for a client that has 28 pages.   Same booklet as last year.  However, this year, the client - to save money - wants to print on tabloid paper.  So an 8.5x11 format needs to convert to 17x11.
    The printer they have chosen wants the inDesign document as a PDF.
    Two unique problems:  one, how do I export to PDF a document that allows for imposition.  And two, the front and back cover are wraparound (a single image). 
    Or, more concisely, how do I format this correctly?  And can it be done in a single file?  Or would a second file be required to handle the wraparound of 1 and 28?

    I would have thought that too, but that's not what I'm hearing from the printer.
    You are correct: I have been told by the printer that 14 11x17 sheets, printed double-sided, and golden in half, will save the client significant money. Hence the reason the client made the change.  So getting my imposition right kinda got me scratching my head. But let me revisit that with them.
    The cover issue I still need to be clear on:  how pages 1 and 28 can have a wraparound image , and still assimilate into a layout. How would you handle that in your print house?  Right now I moved 28 to precede 1, built the layout, and then moved that half image back down in the layout. Is that correct?
    Thanks so much for your insight.

  • Export to PDF with Working Hyperlink

    Post Author: JaeLevel3
    CA Forum: Exporting
    I saw a few of these questions, and left unanswered.  I hope answering this question can help several people.
    It appears when the hyperlink starts with http, exporting Crystal to PDF, Acrobat recognizes the link.  However, when the hyperlink is to a file on a drive, exporting to PDF, the link is not recognized.  Is there a way to have the hyperlink to a file on a drive remain active when exported to PDF?

    One of the 3rd-party Crystal Reports Desktop Scheduling tools listed at: http://www.kenhamady.com/bookmarks.html provides a solution for this. It allows you to automate the process of exporting to pdf and then detecting file references in the pdf text and turning them to hyperlinks or detecting invisible formulas and turning them into file hyperlinks.

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

Maybe you are looking for

  • The TADIR entry for Program name is missing in ABAP report

    Hi, I created an  User group , Infoset  & ABAP query, generated a report with the help of ABAP Query. However when I did the extended syntax check for the same i got the fatal error. "The TADIR entry for <Program name> is missing (Message cannot be h

  • OID Provisioning issue on OIM 11g

    Hi, I have ran the target user recon for OID and noticed from the events that users are not linked. I tried assigning OID User resource from the provisioning workflow on the admin console but I am seeing the following the issue: DOBJ.ORC_NO_ORDER An

  • Exporting video from iPhoto to Desktop

    I take a video with my iPhone4. I download it to iPhoto (9.3.2) on my MBP Retina (Mtn Lion). I export it from iPhoto to my desktop. When I play it on my desktop (QT 10.2), I get no picture and no sound. What's happening?

  • System exec function

    could someone give me a hint as to what the 'expected output size' input on System Exec refers to? I'm using it to run another program which will download some data for me to work on with labview. I dont expect it has anything to do with the file siz

  • Does not open some pictures at Picasa

    Firefox does not open some pictures on picasa where IE opens them all. This only happens at Picasa, with everyones albums. Only about 1/2 show up and the ones that do not cannot be opened.