PDF to DDX file

Anyone else having issues recently with DDX calls that seem to return corrupted text from recent PDF files. Coincidentally, Firefox 26 renders the same same document incorrectly.
AFC

[email protected] wrote:
> 1. can anyone send me an example of a simple DDX file (e.g. edding a comment) and how should i use it in order to edit an existing PDF file.
> 2. where can i find the full API\ SDK of this product?
Look in the installation directory where you installed Assembler. You should see a 'Documentation'
folder. In it are two documents that you'll need: developer_guide.pdf and ddx_reference.pdf.
Justin Klei
Cardinal Solutions Group
www.cardinalsolutions.com

Similar Messages

  • Using a DDX file to update a PDF file

    1. can anyone send me an example of a simple DDX file (e.g. edding a comment) and how should i use it in order to edit an existing PDF file.
    2. where can i find the full API\ SDK of this product?

    [email protected] wrote:
    > 1. can anyone send me an example of a simple DDX file (e.g. edding a comment) and how should i use it in order to edit an existing PDF file.
    > 2. where can i find the full API\ SDK of this product?
    Look in the installation directory where you installed Assembler. You should see a 'Documentation'
    folder. In it are two documents that you'll need: developer_guide.pdf and ddx_reference.pdf.
    Justin Klei
    Cardinal Solutions Group
    www.cardinalsolutions.com

  • Issues setting up a DDX file in Document Builder in Livecycle ES2

    I am currently trying to create a DDX document in ES2's document builder, according to the tutorial at this URL:
    http://help.adobe.com/en_US/livecycle/9.0/workbenchHelp/help.htm?content=003662.html#15553 09
    I'm basically trying to render an XDP("myForm") by inserting fragments that I have specified("Fragment1") into the form.
    Now, the example I mentioned above tells me to specify a source for my XDP content(which I assume is the folder where my fragments are kept), an insertion point for the fragment(which I again assume that it means the name of the subform of "myForm" where the fragment is to be inserted, which I have named "subForm1").
    Then there is the fragment name, which I have specified as "Fragment1".
    The DDX file validates fine, but when I try to preview the result, it firstly throws an 'xfa error' when I try to view it in the browser, and when I save the file and open it in designer it doesnt have the fragment inserted into it; just the base XDP form.
    I am seriously struggling to find any help on this subject, so if anyone knows how to help, please do....
    Regards
    Ross Malan

    OK, found the solution.
    I was missing the insertion point on the base document. All you do is specify a subform on the document inside designer as an insertion point, under the object tab, and then give it a name. Then you use that name again when specifying the insertion point for the XDP content in the document builder in workbench.
    After that, the PDF should be generated with the fragments you specify.

  • Link to trigger a .pdf or .doc file to show in presentation

    I would like to add a link that would trigger the showing of a .pdf file or a .doc file within the presentation itself. I can do this in powerpoint. There must be some way to do this in Keynote, but I can't figire out how to do this. Thanks for any ideas.

    Keynote does not allow links to anything but other Keynote presentations, websites, or email. However, you can use Expose or Command-Tab to quickly switch to a PDF or Word file.

  • Hyperlink in pdf created with File/Print command

    I have a document with hyperlinks and convert them to pdf using the File/Print command
    The hyperlinks become inactive in the pdf file
    Does anybody know how to keep the hyperlinks in the pdf?

    Try a different printer driver to see if this has anythign to do with the .ppd used by epson 2200, try even adoeb pdf.
    Reset your preferences.
    Cmd-Opt-Ctrl-Shift when restarting AI on a Mac  to reset to the defaults.

  • Can not open .pdf or .doc files in mail

    Every time I receive an email with a pdf or .doc file attached I can never open it as I get a message telling me that the file was not recognised or that the file is invalid. Even if I select to open using Adobe for the pdf I get the same.
    Any help gratefully received. I've always had this problem and get round it by viewing these emails online instead. But it's not as convenient of course.

    G'day jbglass,
    I had the same problem, getting the same error message etc. I solved the problem by going to Google Chrome and using that to download the file ( a pdf brochure in my case).  That worked OK.  Hope this helps.
    fitzlefrog

  • Print to PDF and specify file name.

    Hardware/Software Details:
    MacBook 2GHz Intel Core 2 Duo
    OS 10.5.5
    Adobe Acrobat Professional 8.1.2
    Hey all,
    I'm a teacher and I've been scripting PDFs for use as marking sheets for assignments. What I'm trying to achieve is a situation where I tick all the boxes, marks are calculated and comments filled-in using my form fields (which all work fine) and then produce a PDF from that file with the student's name as the new file name (which is where I'm stuck!).
    In the past, I've had a button that on mouseOver brings the field with the student's name into focus, mouseDown evoked the File:Copy menuItem (copying the student name to the system's clipboard) and then mouseUp which triggered File:Print from which I would choose 'Adobe PDF 8.0' as the printer, hit Save, paste the student's name as the file name and choose the appropriate directory.
    File:Copy is no longer a "safe" menu item according to the latest versions of Acrobat, so I'm having to manually copy the name which is complicating the process further.
    I'm working on a script activated by the mouseUp of a button in this PDF which is currently looking like this:
    >var pp = this.getPrintParams();
    // format name to remove spaces and commas
    var studName = this.getField("Name").value.split(",").join("_").split(" ").join("");
    pp.interactive = pp.constants.interactionLevel.silent;
    pp.printerName = "";
    pp.fileName = studentName + ".ps";
    this.print(pp);
    Although the console will list 'AdobePDF8' as one of my printers, I've since discovered that "the destination printer cannot be set through this property in Mac OS" :( . I can set it as my default printer to work around it, but I still can't dictate the name of the new file. So, I've resorted to printing to PostScript with the aim of running them all as a batch through the AdobePDF8 printer later, except there's still a few problems.
    The name of the PostScript file won't work when I try to include the value of another variable (var studentName)
    The fonts in the PostScript files that it does produce get substituted with Courier and look terrible
    Both the API Reference and the Developer Guide seem to indicate that you can print to a file rather than a printer, but both only seem to mention PostScript file using this method.
    Is there another way to do this? If not, is there a solution to the two problems I mentioned?
    Cheers,
    Chris

    Ok, I've pursued the SaveAs method (as George suggested) with moderate success with the following code (secure function names have been changed ;) ):
    config.js file script:
    >myTrustedSaveAs = app.trustedFunction( function ( doc, studName )
    app.beginPriv();
    doc.saveAs({
    cPath: studName,
    bCopy: true,
    bPromptToOverwrite: true
    app.endPriv();
    myTrustedOpenDoc = app.trustedFunction( function ( path )
    app.beginPriv();
    app.openDoc({
    cPath: path
    app.endPriv();
    Button's onMouseUp script:
    >// get student name and turn it into a file name
    var studFile = this.getField("Name").value.split(",").join("_").split(" ").join("") + ".pdf";
    // get the current document's directory path
    var origFile = this.path;
    var pathBits = this.path.split("/");
    pathBits.pop();
    // whack 'em together
    pathBits.push(studFile);
    var studFilePath = pathBits.join("/");
    // toss the form fields and stuff
    this.flattenPages({
    nNonPrint: 2
    // save the new file
    myTrustedSaveAs(this,studFilePath);
    // open the original again (not working)
    myTrustedOpenDoc(origFile);
    // close the one I just saved
    this.closeDoc(true);
    This is what happens:
    Button is clicked,
    All the form fields and buttons are removed,
    It produces a file with the new file name (e.g. Lawrence_Chris.pdf) next to the original,
    The file closes
    I'm pretty sure that once the SaveAs runs and the new file is created, I actually still have the original file open instead of the that was just saved. This would explain why the openDoc command doesn't seem to do anything because the file it's opening is already open. The closeDoc then runs and of course I then have no open documents!
    So, now I either need a way to revert the open original file so I get all of my form fields back and don't have to reopen it, or a way to close and then immediately open the file without saving changes. :/
    Any ideas?
    slight inconvenience of needing a separate .js file written for the user's JavaScript folder before launching Acrobat to overcome security restrictions. File sizes only seem to get down to about 376KB as opposed to the 40KB files that the AdobePDF8 printer spits out. :(

  • Saving report as PDF and text file

    Currently, I saved my report as PDF. It opens in Acrobat reader automatically when the report is executed. Is there a way for me to save it as PDF and as a text file at the same time? (without having to open the file in Acrobat reader and saving it)

    You can add your PDF and TEXT file formats to a distribution list (Instead of GENERATE REPORT TO A FILE). To do this:
    1. Go to your Object Navigator and highlight your report.
    2. Right click on your report. Select Property Palette.
    3. Select Distribution
    4. You can add of of the formats that you want to print or save to the report to.
    5. You will have to add Distribution Id (any number starting with 1) where you want the file to be saved (c:\my_reports\inventory.pdf), the type of file: PDF and how many copies you want: 2
    6. Click OK after finishing...
    To make it work ... You would highlight your report from your Object Navigator and then choose FILE-DISTRIBUTE and this will save it to all the files your specified and/or printer.
    null

  • A working method to load local PDF and HTML files on iOS

    I had a lot of trouble getting this to work, and I'm hoping this post saves someone time. Some of the information that's been posted in other locations is either wrong, incomplete, or might only work on Android. By the time you read this message the information here may no longer be accurate, so here's the testing environment:
    Window 7
    Flash CS 5.5.0
    AIR 2.7.0.19530, which was compiled on June 28, 2011
    iPad 1, version 4.3.5 of iOS
    Let's get started.
    On iOS, you load external PDF and HTML files using the StageWebView class.
    On Windows, StageWebView works but the HTMLLoader class is a better choice if you're creating a desktop app.
    You can also load HTML files by reading in the file's text. The information in this post is only for loading external HTML files.
    StageWebView will not load a file that's in File.applicationDirectory. All files bundled in your app are placed in File.applicationDirectory, which means you'll have to copy any external file you wish to load with StageWebView to another directory.
    So where can you copy your file? File.applicationStorageDirectory won't work. File.documentsDirectory does work.
    Several people have recommended copying to a temporary file using File.createTempFile(). This works, but there's a catch: it seems that, like Windows, StageWebView relies on a file's extension when determining how to load it. When you create a temporary file on iOS using File.createTempFile(), the file will have no extension (and on Windows, File.createTempFile() creates a file with the extension .tmp, which is equally problematic).
    The solution to the file extension problem is to rename the temporary file by appending the original file's extension. AIR currently does not have a <file>.rename() function, so you'll have to do it using <tempFile>.moveTo().
    Here's some code I've successfully tested several times on both iOS and Windows. The file is copied to the temp directory. The file's extension is restored by just slapping the original file name to the end of the temp file.
            private function loadExternalFile():void
                var webView = new StageWebView();
                webView.stage = this.stage;
                webView.viewPort = new Rectangle( 0, 0, 1024, 555 );
                // Works with either html or pdf files.
                // These are stored in the root of the application directory.
                var fileName:String = "euei.pdf";
                //var fileName:String = "euei.htm";
                var sourceFile = File.applicationDirectory.resolvePath( fileName );
                var workingFile = File.createTempFile();
                try
                    sourceFile.copyTo( workingFile, true );
                    // You have to rename the temp file
                    var renamedTempFile:File = workingFile.resolvePath(workingFile.nativePath + fileName);
                    workingFile.moveTo(renamedTempFile, true);
                    webView.loadURL( renamedTempFile.url );
                catch (err:Error) { }

    I tried this with Flash CS5.5 and AIR 4.0 SDK. Any pdf loaded simply fills the viewPort with black. Also tested with a png version of the pdf and that displayed just fine.
    What's the purpose of copying to a temp work file? I found that webView.loadURL( sourceFile.url ); gave me the exact same results.
    Any ideas?
    Thanks!

  • How can you convert multiple PDF files at once to PDF/A-1b files

    I support individuals who on occasion have to submit a mass of files to a court and the requirement is that the files be in PDF/A format. Most are scanned files lacking the requisite structure to become PDF/A-1a files. So as I convert or resave files, I need to be able to specify that they be converted to the PDF/A-1b standard. And since it may involve over 100 files, it would be very inefficient to do so individually, file by file. Could this be done via an Action Wizard sequence? Could a script be written in Java that go through such a process, specifically choosing a PDF/A standard? Any insights would be appreciated.

    PDF/A-1a is very easy to automate in Acrobat XI Pro, indeed the compliance code was rewritten specifically with this in mind. Test Screen Name is correct that PDF/A-1b can't be realistically automated due to the complexity of tagging, but that's not your concern.
    In Acrobat XI Pro, create a new Action with no functional steps in it, then add the Save step.
    Click 'Settings' and change the output format to "Export File(s) to Alternate Format"
    Choose PDF/A from the list. It doesn't say so, but that's A-1b.
    I suggest using the file renaming feature so you're not overwriting the originals (e.g. append "_A1B")
    Save the Action and run it.
    Files with security, distributed forms, etc. can't be converted but the Acrobat engineering team claim that everything which can possibly be shoehorned into PDF/A will always succeed. In previous versions of Acrobat it often failed when it encountered things like iffy XMP data.

  • Combine files to PDF and selecting files one at a time - Adobe CreatePDF online application

    Are you able to select up to 10 files at one time through the "select files" browser window?  The instructions at https://www.acrobat.com/createpdf/en/merge-combine-pdf-files-online.html seem to indicate that you are able to select up to 10 items and then convert and combine. 
    "1 Sign in to your CreatePDF account online
    2 Click on Combine files to PDF, then Select Files
    3 Choose one or more files to merge into a single PDF
    4 Click Open"
    At this point I am only able to select files 1 at a time, which means steps 3 and 4 repeat up to 10 times if you are combining the maximum 10 files at once.  I have tried using shift select and ctrl select to no avail.
    Thank you for any help on this issue.

    I think I found my answer at a different set of instuctions at http://helpx.adobe.com/acrobat-com/kb/using-createpdf.html.  This set of instructions clearly indicates that files will be selected 1 at a time.
    Click Combine Files To PDF.
    Click Select Files.
    Select one of the files that you want to combine.
    Click Open.
    Click Add Files and select additional files to combine. Click Open."
    If anyone has any ideas on how to more quickly combine files, any help would be greatly appreciated.

  • SEARCH: Widget that shows a PDF or XLS File

    Hey,
    I am looking for a widget which can show me a pdf or XLS file (Picture would be a possible work around).
    Best would be to show a small kind of thumbnail and a magnifying class to look up details. So far about the wish list .
    Reason is my weekly time-planner - I use a XLS sheet in adoption of Steven Covey's "7 Habits of highly effiective people" - and in order to be even more effective, I would like to make this visible
    Thanks for the help
    Marcus
    MacBook Mac OS X (10.4.6)

    for PDF, try this out...
    http://www.apple.com/downloads/dashboard/status/dashclipping.html
    allows you to use a URL to display in a window. nice widget. I use it to check a site or two, but i have tested on local PDF files, and it works fine...
    eg:
    URL = file://localhost/Users/usernamehere/Desktop/example.pdf
    Beavis2084

  • What determines how a PDF or EPS file is opened??????

    Hi I was wondering if anyone can tell, what determines how a PDF or EPS is opened in Photoshop.
    If I open a PDF in photoshop, the first thing that pops up is the settings for which you want it to open. i.e., color mode, resolution, you choose what you want and then open.
    I always thought that how the file was created determines the initial settings in which photoshop displays in that little dialogue box. (for example, if I open an illustrator eps file that I created in photoshop, it always prompts the correct settings (300dpi, CMYK) I click open and it works great.
    But when I open a PDF in photoshop it always displays the color mode as RGB, not cmyk. Which i find odd, because I know there is no RGB color space in the PDF.
    Today something weird happend, I created an Ad in Indesign, every image I am certain was 300 dpi, and the rest are vectors. Exported it to PDF with high resolution settings, but when I opened it up in Photoshop, the settins dialogue box promted it as 72dpi, which again I find odd because I know each image is 300, the rest are vectors, and I know the PDF preset to which I exported it creates high res images.
    Does anyone know what determines how a PDF or eps file is opened in Photoshop and why photoshop is rendering a PDF in which I am certain is hi res, to a low res?
    Thanks for any help. Kevin

    >Hi I was wondering if anyone can tell, what determines how a PDF or
    >EPS is opened in Photoshop.
    Nothing, really. EPS provides this info openly in its header, but it is not always right, so PS cannot even assume it would be correct to use that info. For PDF it's a different story. PDF is a container format that can contain any number of items in mixed resolutions and colorspaces, hence PS cannot assume anything. Likewise, you can have multiple pages, links, multimedia content, all of which may influence the result upon display or rasterization...
    Mylenium

  • I am unable to save my form responses as a pdf or excel file.

    I am unable to save my form responses as a pdf or excel file.  The error message states: Acrobat.com could not save this file. The file might be open in another application and cannot be overwritten.

    Did saving ever work or did it fail the first time you tried?
    Have you tried to save to multiple locations?  Maybe it has something to do with permissions on the directory you are trying to save to.
    Have you tried saving something from another web site to the same location?  Try creating and saving a file in/from https://workspaces.acrobat.com/app.html#o and see if that has the same result.
    Thanks,
    Josh

  • How do I upload my resume when it's saved in Pages but needs to be send as a PDF or word file?

    How do I upload a document that has been created using pages as a PDF or Word file? When I attempt to upload it, the only choices I get are choices from my camera!!

    Tap on the wrench/spanner in the upper right of the document & then "Share & Print." You can then e-mail the document but I'm not sure how to upload to a web site from an iPad.

Maybe you are looking for

  • How can I buy black rubber feet for my mac book pro mid 2009

    MY 2009 Mid Mac Book Pro bottom pad came off.  Very very poor design.  These should last forever.  I noticed that this was a design or product failure.  Thus I need the part number to order them.  Cant seem to get any assistance.

  • Adding Project Name in OTL Time Card

    Hello All, I have done the following Changes to display Project Name in OTL time Card in R12.1.3 with no luck, please let me know. 1. Added Attribute28 as PROJECTNAME for Context - PROJECTS in OTL INformation Types - DFF 2. Using AK Html Forms, Added

  • How do I save files to external hard drive in anticipation of a OS clean install?

    How do I save files to an external hard drive in anticipation of a OS clean install?  I'm worried that the new OS will not be able to find my photos. My data have not been backed up for 2 months, and the OS is corrupted.  Currently working with a sen

  • Lumia 520 Explorer crashing

    The Internet Explorer in my Lumia 520 crashes sonetimes. When I'm browsing it happens that the explorer shuts down and closes all the tabs I had opened. I bought the phone last week and it's the first Windows Phone I've bought so I'm not used to thos

  • When will Adobe fix 'Acrobat not launch after 30 days' issue?

    For several users at our company this is a major problem.  For myself as well because I have had to reinstall CS6 multiple times for the same user.  This is not a permanent solution. When will there be a permanent fix for this dear Adobe?