How do I open a multipage pdf in Illlustrator cs6

Hopefull someone can help me to stop banging my head against a brick wall....
How do I open a multipage pdf in Illlustrator cs6?
many, many thanks

Thanks TSN
It's not a complicated pdf, just 15 pages of it. If I have to individually open each page to alter one word on each, it probably takes the profit margin out of the job.
It seems such a basic thing to be able to do, there have been many posts on the internet looking for a solution, yet they won't do it. Why has it not been included?
Can I open multiple pages in InDesign? I never use it but if it's easier...
G

Similar Messages

  • How can I open and print PDF files?

    How can I open and print PDF files?

    With the free Reader if they are not print protected. With Acrobat otherwise.

  • How can I open a protected PDF

    How do I open a protected PDF using the acrobat.com (share)?

    By "protected" I assume you mean password-protected.  Download the PDF to your local disk, then open it from there, entering the password when prompted.

  • How can I open a cc2014 file in my cs6 version of Indesign ?

    How can I open a cc2014 file in my cs6 version of Indesign ?
    I have several files that has been saved in a cc2014 version and I can't open them in my CS6 version of Indesign.
    I don t have access to anyone who have the cc 2014 version to convert the file.
    How can I do it from my cs6 version?
    THANKS!

    You can't do it from CS6.
    You have to export to IDML from InDesign CC2014 (or whatever the version it was created in) and then open the IDML in the earlier versoin of InDesign.
    All explained in the FAQ on the main forum page.

  • Problem with opening some of PDFs in Photoshop CS6.

    Hi, I have a problem with opening some of PDFs in Photoshop CS6. It is said: it isn't possible to carry out an order since the module of the file format cannot analyse this file

    Don’t know if Reader has this, too, but in Acrobat one can check under Document Properties.
    I can convert and place the file in Photoshop CS6.
    I would recommend trying the usual trouble-shooting routines and if nothing helps un-installing, running the Cleaner and re-installing Photoshop.  (After making sure all customized presets like Actions, Patterns, Brushes etc. have been saved to s secure location.)
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • IText - how do I create a multipage PDF?

    Can anyone tell me how to modify the code below so that if Component c has more content than one A4 page, all content is output to a multipage PDF.
    Thanks
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.awt.*;
    import com.lowagie.text.Document;
    import com.lowagie.text.*;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.Paragraph;
    import com.lowagie.text.pdf.PdfContentByte;
    import com.lowagie.text.pdf.PdfTemplate;
    import com.lowagie.text.pdf.PdfWriter;
    public class PrintPDF {
         Component c = null;
         String documentName = null;
         public PrintPDF(Component c, String name){
              this.c = c;
              this.documentName = name + ".pdf";
              Document document = new Document(PageSize.A4,36,36,36,36);
              try {
                   PdfWriter writer = PdfWriter.getInstance(document,
    new FileOutputStream documentName));
                   document.open();
                   PdfContentByte cb = writer.getDirectContent();
                   PdfTemplate tp = cb.createTemplate(500, 500);
                   Graphics2D g2 = tp.createGraphics(500, 500);
                   c.paint(g2);
                   g2.dispose();
                   cb.addTemplate(tp, 30, 300);
              } catch (Exception e) {
                   System.err.println(e.getMessage());
              document.close();
    }

    Here is the working code for multiple page PDF for a JComponent
    import com.lowagie.text.Document;
    import com.lowagie.text.pdf.PdfContentByte;
    import com.lowagie.text.pdf.PdfTemplate;
    import com.lowagie.text.pdf.PdfWriter;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.JToolBar;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.print.PageFormat;
    import java.awt.print.Printable;
    import java.awt.print.PrinterException;
    import java.awt.print.PrinterJob;
    import java.io.FileOutputStream;
    public class MultiplePagePdf extends JPanel implements Printable
        private JTable table;
        public MultiplePagePdf()
            table = new JTable(100, 10)
                public Object getValueAt(int row, int column)
                    return String.valueOf(row + ", " + column);
            JToolBar tb = new JToolBar();
            JButton printButton = new JButton("Print Table");
            printButton.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    PrinterJob printJob = PrinterJob.getPrinterJob();
                    if (printJob.printDialog()) {
                        try {
                            printJob.setPrintable(MultiplePagePdf.this);
                            printJob.print();
                        } catch (PrinterException ex) {
                            ex.printStackTrace();
            tb.add(printButton);
            tb.addSeparator();
            JButton saveButton = new JButton("Save Table");
            saveButton.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    saveAsPdf();
            tb.add(saveButton);
            tb.addSeparator();
            setLayout(new BorderLayout());
            add(tb, BorderLayout.NORTH);
            JScrollPane scrollPane = new JScrollPane(table);
            add(scrollPane, BorderLayout.CENTER);
         *  this method is copied from http://java.sun.com/developer/onlineTraining/Programming/JDCBook/advprint.html
        public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException
            Graphics2D g2 = (Graphics2D) g;
            g2.setColor(Color.black);
            int fontHeight = g2.getFontMetrics().getHeight();
            int fontDesent = g2.getFontMetrics().getDescent();
            //leave room for page number
            double pageHeight = pageFormat.getImageableHeight() - fontHeight;
            double pageWidth = pageFormat.getImageableWidth();
            double tableWidth = (double) table.getColumnModel().getTotalColumnWidth();
            double scale = 1;
            if (tableWidth >= pageWidth) {
                scale = pageWidth / tableWidth;
            double headerHeightOnPage = table.getTableHeader().getHeight() * scale;
            double tableWidthOnPage = tableWidth * scale;
            double oneRowHeight = table.getRowHeight() * scale;
            int numRowsOnAPage = (int) ((pageHeight - headerHeightOnPage) / oneRowHeight);
            double pageHeightForTable = oneRowHeight * numRowsOnAPage;
            int totalNumPages = (int) Math.ceil(((double) table.getRowCount()) / numRowsOnAPage);
            if (pageIndex >= totalNumPages) {
                return NO_SUCH_PAGE;
            g2.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
            //bottom center
            String pageNumber = "Page: " + (pageIndex + 1) + " of " + totalNumPages;
            int width = g2.getFontMetrics().stringWidth(pageNumber);
            g2.drawString(pageNumber, (int) (pageWidth - width) / 2, (int) (pageHeight + fontHeight - fontDesent));
            // Paint the header at the top
            g2.translate(0f, 0f);
            g2.translate(0f, -headerHeightOnPage);
            g2.setClip(0, 0,
                    (int) Math.ceil(tableWidthOnPage),
                    (int) Math.ceil(headerHeightOnPage));
            g2.scale(scale, scale);
            table.getTableHeader().paint(g2);
            g2.scale(1 / scale, 1 / scale);
            g2.translate(0f, headerHeightOnPage);
            g2.translate(0f, -pageIndex * pageHeightForTable);
            //If this piece of the table is smaller
            //than the size available,
            //clip to the appropriate bounds.
            if (pageIndex + 1 == totalNumPages) {
                int lastRowPrinted = numRowsOnAPage * pageIndex;
                int numRowsLeft = table.getRowCount()
                        - lastRowPrinted;
                g2.setClip(0,
                        (int) (pageHeightForTable * pageIndex),
                        (int) Math.ceil(tableWidthOnPage),
                        (int) Math.ceil(oneRowHeight *
                                numRowsLeft));
            //else clip to the entire area available.
            else {
                g2.setClip(0,
                        (int) (pageHeightForTable * pageIndex),
                        (int) Math.ceil(tableWidthOnPage),
                        (int) Math.ceil(pageHeightForTable));
            g2.scale(scale, scale);
            table.paint(g2);
            return Printable.PAGE_EXISTS;
         * This is where the table is saved as pdf
        private void saveAsPdf()
            Document document = new Document();
            try {
                PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("/tmp/table.pdf"));
                document.open();
                PdfContentByte cb = writer.getDirectContent();
                PrinterJob printJob = PrinterJob.getPrinterJob();
                PageFormat pageFormat = printJob.defaultPage();
                printJob.cancel();
                float width = ((float) pageFormat.getWidth());
                float height = ((float) pageFormat.getHeight());
                PdfTemplate tp;
                Graphics2D g2;
                // Assuming that the number of pages would be 3, You can calculate this same way it is calculated
                // in print (Graphics g, PageFormat pageFormat, int pageIndex) method
                int numberOfPages = 3;
                for (int i = 0; i < numberOfPages; i++) {
                    tp = cb.createTemplate(width, height);
                    g2 = tp.createGraphicsShapes(width, height);
                    this.print(g2, pageFormat, i);
                    g2.dispose();
                    cb.addTemplate(tp, 0, 0);
                    document.newPage();
            } catch (Exception e) {
                System.err.println(e.getMessage());
            document.close();
        public static void main(String[] args)
            JFrame frame = new JFrame("Multiple page pdf");
            frame.getContentPane().add(new MultiplePagePdf());
            frame.pack();
            frame.setVisible(true);
    }Edited by: ms_rahman on Feb 24, 2008 4:09 PM

  • How can I generate a multipage PDF of a tab in a Numbers document?

    I am using Numbers for iPad to write down meeting minutes and spread them as PDF documents.
    One Numbers document contains for one project for every meeting one tab with the minutes.
    Formerly Numbers generated for long tabs several pages. Like in the print dialogue. Now this
    isn't possibel anymore.
    Is there any way to generate a multipage PDF of a long tab in a Numbers document?

    Dear Spanky D. Rascal
    Yes I want to generate a PDF from the iPad. Formerly it was possible to generate a multipage PDF directly from Numbers with the "open in" dialogue. That was very easy eventhough it wasn't possible to choose just one tab for PDFing.
    I have several PDF / Printing Apps on the iPad like Quick Print, Printer Pro or PDF it All. I didn't succeed in creating a multipage PDF with one of these.
    On the Mac version it ist still possible to create multipage PDFs with the printing dialogue for instance. But
    I want to do it with the iPad.
    And finally: I am using version 2.1 (1129)

  • How Can i Make A Multipage Pdf in Cs5

    Hi i was using Photoshop Cs3 in work  and they upgraded all the photoshop versions to CS5 . Now i can't find where i can create a multipage pdf. I was using the pdf tool so often it's important for me. I'm stuck thanks for the helps.
    Jeffrey Cole
    www.coookguzel.com

    Output to PDF from Bridge.

  • How can I open a large pdf (about 700 mb) on ibooks?

    I have been trying to open a large pdf file on ibooks (the file is over 700 MB) but it is unable to open it...
    Anyone has any idea what could I do to open it?

    You could try using GoodReader, available in the app store, but not free.  Great PDF reader that can do what you want.

  • How do I open single-page PDFs from Mail?

    If I receive an email containing a one-page PDF, Mail shows it as an image. I want to see it as a PDF so I can open it in another app.
    Multiple-page PDFs are fine.
    This problem also exists when sending one-page PDF files from the iPad - they arrive as images.

    Single page pdf files always appear as already open in the mail app.
    I just created a single page PDF and emailed it to myself and this is what I get when I do what I suggebd that you do. This is how you do it. Why it is working for you I cannot explain.
    If you haven't done so already, the next thing that I would try is to close the mail app completely and reboot your iPad.
    Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the Mail app and then swipe "up" on the app thumbnail to close it.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • How can I open a damaged pdf?

    I have a pdf file I was working on but now it may be damaged and Preview can not open it. It has 493.5 MB and I do not want to lose it. How do I fix this problem so I can open it again?

    By "protected" I assume you mean password-protected.  Download the PDF to your local disk, then open it from there, entering the password when prompted.

  • How can I open a blob (PDF) in new window.

    The BLOB (PDF) that is in the database is being displayed by a column link. Since the field is a blob link I haven't found any way to open it in it's separate window. There have been several postings where others have asked this but I've yet found one that has an answer.

    Hi
    I do not think it matters whether your reports portlet is a default one or a customize one. I think whne you place the portlet, you can specify in the property to open up the result in new window. I think it is common feature of Portal.
    Thanks
    Rohit

  • How do I open password protected PDF files?

    I am taking online classes and cannot open the ebooks. Are there any suggestions on how to do this?

    DIvastella0212 which Adobe software or service is your inquiry in relation too?

  • Using the Canoscan LiDE210 how do I get a multipage PDF file to OCR?

    Purchased a LiDE 210 to replace my LiDE 20 (- which worked well for 9 years) - How can I enable the OCR function when scanning a multi-page document into PDF format and want to transfer it to WORD DOCX format, without having to edit and correct manually page by page (200-500 pages of text?

    Hello,
    You can't create pdf using Adobe Reader. You need Adobe Acrobat to create pdfs, for more on Acrobat, please refer - http://www.adobe.com/products/acrobat.html
    Also you can subscribe for our CreatePDF service here - https://www.acrobat.com/en_gb/products/pdf-pack.html
    ~Deepak

  • How can i open a hebrew pdf with adobe

    i have an avery template in hebrew and it doesnt create a pdf with adobe since its hebrew what do i do?

    Sorry, I do not understand what you are asking; can you outline the steps you are taking, and where exactly "it doesnt create a pdf with adobe"?

Maybe you are looking for

  • Battery and heating problem

    Hi, recently my macbook has been heating up fast. Real fast, within 5 minutes of starting up my macbook, i can hear the fan running at high speed. And my battery life has significantly been shorten as well. At full charge, it can last me to a maximum

  • Transfer from MBP to MBA?

    Hi guys, I've just replaced by MBP with an MBA & understand that I can transfer data from one to another via Ethernet. Seeing as the MPA doesn't have an Ethernet port, I was wondering on the following: I will possibly never use an Ethernet - USB or T

  • Can one build a data warehouse using SQL rather than Warehouse Builder?

    I would like to build a data warehouse purely using SQL statements. Where can I find the data warehouse extension of SQL statements?

  • Windows or Mac-based player for SPX files?

    Hi all, we have a QM server, aka Calabrio, recording our agents.  I was curious if anyone has found a player for mac or windows that is able to play the recorded SPX files directly?  I tried VLC with the Speex codec but get nothing; it doesn't show t

  • Colors With Concatenate

    Hi Experts, I want the out put in diffrent colors with Concatenate Statement  CONCATENATE  WA_DESC WA_DESC1 WA_DESC2 WA_DESC3 WA_DESC4 INTO DESC separated by  '&&'. WRITE:/ DESC. now i want to print different data objects with diff colors. wa_desc is