How can we place the MultipagesPDF, with spceify the position through InDesign CS6?

when we import pdf file through script of placemultipagepdf in InDesign CS6, we are unable to specify the position, and percentage of document. Pl

In case you mean the sample script in Applications/Samples/[Insert Programming Language]/PlaceMultipagePDF: What is your question?
1. "The script does not ask for these values". That seems to be correct. It does not, and never did. So it is working as intended.
or
2. "We want to enhance the script and add this functionality but we are unable to do so ..."
   2a. ".. because we cannot find the proper commands to insert." Placing PDFs has been asked before (many times), search this forum for tips.
   2b. ".. because we cannot write scripts, plz do the useful". That is not what this forum is for.
Way more likely is that you are confusing Adobe's example script with the much more powerful MultiPageImporter by Scott Zanelli (http://indesignsecrets.com/zanelli-releases-multipageimporter-for-importing-both-pdf-and-i ndd-files.php).

Similar Messages

  • How can i plot a histogram with using the results of Line Length

    PLS HELP.How can i prepare a histogram with using the results of line length code(It is somewhere in the middle).
    This is a final exam take-home question. I would appreciate if you can help?
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import java.text.*;
    import java.io.File;
    public class WordAnalyser extends JFrame implements ActionListener
    private JMenuItem jmiAc, jmiSil, jmiCikis, jmiAnaliz, jmiHakkinda, jmiKullanim;
    private JTextArea jta1, jta2;
    private JFileChooser jFileChooser = new JFileChooser();
    File hafizada;
    File aktarilan = new File("Sonuc.txt");
    // Main method
    public static void main(String[] args)
    WordAnalyser frame = new WordAnalyser(); /* Ana ekran olusturulur */
    frame.setSize(400, 300); /* Degerleri belirlenir */
    frame.setVisible(true); /* Gorunebilirligi ayarlanir */
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    public WordAnalyser()
    setTitle("Serkan Ozgen Dosya Inceleme Programina Hos Geldiniz");
    JMenuBar mb = new JMenuBar();
    setJMenuBar(mb);
    JMenu fileMenu = new JMenu("Dosya");
    fileMenu.setMnemonic('F');
    mb.add(fileMenu);
    JMenu helpMenu = new JMenu("Degerlendirme");
    helpMenu.setMnemonic('H');
    mb.add(helpMenu);
    JMenu kullanimMenu = new JMenu("Kullanim Kilavuzu");
    mb.add(kullanimMenu);     
    fileMenu.add(jmiAc = new JMenuItem("Ac", 'A'));
    fileMenu.add(jmiSil = new JMenuItem("Sil", 'S'));
    fileMenu.add(jmiCikis = new JMenuItem("Cikis", 'C'));
    helpMenu.add(jmiAnaliz = new JMenuItem("Analiz", 'D'));
    helpMenu.add(jmiHakkinda = new JMenuItem("Hakkinda", 'H'));
    kullanimMenu.add(jmiKullanim = new JMenuItem("Kullanim"));     
    getContentPane().add(new JScrollPane(jta1 = new JTextArea()), BorderLayout.CENTER);
    getContentPane().add(jta2 = new JTextArea(), BorderLayout.SOUTH);
    jmiAc.addActionListener(this);
    jmiSil.addActionListener(this);
    jmiCikis.addActionListener(this);
    jmiAnaliz.addActionListener(this);
    jmiHakkinda.addActionListener(this);
    jmiKullanim.addActionListener(this);
    public void actionPerformed(ActionEvent e)
    String actionCommand = e.getActionCommand();
    if (e.getSource() instanceof JMenuItem)
    if ("Ac".equals(actionCommand))
    Ac();
    else if ("Sil".equals(actionCommand))
    Sil();
    else if ("Cikis".equals(actionCommand))
    System.exit(0);
    else if ("Analiz".equals(actionCommand))
    sayim();
    else if ("Hakkinda".equals(actionCommand))
    JOptionPane.showMessageDialog(this,
    "!!!! Bu program text analizi gerceklestirir. Her hakki saklidir SERKAN OZGEN!!!!",
    "Bu program hakkinda",
    JOptionPane.INFORMATION_MESSAGE);
    else if ("Kullanim".equals(actionCommand))
         JOptionPane.showMessageDialog(this,
         " Ilk once dosya menusunden Ac i tiklayarak analiz etmek istediginiz Dosyayi seciniz (Lutfen uzantisi *.txt \nveya *.log olsun). Daha sonra Degerlendirme menusunden analizi tiklarsaniz dosyanizda kac adet rakam, harf, \ncumle ve kelime oldugunu gorebilirsiniz. Simdiden kolay gelsin",
         "Programin kullanim detaylari",
         JOptionPane.INFORMATION_MESSAGE);
    private void Ac()
    if (jFileChooser.showOpenDialog(this) == JFileChooser.APPROVE_OPTION)
    hafizada = jFileChooser.getSelectedFile();
    Ac(hafizada);
    // Acilan Dosyayi ana ekranda gostermeye yariyan bir method
    private void Ac(File file)
    try
    // Acilan dosyayi okuma ve ana ekranda gosterme
    BufferedInputStream in = new BufferedInputStream(new FileInputStream(file));
    byte[] b = new byte[in.available()];
    in.read(b, 0, b.length);
    jta1.append(new String(b, 0, b.length));
    in.close();
    catch (IOException ex)
    // Temizle tusunun hangi ekranlara etki edecegini secme
    private void Sil()
    jta1.setText("");
    jta2.setText("");
    private void sayim()
    int buff;
    int sayac = 0;
    int Cumleler = 0;
    int Kelimeler = 0;
    int Karakterler = 0;
    int Satirlar = 0;
    int Rakamlar = 0;     
    boolean start = true;
    int linenum = 0;     
    try
    FileInputStream instream = new FileInputStream(hafizada);
    FileOutputStream outstream = new FileOutputStream(aktarilan);
         BufferedReader infile = new BufferedReader(new InputStreamReader(new FileInputStream(hafizada)));
    PrintStream out = new PrintStream(outstream);
         out.println("---Kelime Avcisinin Sonuclari---");
         String line = infile.readLine();
         while (line != null){
         int len = line.length();
         linenum++;
         line = infile.readLine();
         out.println("Line Length :"     + linenum + "\t" +len);
    while ((buff=instream.read()) != -1)
    switch((char)buff)
    case '?': case '.': case '!': /* Eger "?", "." veya "!" gorurse program cumleleri ve kelimeleri arttirir*/
    if (start == false)
    Cumleler++;
    Kelimeler++;
    start = true;
    break;
    case ' ': case '\t': case ',': case ';': case ':': case'\"': case'\'': /* Eger /t,;:\ ve \" bu isarteleri goruruse program kelimeleri arttirir */
    if (start == false)
    Kelimeler++;
    start = true;
    break;
              case 'n': case '\n': /* Eger \n gorurse satirlari arttirir */
              if (start == false)
                   Satirlar++;
                   Kelimeler++;
                   start = true;
              break;
    default:
    if (((char)buff >= 'a' && (char)buff<='z')|| /*a-z, A-Z veya - degerlerini gorurse karakterler arttirilir */
    ((char)buff >= 'A' && (char)buff<='Z')||
    ((char)buff == '-'))
    Karakterler++;
    if ((Kelimeler % 50) == 49)
    if (start == true)
                   out.println();     
    out.print((Kelimeler+1) + " ");
    out.print((char)buff);
    start = false;
              if ((char)buff >='0' && (char)buff <='9') {  /* 0-9 gorurse rakamlari arttiri */
                   Rakamlar++; }
    }// switch
         }//while
    instream.close();
    out.println();
    out.println();
    out.println("Karakter sayisi: " + Karakterler);
         out.println("Kelime sayisi: " + Kelimeler);
    out.println("Cumle sayisi: " + Cumleler);
         out.println("Satir sayisi: "+ Satirlar);
         out.println("Rakam sayisi: "+ Rakamlar);
    outstream.close();
    try
    BufferedInputStream in = new BufferedInputStream(new FileInputStream(aktarilan));
    byte[] b = new byte[in.available()];
    in.read(b, 0, b.length);
    jta2.append(new String(b, 0, b.length));
    in.close();
    catch (IOException ex)
    catch (Exception e)
    System.out.println(e);
    }

    Why is it that you're not interested in IOExceptions?
    catch (IOException ex)
    } Empty catch blocks is a hallmark of foolish Java code. At least print out the stack trace.
    %

  • How can I locate my ipad with only the serial number

    how can i locate my ipad with only the serial number

    you can't
    even with the IMEI number the police need a warrent to get such info from the carriers

  • How can I save a page with all the links for offline reading

    how can I save a page with all the links for offline reading

    Maybe '''Pocket''' is what you want?
    [https://addons.mozilla.org/en-US/firefox/addon/read-it-later/?src=search Pocket (Mozilla Addons)]

  • Someone had stolen my ipod touch how can retrive my serial number with out the ipod

    someone from my work stole my ipod touch. How can i retrive my serial number but i don't have the ipod anymore

    Report the theft to the police.
    Change your iTunes (Apple ID) password along with any other password that was stored in the iPod.  If any passwords are associated with credit cards, contact the CC company and get your card replaced (with a new number).  If any passwords are associated with your bank or any savings institution, contact them also and discuss approprate action with them.
    The "Find my..." function is pretty much useless if the device is in the hands of a thief.  All that is necessary is for the thief to connect to any computer with iTunes and "Restore as new."
    The only real protection you have is with the personal information on the device rather than the physical device itself.  Something as small as an iPod should have a strong 8-digit (or longer) password AND be configured for automatic wipe in the event of ten consecutive incorrect password entries.

  • How can I place a "Favorites" tab in the toolbar - ie : like internet explorer has??

    There is no provision for a list of "Favorites" (ie : as with internet explorer") with Firefox - this complicates use of realplayer with firefox.

    Right click a blank part of the Tab bar and then click Customize. A panel will open and you'll find a number of buttons in there which you can drag onto the toolbar. The Bookmarks button has a white star on it.
    Similarly, you can remove elements you don't like including toolbars by dragging them into that panel.
    Also, while the panel remains visible, you can re-arrange the layout to your own liking by dragging elements like toolbars and buttons around.
    For example, drag the "Home" button from its default position on the right of the Search bar and place it next to the others. Add spacers between buttons by dragging the vertical version between each (''but not between the Back/Forward buttons because they won't work anymore if you do'').
    Other things you can do.<br><br>
    * Right click a blank part of the tab bar and click "Tabs on top" to remove the checkmark. Tabs will subsequently reappear below the location/search bars.<br><br>
    * Repeat the same steps, but click the top one called "Menu bar". This will reinstate the text links at the top. However, you will lose the orange Firefox button if you do that.<br>
    Reverse the procedure if you don't like the effect.
    The status bar has been removed in Firefox 4.0.x, but you can get it back by installing this add-on: https://addons.mozilla.org/en-US/firefox/addon/status-4-evar/

  • How can I save VI's with all the subvi's.

    Dear Sir or Madam,
    I wrote a vi that I want to share with another person. I have sent the
    vi to my friend and he told me that he received it, but he need the
    SUBVI'S.
    I have many subvi's in the main vi including some commercial libraries.
    Therefore I want to be sure that the next time all the subvi's will be
    send with the main vi. How can I do this??? This is my question.
    I was playing around the saving options, but I am not comfortable with
    the results.I am using LABVIEW 6i.
    Many, many thanks for your patience and any help( I am a non-expert in
    programming).
    Luis Díaz
    [email protected]

    Select Save with Options>Development Distribution. You'll be prompted for the name of a .llb to save all of the VIs in. You can refer to the on-line help or the LabVIEW User Manual for more information.

  • How can I back up project with just the used part of the clips?

    Hello all... I have a FCPX project that I would like to back up.
    Duplicate project is copying all of the event and all of the original clips...
    In my case the original clips are 1-2 hour interviews... I use about 2-3 minutes of about 30 of them...
    Back up is ridiculous...
    I'm looking for more of a media manager type of back up where it just backs up the clips from the timeline and gives me maybe  a bit of a handle on each clip...
    Make sense?
    I hope so... cause I've spent about 3 days trying to get this project on an external drive...
    Not very successful so far...
    SOS
    Thanks!

    I'm fairly sure Apple assumes most people want to keep their original footage... "forever." Media management in FCPX has received quite a lot of praise from professionals.
    Everything comes down to prep and organization.
    Projects are just pointers into media clips and render files.  If you want to trim down your projects, go to the File menu and select Delete Project Render Files...
    Deleting Event clips will kill a project no matter what. Archiving a project without the associated Event media is pointless. Best advice is to always keep your original media. That way you can reconstruct an Event later for the clips your project requires. As far as I know, there is no way to  delete (to the trash) Event clip ranges.
    If you know that you won't be using 90% of your footage and want to delete the extraneous original footage, I would recommend using Quicktime 7 Pro and selecting the ranges you think you'll need beforehand. This is easily accomplished by opening your original clips, setting an In and Out point (just like in FCPX) -- select Copy, then File > New and Paste. Save as a Self-Contained clip and import it into FCPX. QT7Pro does not alter the original footage (as much as possible, I imagine it has to occasionally build an intitial i-frame if your original is something like H.264, but other than that, you can't tell the difference.)
    To preserve a project entirely, you will  need to back up the associated Event clips as well. Those are the clips you need to worry about trimming. You should use Copy files to Final Cut Events folder on Import. You should be able to delete any transcoded media (High Quality and/or Proxy) before archiving (don't take my word as an absolute on that -- Tom probably knows for sure.) For simplicity, you should create an Event for JUST the clips you will be using for the project to backed up. That way, at the end, you can group the Event folder and the Project together for archiving (and with the smallest footprint).
    You could also simply Export your (trimmed) project as H.264 (FCPX uses the highest quality settings) without titles, effects, generators or transitions to retain the portions of clips you want to save/archive and delete all the original media — and forego everything stated above. You will still have an exceptional quality source for any subsequent projects using the same material and it would be compact enough. I wouldn't archive with ProRes (except maybe Proxy... it's about the same bitrate as the H.264 generated, except I think the H.264 would still be a better choice.) Using ProRes kind of defeats the purpose of archiving.

  • How can we Create a Media with all the OS,Applications and drivers with cutomize settings in MDT to automate the deployment

    Hi,
    I need to Create a media along with all the packages (OS,Drivers, Applications and customized settings) through MDT for the windows 8.1 deployment.
    Can someone guide me?
    Shailendra Dev

    Hi,
    Here are 3 great links to get you started:
    http://technet.microsoft.com/nl-nl/windows/dn481547
    http://c-nergy.be/blog/?p=3968
    http://windowsitpro.com/windows/create-windows-7-media-deployment
    This should provide you enough information to do what you want.
    If this post is helpful please click "Mark for answer", thanks! Kind regards

  • How can I enable CJK typesetting options in English version of InDesign CS6?

    Hi,
    I've installed InDesign CS6 recently in English (International). I need to typeset a Chinese text vertically.
    I've heard of shareware plugins like "World Tools Pro" that can enable CJK special typesetting options, but I need a cheaper approach.
    Does anyone know how to typeset CJK text with a freeware plugin or internally without plugins?

    Thank you for your prompt reply! I understand that it's not easy for developers to make a plug-in without profit, especially in the Creative industry nowadays... So maybe a "free" plug-in is not what I should demand for, right?
    I've heard of a way to "sort of" enable the CJK editing options by playing some regedit magic! (HERE) But I hate this because it changes my entire UI into other language... (well I'm a Chinese and English reader but I've stuck to English version of InDesign for a long time... ) So may someone suggest some other possible ways to change settings internally like regedit-ing other than plugins?
    BTW, when googleing, somebody actually says that using a Chinese/Japanese/Korean version of Microsoft Word to type the CJK text and copying it to Id afterwards may work... Well I've tried but it seems to fail. Also someone suggests that since Illustrator's text box support some "pseudo-CJK options" (vertical text, rotating text, but the language can still NOT be recognised as CJK...), just copy the paragraph made in Illustrator to InDesign will work. But the latter method doesn't allow further editing of text. (most likely because the copied content is soon recognised as vector image in Id) Are these all true?

  • How can you place a video with no controls? HTML5 CSS3

    I would like to just place my video (MP4) and have it come into the page actual size with no controls, set to autoplay and loop. Can anyone tell me how to write the code to accomplish this??  Thanks in advance!!

    it's really a banner type image that I created in Flash... it's not a "real video" I converted it to video so it would play on OS devices.
    I take it you might not have an iOS device.  Even if you hide controls, the OS has it's own controls for videos that will show up for users.  Seeing as how Adobe just gave Flex to Apache this morning ( http://www.macworld.com/article/163699/2011/11/adobe_donates_flex_to_apache.html ), you might want to try Google's tool for exporting Flash as HTML5 for your banner if it's an animation you want to play.  If it's a rotating banner, I'd recommend a JQuery option.
    http://blogs.adobe.com/jnack/2011/11/google-flash-developers-export-to-html5-with-new-swif fy-extension.html
    It should work with CS4 and above.

  • How can I place multiple choice boxes on the same line instead of in a column?

    I know it is possible to place multiple fields on the same line, using drag and drop.
    But to save space, I would like to have 3 or 4 multiple choice boxes next to each other on one line. 
    Is this possible, and if so, how?
    Thanks
    Peter

    You may click on the "+" button to the right of the first multiple choice box to add more in the same line. When you hover over the button, the tooltip says "insert item beside".

  • I would like to order prints of my albumns. How can I make one order with all the pictures II want

    I have an older version of Mac and iPhoto on my 3 year old desk top. I simply want to place an order for specific pictures within multiple albumns. all I seem to find is a way to order each picture indiviually. Am I missing something? thanks

    Make an album of the photos you want to order. Photos can be in multiple albums.
    Regards
    TD

  • How can I have two fields with the same name if it makes sense?

    Hello, folks :)
    I have a pretty hard time figuring out how I can have two text fields with the same binding name.
    The whole problem is that when I need two fields with the same binding name they are still differnent coz they have the same name but differnt indices.
    I should make a form filled at runtime by merging a pdf form file and an fdf file data file. And I have no choice to do it differently. And my form file needs some data like customerName, companyName twice in one form. But there's only one possible buinding name indexed zero.
    How can I create a field with absolutely the same name or is it just impossible due to possible name conflicts? And is there a workaround to this problem? I just need one piece of data repeated in different places.
    Thanks for your replies :)
    P.S. if u think that the problem is not clear enough let me know. I'll supply you with more details. But the general process can not be changed.
    One pdf should be mergred with an fdf with as the result of their merge a new filled and flattened form. I have no control over fdfs their are generated by Oracle and I can not fill the form using XML files coz this process should be integrated in a working application.

    I just thought about a really ugly workaround with a server-side script adding values to fdf files but it's a bit of work and tests and personally i think it's a bad idea :-(

  • How can I gift a playlist, with the songs in the order I choose?

    How can I gift a playlist, with the songs in the order I choose, to a bunch of other people? Since iTunes won't allow me to burn a song more than a few times to disc, and I have to share playlists with my cover band (so we can learn songs), I need the capability to do this.

    Drag them from where? I've tried to drag them from windows explorer and it won't allow me. It seems the only place I can drag files from is from the iTunes library list. The problem is there is no way that I can find to just see the songs from a specific folder on my drive in the iTunes library list. It sorts them by artist, album, genre, etc....but not by folder.

Maybe you are looking for

  • Can,t boot into recovery

    I bought HP Pavilion g6-1240se Notebook PC about a month ago it had windows 7 home basic x64 installed on it I upgraded the OS to windows 7 ultimate but something went wrong so i decide to recover it to the original factory condition but recovery man

  • Does saving a filled -PDF form using Ctrl+P work in Reader?

    I am using Acrobat Pro XI version on my PC. I have created a form and saved it using Enable Reader Extensions. I have e-mailed it to a friend who uses Acrobat Reader on PC. She is able to fill the form but unable to save it. She tried saving it using

  • Using style sheets in a button click event

    hi. doing a project and extending the WoodStocks application. so need to google and find how to add keyboard short cuts to the data grid, the combo box, how to manually add the read only and edit columns and to do error handling for the save button.

  • Dynamic passing of the structure in LVC_FIELDCATALOG_MERGE

    Hi ABAP Gurus, I'am doing report to read cluster results My requirement is : The report uses LDB -PNP in the selection screen in addition to that Clusterid is passed and what ever cluster id we select for the pernr that cluSter id results has to show

  • BURNNING PROBLEM

    Hi Experts, BAPI_ACC_INVOICE_RECEIPT_POST What is the functionality of above one and where i  can find out it. When i am cliking on this in code it shows me an error as BAPI_ACC_INVOICE_RECEIPT_POST does not exists. Please help and explain the functi