Batch sequence to "flatten" static xfa non AcroForm form

Hello

I'm looking for a way to flatten a bunch of xfa forms in a batch sequence. The result is exactly the same as printing to PDF.

I think I used to simply add parameters to the optimizer in the sequence editor and who would do the trick. But now, I get an error indicating that the optimization settings cannot be applied to an xfa form.

Any help would be appreciated.

Thank you.

Kyle

In fact, George I found a solution. These are dynamic xfa forms. I realized that the pdf printer settings has an option to delete the Save as dialogue and by default flat PDFs of output to a location of my choice. I just set the printer as the default printer and run a batch sequence to print dynamic PDF files.

You need a decent system with lots of memory, because an instance of Acrobat is open for each treated pdf but it does the trick!

I appreciate your response.

Kyle

Tags: Acrobat

Similar Questions

  • Runs a batch sequence in Acrobat 11

    Hi all:

    I am running a sequence of batch processing in Acrobat on the Mac and the faster 11 and conciesly I can, I want to describe the steps of the process:

    1.) select the sequence of commands to be run.

    2.) select the files on which to run the batch sequence.

    3.) click Start.

    (4.) the script text appears on the screen, highlighted.

    5.) click on OK to close the script editor and run the script on the first file.

    (6.) the script text appears on the screen, highlighted.

    7.) click on OK to close the script editor and run the script on the first file.

    8.) the script text appears on the screen, highlighted.

    9.) click on OK to close the script editor and run the script on the first file.

    < continue the last two steps for each document you are processing >

    If the user has selected thirty documents to be processed in this sequence of execution, she must see the script will apear thirty times and must press the button OK thirty times to run the script on the next Acrobat document.  Ditto for the documents of sixty and ninety. It is heavy and tedious not to mentioned that are dangerous for the script.  Preactice ny im run I accidentally typed the SPACEBAR and completely erase the script!.  Is it possible to tell the program to ignore display the script at the beginning of each cycle and just move on to the next task?

    Click the controls that you added to the Action and make sure that none of them has the checkbox 'Interrogate the user' below checked.

  • A batch sequence, can add a simple button?

    Can someone tell me if a batch sequence can be used to add a 'close document' button to a group of Acrobat documents? I have 75 PDF documents all need an added button. If I can do it using a sequence, it will be a huge time saver.

    Thank you.

    To prevent the warning, change the setAction line to:

    f.setAction("MouseUp", "dirty = false;\rcloseDoc();");
    
    To set up the button to be non-printing, set the display property:
    
    f.display = display.noPrint;
    
  • JavaScript in the batch sequence

    I made some Acrobat scripting but especially by VB and I'm able to write what I need, but I want it as part of Acrobat to my operator instead of the separate program. That said, I want to write a Java script that I can include in the batch sequence.

    I need to add a page at the beginning of a document and I want to have this page be nubered 'a' without disturbing the numbering else where in the file. By simply adding the page initially with the batch sequence, it adopts the numbering of the first page. So, if the first page is numbered as 'i', then the new inserted page is numbered "i" and the rest of numbering of the changes, what was I becomes ii, which was ii becomes iii and so on. I am capable of this VB script by adding the page to the end, renumber them using the SetPageLabels of a Javascript object, then move the page initially.

    Is there a documentation on the use of Javascript in a sequence of batch processing?

    Thank you

    Ken

    You specify not valid values in the parameter aLabel. The first value should be "D", if you want to use the decimal numbering.

  • How to convert non-fillable forms in Word and PDF forms to fill out?

    Hai,

    How to convert non-fillable forms in Word and PDF forms to fill out?

    Hi Mahalcs

    Please check the link for the reference below: http://www.adobe.com/in/products/acrobat/convert-existing-forms-to-fillable-pdfs.html

    See also, http://www.adobe.com/content/dam/Adobe/en/products/acrobat/pdfs/adobe-acrobat-xi-convert-f ORM you in fillable pdf - tutorial_ue.pdf

  • How can I use a static image on a form

    I want to use a static image in the shape that I want to say I need images to show the end user and the images, but are static images, I tried to copy paste the picture of outside forms but could not do so.
    Please, what is the way to add static images in the form.

    concerning
    MAZ

    Hello

    Open your Web in the layout editor, and then use the menu: Edition-> Import...--> Image

    François

  • Need help with simple non-registered form if is displayed.

    Hello

    I'm assembling a script complex but I will start with the first statement logice.

    Essentially at the beginning, I need to know how to write a script that uses the logic if the form is NOT saved, then display message, you need to first save the form.

    It is for this part! Thank you.

    Hello

    You can do this way.

    Acrobat/Reader uses the so-called State dirty indicator if you made changes to the form.

    var dFlag = event.target.dirty

    If (dFlag is true)

    {

    xfa.host.messageBox ("form not was not yet registered");

    }

    on the other
    {
    code to run the case...
    }
  • Share the batch sequences?

    I created a few sequences of Acrobat 9 Pro Batch Processing I want to share with other people in my team. Is it possible for me to to export or copy the sequence and give it to others? I'm on a Mac.

    You will need to Ctrl-click (or right-click) on the Adobe Acrobat Pro.app file and choose Show content. Then follow the rest of the way try67 gave you.

  • Acrobat 5 Batch Processing &gt; edit batch sequences

    Hello

    I am in a process of Acrobat version 5 upgrade to the latest version of Acrobat.

    I have a user who inserts the PDF bookmarks via Batch Processing in Acrobat 5 format. I need to export this Java script to a new machine.

    What is the most simple and quick way to do this?

    Thank you

    Huinia

    No, you don't have anything else to Acrobat. JavaScript (not Java) is built into Acrobat.

  • Determine if the form is a form PDF static or dynamic XML form programmatically

    Hello

    We have a software Macromedia Adobe form is used. With Adobe LiveCycle Designer, Staic form PDF and dynamic XML form can be created. We want to make the distinction between these two types. Is there available Adobe API which returns the type of PDF form; Static PDF or XML dynamic form?

    Thank you - Marie Laure

    Your script does not for me but when I used this modified following version he detected the form correctly (as long as the pdf file is saved in the designer using either save as static or save as dynamic)

    Dim app, pddoc
    Dim js
    
    Set app = CreateObject("AcroExch.App")
    Set pddoc = CreateObject("AcroExch.PDDoc")
    
    If pddoc.Open("E:\Untitled1.pdf") Then
         Set js = pddoc.GetJSObject
    
         If Not js Is Nothing Then
              If js.dynamicXFAForm Then
                  MsgBox "It's a dynamic form!"
              Else
                  MsgBox "It's a static form!"
              End If
           End If
    End If
    
    Set app = Nothing
    Set pddoc = Nothing
    

    Regarding the 2nd approah, I don't have a sample that can be shared, but essentially, it is to use API of COS calls to open the stream XFA in PDF and determine what type of rendering.

    Alternatively, you can run javascript using the API / C code

  • Flatten or lock a pdf form to be completed when the user presses the button "submit"

    Hello.  I have searched all over the net trying to figure this out.  I have a form that I created in LiveCycle and as I inserted a "REGULAR" button, with the following script:

    Create a variable to hold the document object

    var

    oDoc = event.target;

    oDoc.mailDoc({)

    bUI

    : true,

    cTo

    : "[email protected] " ",

    bassujetti

    : "New procedure - operator ' + TextField1.rawValue + "-ID" + TextField2.rawValue

    CSMG

    : "Attached is the form of the new procedure for the operator" + TextField1.rawValue + "-ID" + TextField2.rawValue + "." ,

    });

    This script is sending an e-mail to "[email protected]" and fill in the subject line and the body of the message with text and some elements of the fields in the PDF file.

    I want to have the locked PDF or flattened when the user clicks on the button submit, to ensure that the information in the PDF file is not modified once they submit.  I can't find any way to do this easily.  I found a script that will flatten the message (below), but I don't know how to add it to the email script that I pointed out above.  I don't want to add a second button to the form that I want to keep it as simple as possible for the user.

    Any suggestions that anyone might have would be greatly appreciated.  Thank you.

    Ryan

    Hello

    Check out this example:

    http://thelivecycle.blogspot.com/2010/02/mail-XFA-forms-as-protected-UnEditable.html

  • How to create a sequence for a particular item in my form of apex

    Hi friends,

    I created a database application, a form that contains a report, and it works very well...

    But in my form, I have a requirement... Here it is the existing fields in my form

    issue no
    created by
    start date
    status
    priority
    due date

    Among these fields in my form, I need to create a 'sequence' for my 'number' field
    So that whenever I opened the form 'number' should automatically generate as 1 for the first time, 2 for the second time and so on...

    To do this, I created a sequence

    CREATE SEQUENCES "ORDERS_SEQ."
    MINVALUE 1
    MAXVALUE 999999999999999999999999999
    INCREMENT BY 1
    START WITH 1000
    NOCACHE
    NOCYCLE;

    But for validation where I need to write the query in the sequence for this particular item "issue no"..., I have no idea where to write the validation for the sequence query...


    Please tell where I need to write wisely step... Please help me friends...

    As my sequence validated here it is ask for item 'number '.

    "select seq.issue_id.nextval in issue_no.

    It comes to my posting above query if the query I mentioned is just... If not, let me know the validation query...


    And also I need where to apply this step verification query...

    Thanks in advance

    Kind regards
    Harry...

    Harry,

    Rik is on the right track. Here is a sample insert trigger: would need to replace you sequence ORDERS_SEQ with my las_log_seqsequence, how do you define or use timestamps is to you.

    DROP TRIGGER LASDEV.BINS1_LAS_LOG_TBL;
    
    CREATE OR REPLACE TRIGGER LASDEV."BINS1_LAS_LOG_TBL"
       BEFORE INSERT
       ON las_log_tbl
       FOR EACH ROW
    BEGIN
       --
       -- Description: Insert log_seq, creation_dt, creation_id,
       --              lst_updt_dt and lst_updt_id.
       --
       -- Maintenance:
       --
       -- Date        Actor          Action
       -- ====        =====          ======
       -- 07-Sep-2010 J. Wells       Create.
       --
       :new.creation_id := nvl( v( 'app_user' ), user );
       :new.creation_dt := SYSDATE;
       :new.lst_updt_dt := :new.creation_dt;
       :new.lst_updt_id := :new.creation_id;
    
        SELECT las_log_seq.NEXTVAL
          INTO :new.las_log_seq
          FROM DUAL;
    END bins1_las_log_tbl;
    /
    

    Heff

  • Generator of sequence numbers for any number of PDF forms

    Hello

    With the help of this forum, I now have a simple Workbench process that acts as a Web service to generate a sequence number.

    When it is called by a PDF form it reads a value in a database, increment the value and then reads the db to return the value incremented to the form.

    It works fine, but now I need something else: I have about 60 forms and each will have its own sequence.

    The way I see what I have to do is:

    -include a new column in the db table to store the IDs forms (I already did).

    -modify the SQL statements to include the number of Ref form as a parameter of a WHERE clause (I already did).

    and...

    -Send the Ref form number from the PDF file during the call to the web service. = > I have not yet figured out how do.

    -receive this Ref number in the workbench to use as a parameter in the WHERE clause.

    Please could someone help me out here?   Or point to a few examples online that I could use as a guide?

    Will I receive the news of the PDF in the form of XML file and extract the info from its structure?

    Thanks much for the advice.

    Marcos

    Hello

    Any variables created within a process are accessible by all of the finding.

    You don't need to associate the value through the extra activity.

    for example you can directly use the value of the variable in the SQL activity to increment & get the next number in the sequence.

    Note that you must not even two activities SQL to do. A single SQL activity can execute multiple SQL queries.

    Hope that helps.

    Nith

  • using a sub vi in a modal form in one and one non-modal form in another

    I try to use a subvi in 2 places. However in one place, I want that it open in a modal form and in the other I just that it runs the code and generate results without the façade appears.

    How can I do this?

    Arjun

    1. Uncheck the display front panel when it is called in VI properties (Ctrl + I in the diagram of the VI > appearance of window > customize...)
    2. In the diagram, click on the occurrence of the VI to open up > Installation of the Subvi node > check Show façade when it is called
    3. Repeat for the other instance of the VI to uncheck this option if needed.
  • My documents are opened in a non legible form, if my settings may be incorrect?

    If I try to open any document in Windows Starter 2010 small screen asking that I select the coding that makes the readable document

    The selections are Windows (Default), MS-DOS and other coding.

    Any choice made the document is still incomprehensible.

    Any suggestions?

    Thank you

    Jim.

    I assume you mean that you have Office Starter 2010, which is the successor of Microsoft Works.  There are several file formats Microsoft Office which won't open in Office Starter 2010, they are quite obscure file formats.

    Where the documents that you are having problems with it comes?  What is the file extension (the characters after the dot in the name of the file)?

Maybe you are looking for

  • you send update messages?

    I got messages from outdated software update. Is sent by firefox? There are too many viruses out there for install me the update unless that I'm sure was sent by Firefox.

  • Right-click problem

    When I clicked the right button, a large menu opens. and the menu does not work. http://i.IMM.IO/14Yvw.PNGUbuntuFirefox 20.0

  • Can't restore Vista backup - backup zip files are not recognized, on external hard drive

    I backed up my files with Windows Backup, which divide into 200 MB zip files.  Now I am unable to restore the backup because it is not recognized when I try to use the backup to restore.  It's on an external hard drive and Windows for some reason any

  • After system recovery recently my computer always crashes and support told me I have a virus

    Computer: HP Pavilion p6130y My computer started to slow down and freeze after about 1 week ago. Do normal functions and multitasking, that I have the computer completely freezes where I couldn't move my mouse and even ctrl alt delete doesn't work. I

  • DeHummer accident

    Did someone else live in accordance with crashes when Dehummer is used in the hearing. Other effects appear to be working well and if I reboot the effect actually seems to apply, but if I open it to change the effect, it hangs again. Just CC15?On iMa