Combining files and reordering pages

I have a Word file and PowerPoint file. I'd like to convert both into pdf's, combine the files into one, and then reorder the pages - e.g., some of the ppt-source pages followed by some of the Word-source pages followed by some of the ppt-source pages, etc. How do I merge files? How do I reorder pages once the files are merged into one?

The easiest way is to probably print the desired pages from each application to PDF files. Then open the first file. Then follow with each file and use PAges Insert.

Similar Messages

  • Need to delete the old page number from a combined file and replace it with the new number. is there a way for me to do that using JavaScipt

    is there a way of using JS to delete the old page number (1,3,32,78) on a combined PDF and inset it with a new page numbers (1,2,3,4) Thank you

    Depends. If the page numbers can be located by their location on the page then a script can be written to redact that area, and then add new page numbers in their place (or somewhere else).

  • HELP - Combining files with different page views

    Hi - I am trying to combine pdf files - some are to be viewed 2-up and others to be viewed as single page. I have not found a way to do this. Even if I save each individual file with its own page view - when I combine them I have to define the new file with a page view so it alters the individual files. Has anyone found a way to manage this problem and have each file retain its individual identity? I would rather not save them as a package but rather as merging files into one pdf file. I can only imagine there should be a way around this. Any ideas???? Thanks, Robin

    You may want to ask in the proper forum for whatever application you use to combine the files.
    This is the free Reader forum.

  • Help on retriving the content from a excel file and web page

    hi,
    i need help on identify the content on a webpage. how to do this ?
    in myproject i need to read an excel file how to read an excel file , in java?
    after reading the excel file ,i have to open a webpage based on the link available in the excel file.
    how to perform this action?
    and from the web page i need to retrive the each individual text
    how to perform these action?
    please help .... urgent
    regards,
    valli

    sales team will enter data in excel file .
    the excel file will have a list of links ,
    i need to access the excel file and open that link.
    from the link i will get some information ,such as
    company name, address, phone no, contact details.
    i need to identify each individual (address, email
    id) from the web page and store that data in the data
    base .
    how to access a excel file from java?
    i found in google jakartha-poi-jar file.
    but ther eare many jar file. which one i have to
    download?
    how to identify from a web page these different
    items?
    thanksPlease answer DrClaps's question from reply #3.

  • Combine Files and OCR

    My team here has various files that we combine to make a report which we will then process and disclose. We need the files to be either OCR'ed or optimized to do our job effectively. Some of those files have renderable text and others do not (they are scans). Is there an option where we can combine while also OCRing the scanned docs?

    We combine our reports and have the user OCR it before they begin their process. We combine both types of files, renderable and non-renderable, and then the user OCRs the mix. The process will skip the pages that don't need OCRing so I'm not sure where you are getting the idea that you can't.

  • HELP! opening a pdf file and using page view

    Hi everyone!
    I'm doing a school project in which I'm trying to develop an app that opens a pdf file from the device memory (ipad or iphone) and lets the user turn pages forward and backward by swiping on the screen. Although I have very basic knowledge of C++ and Objective C programming, I find myself completely lost and don't know how nor where to start. I'd be pleased if you could help me or at least give me a starting point to develop my app.
    Thank you
    Albert

    https://developer.apple.com/library/ios/#samplecode/ZoomingPDFViewer/Introductio n/Intro.html#//apple_ref/doc/uid/DTS40010281

  • How to put Flash video game onto inDesign PDF file and Website page or link?!

    I am making a video game using Adobe Flash 2.0. I need to be able to show what I have through a website (my portfolio) and/or insert it into an interactive Indesign PDF file. The game needs to be able to be played and be used and tested by whoever I send the pdf file to, or whoever is would be view my the site I post it on. I have attempted many different ways to put my game onto my website (cargocollective) and Indesign, but nothing is working! I need help.
    For example I need my game to be placed on the website page, and on the pdf document as an image. When it is clicked on I need it to start so people can play the game. I don't know how to do this and I would really love and need to know how! Thanks.

    Flash should be able to publish an html page which will provide the web page code needed for embedding the swf.  The page it publishes should be sufficient for planting on a server unless you plan to dress it up with other content as well.
    As far as incorporating Flash content into a PDF using InDesign goes, you are best to ask questions about using InDesign in the InDesign forum.  Here is a link to the Overview page whee you can pick which forum applies best to your situation:
    InDesign

  • PAR files and jsp pages into NWDS

    Hi,
    I need to modify transactions from the MSS 50.x package, i.e. HR transactions. I need to delete some fields on the screens.
    The sysadmin was giving me a par file
    com.sap.pct.hcm.attendanceoverviewperiod.par.bak
    But when I import the par file into NWDS, the only thing I see is the portalapp.xml and a bunch of attribute files.
    No jsp page, no class files..
    When I browse into the directoria via sysadmin/support/portal runtime via WEB-INF, I do see all the necessary files. But how do I get the whole bunch of classes, jsp etc into NWDS? Download all single elements and put them manually into a NWDS project? There must be a better way
    Any help will be gracefully awarded

    I tried it, but when I follow your instruction, NWDS gives me an error in the import wizard "<dir> does not have a .project file".
    If I look in the .par file, there is no .project file at all.
    I looked in the download of the PCD, there is no .project file either, but at least the java classes and the jsp. 
    Is it removed intentionally? Probably because it is an SAP business package?

  • Java File and JSP Page

    I am to create a link verification program -- a simple java file with the database connection & some business logic and a JSP page that instantiates the my java file. It won't work. Everytime I run the jsp page, it gives me java.lang.NullPointerException. Can anyone give me some directions? The web server I am using is JRun.
    Thank you
    Below are my code:
    JSP Page:
    <%--      Verify Links
    --%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <%@ page import="java.sql.*" %>
    <%@ page import="java.net.*" %>
    <%@ page import="pro.*" %>
    <html>
    <head>
    <title>Results</title>
    </head>
    <body>
    <%
    try{
    LinkConnection newconn = new LinkConnection();
    newconn.initialize();
    newconn.query();
    newconn.close();
    }catch (ClassNotFoundException cnfe)
    out.println(cnfe);
    catch (SQLException sqle)
    out.println(sqle);
    catch (NullPointerException npe)
    out.println(npe);
    %>
    </body>
    </html>
    Java Code:
    package pro;
    import java.io.*;
    import java.sql.*;
    import java.net.*;
    public class LinkConnection {
    Connection con;
    ResultSet RS;
    Statement Stmt;
    public void initialize() throws SQLException, ClassNotFoundException
    Class.forName("oracle.jdbc.driver.OracleDriver");
    con = DriverManager.getConnection("XXXX", "XXXX", "XXXX");
    public void query() throws SQLException
    Statement Stmt=con.createStatement();
    String strSQL="Select guideline_name, guideline_url from pgt_guidelines";
    ResultSet RS=Stmt.executeQuery(strSQL);
    while (RS.next())
    String guidelinename = RS.getString("guideline_name");
    String guidelineurl = ("http://" + RS.getString("guideline_url"));
    try {
    URL url = new URL(guidelineurl);
    HttpURLConnection link=(HttpURLConnection)url.openConnection();
    System.out.println("<font color='blue'>");
    System.out.println(guidelinename);
    System.out.println("<br>");
    System.out.println(guidelineurl);
    System.out.println("</font>");
    System.out.println("<font color='red'>");
    System.out.println(link.getResponseCode());
    System.out.println("</font>");
    System.out.println("<br />");
              }catch (Exception e)
              {System.out.println("<font color='yellow'>Error Link </font>")
    public void close() throws SQLException {     
    RS.close();
    Stmt.close();
    con.close();

    i'm having the same problem, what is the solution to this
    A Servlet Exception Has Occurred
    java.lang.NullPointerException
         at test.Lesson.runSql(Lesson.java:80)
    ===== Lesson.java file =====
    package test;
    import java.sql.* ;
    import java.io.Serializable;
    public class Lesson {
         public Lesson( ) { }
    //Line 9
         public String runSql ( ) {
              String browserOutput = "";
              Connection sqlca = null;
              Statement sqlStatement = null;
              ResultSet myResultSet = null;
    //Line 16
              /* Connect to database, run SQL and produce output */
              try { 
                   /* Connection to the database */
                   Class.forName("org.gjt.mm.mysql.Driver").newInstance();
                   String theDatabase ="jdbc:mysql://localhost/employee";
                   sqlca = DriverManager.getConnection(theDatabase,"usr","pwd");
    //Line 24
                   /* Construct and execute the sql, positioning before the
                   first row in the result set */
                   sqlStatement = sqlca.createStatement();
                   myResultSet = sqlStatement.executeQuery
    //Line 29
                   ("select emp_id, " +
                        "emp_lname, " +
                        "city, " +
                        "state," +
                        "zip_code, " +
                        "emp_fname " +
                        "from employee " +
                        "where emp_id < 250 " +
                        "order by emp_lname, emp_fname");
    //Line 39
                   /* Construct the heading for the table */
                   browserOutput =
                        "<div align=left>"+
                        "<table border=0 align=left width=520>" +
                        "<caption><i><b>" +
                        "Employee Listing</b></i></caption>" ;
    //Line 46
                   /* Construct the column headings for the table */
                   browserOutput +=
                        "<th align=left>Emp_id</th>" +
                        "<th>First Name</th>" +
                        "<th>Last Name</th>" +
                        "<th>City</th>" +
                        "<th>State</th>" +
                        "<th>Zip</th>" ;
    //Line 55
                   /* Move to next row and & its contents to the html output */
                   while(myResultSet.next()) {
                        browserOutput += "<TR><TD>" +
                   myResultSet.getObject("emp_id").toString() + "</TD><TD>" +
                   myResultSet.getObject("emp_fname").toString()+"</TD><TD>" +
                   myResultSet.getObject("emp_lname").toString() + "</TD><TD>" +
                   myResultSet.getObject("city").toString() + "</TD><TD>" +
                   myResultSet.getObject("state").toString() + "</TD><TD>" +
                   myResultSet.getObject("zip_code").toString() + "</TD></TR>" ;
    //Line 66
                   }//end of while
                   sqlStatement.close();
                   sqlca.close();
              }//end of try
              catch (SQLException e) {
    //Line 72
                   browserOutput = " Error: SQLException: " + e.getMessage();
                   browserOutput= " Error: SQLState: " + e.getSQLState();
                   browserOutput= " VendorError: " + e.getErrorCode();
              }//end of SQLException
              catch (Exception e) {
                   browserOutput = " Error: JDBC Class creation: " + e.getMessage();
              }//end of Exception
    /**Line 80**/     finally {
                   try { sqlca.close(); }
                   catch(SQLException e) {
                   browserOutput = " Error: Closing connection: " + e.getMessage();
              }//end of finally
         /* Complete the html and return it to the Java Server Page */
         browserOutput += "</table>" + "</div>" ;
         return browserOutput;
         } //end of runSql
    }//end of Lesson

  • Missing file and missing pages

    Really I have 2 questions here but they're related:
    1. I downloaded a PDB file (converted from a Text file) from my computer using Missing Sync. The log says that it was downloaded successfully but I can't find it.
    2. I successfully downloaded some PDF files (converted from Text) to my handheld and was able to open them with Adobe Reader. However, I can only read the first 50 pages as the rest are blank.
    I have a Palm TX under Palm OS and Leopard. 
    Post relates to: Palm TX

    Thank you for your very quick reply.
    I do in fact have both eReader and Mobipocket and have successfully downloaded and read many an ebook both in PDB an PRC format (over 50). I simply can't find the file that my Missing Sync log says was downloaded.
    I agree that neither the layout nor the quality of Adobe is brilliant but it's better than printing out the document when you're travelling and at least it's free. I was hoping not to have to buy Docs to Go as it's not too often that I would have to use it. But as it's not too expensive (especially at the moment as I'll be paying in Euros!!) I'll probably buy it.
    Now if I could just find my file.... 
    Post relates to: Palm TX

  • FM12: Crashes when opening files and numbering pages

    My FM12 is running on a VM with Windows 7 and 6Gb of Memory - it's a pretty large book, 750+ pages. When I get more than 700 files open, it crashes. Then it will crash while numbering.
    What should be a straight forward publishing of the book is taking two days due to crashes. I have to save the files after I open a batch and apply numbering or I lose the entire book.
    Also, when I select a few files in a folder, FM opens the entire folder of files which is really weird.
    It's version 12.0.2.89

    Reboot solves it.  Duh. 

  • I want to disable the headers and footers. There's directions on ebay saying to go to firefox FILE and find PAGE SETTINGS to disable. I can't find these.

    I need to print my ebay flyer and in order for it to print correctly, I need to take the headers and footers off the page. How can I do this on firefox? I don't see a FILE or PAGE SETTINGS anywhere. Anybody out there?

    What OS are you on?
    In Windows: press Alt+F (opens classic File menu) > Page Setup
    (I don't have personal experience with Mac or Linux)

  • Can I combine ASP and JSP pages?

    Hi all,
    Maybe a dumb question...
    but Can I have ASP pages in my JSP application?
    My problem is as follows:
    In the JSP pages of my application, I have some links to ASP application:
    http://domain/app.asp
    Now IIS is running on another port. But I do not want to go through all my JSP and change the above link to:
    http://domain:port/app.asp
    Instead any request to http://domain/app.asp should be automatically forwarded to http://domain:port/app.asp
    How can this be done? I am using Tomcat as my JSP container.
    m_asu

    Actually that is not what I am looking for. I dont want to 'buy' any product. I dont want to deploy ASP application with the JSP application. I just want to redirect the client to another website through an ASP page.
    Only catch is that this ASP page needs to sit in my JSP container (Apache Tomcat). Is this possible?
    m_asu

  • Combining files, page smaller

    When I combine files of multiple pages, they all come out fine except one or two pages comes out very small. You have to zoom in to read it. Anyone else have this problem?

    Hi,
    Please check the original file's paper size before combining that file with others to single PDF file.
    Thank you.
    Hisami

  • How do I add a PDF to a combined file

    I'm having difficulty combining files and keep getting an error message that doesn't save my combined file once complete ... are the pdfs to large?

    Thanks … I found out that some were password protected.
    Anne Broederdorf
    Regional Mini Correspondent
    Lending Manager - West
    Cell: 520.820.6450
    Fax: 317.537.4706
    [email protected]
    Customer Service is not a department...It's an attitude.
    Service does not come from a manual...It comes from the heart.
    *This e-mail (including any attachments) may contain information that is private, confidential or protected by attorney-client or other legal privilege. Any unauthorized review, use, disclosure, alteration or distribution is strictly prohibited and may violate state or federal law.  If you received this e-mail in error, please delete it from your system without copying it and notify sender by e-mail, so that my records can be corrected.

Maybe you are looking for