How to add work Options into a .PS file

Acrobat Distiller 5.5 and 7.0

Greetings,

I'm currently automating making a unique combine PDF based on runfilex.ps.

I can't understand the snytax to specify the file to work options (fdi.joboptions)

for the following .ps file

/prun {/mysave save def
DUP = hunting
RunFile
Claire cleardictstack
mysave restoration
} def

Prun (C:/ACAD/COVER.PS)
Prun (C:/ACAD/PD.PS)
Prun (C:/ACAD/DXB-EVE.PS)
Prun (C:/ACAD/DXB-EVS.PS)
Prun (C:/ACAD/DXB-EVW.PS)
Prun (C:/ACAD/DXB-SSE.PS)
Prun (C:/ACAD/DXB-SSW.PS)

Any help would be greatly apprciated.  I find the help adobe needs help files.  -David

Put the /d option before the PostScript file.

http://livedocs.Adobe.com/acrobat_sdk/9/Acrobat9_HTMLHelp/wwhelp/wwhimpl/js/html/wwhelp.HT m? & accessible = true

Tags: Acrobat

Similar Questions

  • If my word document is Ko 106480 how can I convert it into a PDF file if it exceeds the limit of 100 MB

    If my word document is 106 480 Ko how can I convert it into a PDF file if it exceeds the limit of 100 MB

    Get Acrobat and you won't have these limitations.

  • How to convert a PDF into a jpeg file

    How to convert a PDF into a jpeg file

    Hello

    If you use the drive, would not be possible because it is not apt software to convert PDF to any other form of file including jpeg.

    You would need either to pack PDF, which is an online service to export PDFS for some file formats, or you would need Acrobat to perform this action.

    Please follow the steps to convert pdf to word.


    Launch Acrobat > open the PDF > navigate to file > export to > Image > Jpeg.

    Concerning

    Sukrit diallo

  • How to add text and change my PDF file?

    How to add text and change my pdf file

    Hi pilothorse,

    To edit a PDF file, you must use Acrobat. If you do not have Acrobat, you can try it free for 30 days. See www.adobe.com/products/acrobat.html for more information.

  • How to convert a PDF into a pdf file to fill

    How to convert a PDF into a pdf file

    Hi jpschrom

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

    http://www.Adobe.com/au/products/Acrobat/convert-existing-forms-to-fillable-PDFs.html

  • HOW TO ADD THE OPTION ' SEND TO '?

    HOW TO ADD A DESTINATION TO THE OPTION ' SEND TO ' WHEN I CLICK ON A FILE RIGHT?

    How to remove and restore the value default Windows 7 send to Menu items
    http://www.SevenForums.com/tutorials/45421-send-context-menu-remove-restore-default-items.html
     
     

     
  • How to add an image into multiple pages?

    Hello

    First, you should know that before this announcement, I dug into Google but couldn't find a solution.

    How to add an image in the footer of a PDF of size section, for example, 500pages? I won't add one by one in the same page, it is much too long.

    Is it possible to add it in the footer or any other alternative section, while I find myself with the same image in an exact position in all 500 pages?

    Thanks for your response

    Best,

    Eric

    In Acrobat 9, you can select "Document > add watermark ' or ' Document > Add Background" and select a file that has the image. You can adjust the location for your needs. It is available in other versions too, but I don't remember the exact menu items.

  • How can I add a layer into a pdf file?

    How can I add a layer in a PDF file in Acrobat Pro XI?

    Hi Patrick,

    Please see this KB document for help Acrobat help. PDF layer

    Kind regards

    Nicos

  • How to add the option in the SelectItem during execution

    Hello
    Can anyone help me please with this use case?

    I have a list set to the managed bean as below. I want to add new LOV in list (DROP DOWN 2) "ZZZ" based on the value selected in the DROP DOWN 1 on the same page. So that particular one value selected in the DROP DOWN 1, I want to have this new LOV displayed in the DROP DOWN 2. I'm doing it through ValuchangeListener, but I'm not able to find how to add the LOV. Help, please.



    USER INTERFACE
    <!-- DROP DOWN 1 -->
    <af:selectOneChoice label="Order Type" id="soc2" required="true"
                                            validator="#{lovManagedBean.orderTypeValidator}"
                                            binding="#{userAuthentication.orderType}"
                                            autoSubmit="true"
                                            valueChangeListener="#{lovManagedBean.orderTypeValueChangeListener}">                    
                          <f:selectItems id="si2" value="#{lovManagedBean.orderTypeItems}"/>
    </af:selectOneChoice>
    <!-- DROP DOWN 2 -->
    <af:selectOneChoice label="Request Type" id="soc1" required="true"
                                            validator="#{lovManagedBean.requestTypeValidator}"
                                            binding="#{userAuthentication.requestType}">
                                          
                                           
                          <f:selectItems id="si1" value="#{lovManagedBean.requestTypeItems}" />
    </af:selectOneChoice>
    Managed Bean code
      public List<SelectItem> getRequestTypeItems() {
        List<SelectItem> list = new ArrayList<SelectItem>();
    
        list.add(new SelectItem("XXX","XXX"));
        list.add(new SelectItem("YYY","YYY"));
       
       
        this.requestTypeItems = list;
         return list;
      }
    
      public void orderTypeValueChangeListener(ValueChangeEvent event ) {
          System.out.println("+++ Calling LOVManagedBean.orderTypeValueChangeListener()");
          System.out.println("Old Value for order type:" + event.getOldValue() );
          System.out.println("New Value for order type:" + event.getNewValue());
          if(event.getNewValue().equals("Time and Expense")){
            //Code to add LOV in drop down
          }
              
        
      }

    You could make it according to the following example:

    Sample.JSPX:



    xmlns:f = "http://java.sun.com/jsf/core".
    xmlns:h = "http://java.sun.com/jsf/html".
    xmlns:af = "http://xmlns.oracle.com/adf/faces/rich" >




    *
    autoSubmit = 'true' immediate = "true".
    * valueChangeListener = "#{pageFlowScope.SampleBean.onValueChangeListener}" > *.
    **
    **
    **
    *
    * partialTriggers = "soc1."
    * Binding = "#{pageFlowScope.SampleBean.selectOneChoice2}" > *.
    *
    * id = "si3" / > *.
    **



    * SampleBean.Java: *.

    import java.util.ArrayList;
    import java.util.List;

    Import javax.faces.event.ValueChangeEvent;
    Import javax.faces.model.SelectItem;

    Import oracle.adf.view.rich.component.rich.input.RichSelectOneChoice;

    public class SampleBean {}
    Private RichSelectOneChoice selectOneChoice2;

    public SampleBean() {}
    DataSource.Add (new SelectItem ("XXX", "XXX"));
    DataSource.Add (new SelectItem ("YYY", "YYY"));
    System.out.println ("to the constructor");
    }

    Private list datasource = new ArrayList ();
    private SelectItem newSelectItem = new SelectItem ("ZZZ", "ZZZ");

    * public Sub onValueChangeListener (ValueChangeEvent valueChangeEvent) {*}
    * if (valueChangeEvent.getNewValue () .equals ("Add") == true) {*}
    * System.out.println("::: Adding new select item choice"); *
    * datasource.add (newSelectItem); *
    *} else {*}
    * if (valueChangeEvent.getNewValue () .equals ("JustSelect") == true) {*}
    * System.out.println("::: Removing the added select item choice"); *
    * datasource.remove (newSelectItem); *
    * System.out.println (datasource.size ()); *
    *}*
    *}*
    * this.selectOneChoice2.setValue (datasource); *
    *}*

    public void setDatasource (the list data source ) {}
    This.DataSource = data source;
    }

    public getDatasource() {list
    Returns the data source;
    }

    public void setSelectOneChoice2 (RichSelectOneChoice selectOneChoice2) {}
    this.selectOneChoice2 = selectOneChoice2;
    }

    public RichSelectOneChoice getSelectOneChoice2() {}
    Return selectOneChoice2;
    }
    }

    * Ensure that the bean is saved in pageFlowScope.*

    Thank you
    Nini

  • HP Officejet Pro X476dw (nextworked-Windows 7 Pro) how to scan multiple pages into a single file?

    Does anyone know how to scan multiple pages into a single jpegfile?

    When you scan a document of several pages in a file on a network each page gets its own jpeg image scanend file.

    HP standalone scanner allow generally allows you to add the multuple scans in a jpeg file.

    Any help much appreciated!

    Thank you

    Joihn

    Hello

    Well, I don't know how you can read many jpeg files into a SINGLE file. Put scanned images in a folder is a logical way to keep them in one place. From my understanding single jpeg image may be a ONE page document, but many jpeg images cannot be concatinated to be a multiple page document. We can use images, software publishing to put them in a single document, but still only one page (each image is smaller). Using pdf output, you can concatenate/merge a lot of images in a sinlge multi-page file.

    Kind regards.

  • HP ENVY 5530 - How can scan multiple pages into 1 pdf file?

    Hello

    Can someone tell me how to scan multiple pages into one pdf document.  Currently, I can only 1 page per pdf which is not ideal for large documents.  I have a HP ENVY 5530 and am running windows 7.

    Many thanks in advance,

    Hi Bert1,

    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the Forums of HP, I would like to draw your attention to the Guide of the Forums HP first time here? Learn how to publish and more.

    I see that you encounter some problems when trying to scan multiple pages into a single file. I did some research and I found a great Charter which will explain in detail How-to Scan: Windows 7.  Once you have the document open, please scroll down until you see the part dealing with the digitization of several pages in a single file.

    I hope this helps with your question.  If by chance you need more help, feel free to write me again. I'm always happy to help you.

    Thank you for your time.

  • How to import an image into a Psd file using the codes?

    I'm trying to import an image into a psd file as a new layer, but I can't find the photoshop object method in visual studio 2010 object browser. Is it possible to make this work with vb.net codes?

    Any suggestion will be graduate!

    You can, like me, simply leave the scriptlistener plugin installed all the time. Really there no performance impact unless the log file are very large. I just keep an eye on the log file, and then delete it when it starts to get too big. Also there that you don't want the two newspapers js and vbs output set just one you don't want to read-only. Photoshop will Ingore it and only writing to that desired.

    If you do not want to uninstall the plug-in a quick way to do this is to rename it by placing a ' ~' at the beginning of the name.

  • How can I insert html into a flash file?

    Hi, I am trying to insert Paypal code that takes the user directly on site with all paypal account is paying options and I have the Paypal html code, but my site is all Flash. Is it possible to insert this code into a flash file?

    no code should be attached to objects:

    var sendLV:LoadVars = new LoadVars();

    var receiveLV:LoadVars = new LoadVars();

    {receiveLV.onData = function (src)}

    trace (SRC);  This allows to manage the return of paypal

    }

    {your_btn.onRelease = Function ()}

    sendLV.cmd = "_s-xclick".

    sendLV.hosted_button_id = "C8G49C6MKV2QL";

    sendLV.on0 = "Christmas memories";

    sendLV.currency_code = "USD";

    sendLV.sendAndLoad ("https://www.paypal.com/cgi-bin/webscr", receiveLV, "POST");

    }

  • How to add the mask into effect reference is Options for Composition with after effects CC 2014?

    The main reason why I'm updating my After Effects with cc 2014 is "composition for each effect options, including the ability to limit the area affected by each of the effects with masks". This useful feature really simplify my work. But now I realize that I want to use the script function.

    I get Composition Options the effect name and matchName.It looks like this:

    NameNameNameNamepropertyValueTypeRemove
    Composition optionsundefinedADBE effect built in Params
    MasksundefinedEffect ADBE Mask Parade
    Reference mask 1undefinedADBE effect mask
    Reference mask 1MASK_INDEXFlow path ADBE effect Ref
    Opacity of the effectOneDADBE mask opacity

    I try to use .canAddProperty ("ADBE effect mask") and .canAddProperty ("ADBE Path flow Ref effect"). However, it returns false.

    I found that add or delete this property in the user interface are the buttons '+' and '-', so maybe I can use app.executeCommand (app.findMenuCommandId (theCommand)); However, I can't find that button name because it does not have a helpTips to remind me of the name.

    So how do you add the mask with script reference? Or ESTK has no permissions to access this useful property so far? I have not found anything on the Internet.

    Moreover, I have an another two quick questions:

    1. If there is more than two masks in a layer, remove for each mask is the same ("ADBE Mask Parade") ("ADBE Mask Atom"). How can I use the Remove to get the second mask such as the name property? First I treat like a table, but ("ADBE Mask Parade") ("ADBE Mask Atom') [index] actually did not work, so that ("ADBE Mask Parade") (" ADBE Mask Atom'") (index) is referring to the child property altogether in the first mask. I have no idea about it.

    2. when I use the method property() with script, property ('effect'), and property("effect") are all the two ok. The only difference in the method is the single quotes ' and the Quotation brands "." I just want to know if the "and" have any difference in the method property (), except that "this color is blue" and "this color is purple" in ESTK.

    The advice and the answer would be appreciated.

    Yes you can add masks to the effects by script.

    If "fx" is a fx on a layer:

    var fx.compositingOption = co;                                  or fx.property ("ADBE effect Built In Params')

    var fxMasks = co.mask;                                            or co.property ("ADBE mask Parade"): INDEXED_GROUP j

    fxMasks.canAddproperty ("ADBE effect mask");    true

    var fxMask = fxMasks.addproperty ("" ADBE effect mask");

    fxMask.maskReference.setValue (1);                        or fxMask.property ("ADBE effect way Brook Ref") .setValue (1);

    If you can do short

    fx.compositingOption.mask.addProperty("ADBE Effect Mask").maskReference.setValue(1);
    

    Xavier.

  • Can I add more than 100 work plans into a single file in Adobe Illustrator CS5

    Hello everyone,

    I have a single file that contains 100 different work plans. I need to add more than 50. Is this possible. When I tried to add the new work plan, the "New artboard" button becomes inactive and the "New artboard" option in the menu popup is disabled. I can do something in this situation?

    Best regards

    No. 100 plans work is the limit. You will need to pursue multiple files.

Maybe you are looking for