Writing a class "manual" in Pages ?

I have Pages 2 and as part of this semester at College I will have to write a "manual" which is to be around 40 or so pages long.
The manual must have screen shots with subtitles, bibliography, index and so forth. Unfortunately the entire class will be preparing their manuals with Word. I'd like to use Pages, but may have to provide a Word compatible copy.
Has anyone done something like this and successfully exported it to Word format?
I'm hoping I can get away with providing pdf format

I don't think anyone can tell you how well Pages exports to Word. It depends entirely on the document. I'm into simple documents and I usually get the export good enough. Other people in this forum have occasionally screamed loudly about how bad the export is.
If you want a less than trivial Word document as final output, and the result is really important, and you don't have the time or possibility to experiment yourself, I would suggest you use another tool than Pages. I've heard that MS Word is fairly good at creating Word documents.

Similar Messages

  • How to Load a class manually

    Hello Friends,
    I need a help regarding how to load a class manually.
    i have the class name -- TestClass1
    and Path - com.apps.classes
    Thank you

    Thank You------
    I got the result
    String classPath = com.apps.className;
    Object obj = Class.forName(classPath).newInstance();

  • How to import user defined class in UIX page?

    Does anyone know how to import user defined class in UIX page so that the class can be called in the javascript in the UIX ?
    Thks & Rgds,
    Benny

    what you are referring to is not javascript.
    it is JSP scriptlets. These are very different.
    In order to keep a strict separation between View and Controller, it is not possible to run arbitrary java code from within your UIX code.
    However, you can run java code from within a UIX event handler; see:
    http://otn.oracle.com/jdeveloper/help/topic?inOHW=true&linkHelp=false&file=jar%3Afile%3A/u01/app/oracle/product/IAS904/j2ee/OC4J_ohw/applications/jdeveloper904/jdeveloper/helpsets/jdeveloper/uixhelp.jar!/uixdevguide/introducingbaja.html
    event handler code is run before the page is rendered.

  • How to load java class from jsp page?

    hi all!
    Does anyone know how to load java class from jsp page?
    I try to load java class from jsp page.
    Is it possible to load java class fom jsp page?
    thanks and have a good day!

    What I mean is How to load/open java class file from jsp page?
    I think we can open Applet from jsp page by using
    <applet code=helloApplet.class width=100 height=100>
    </applet>
    but, how to open java class which is an application made by Frame?
    thanks and have a good day

  • Calling java class from jsp page

    Dear Friends.
    I wrote jsp page and java class.
    Am calling java class from jsp page. after processing result,
    I have to refresh jsp page from java class.
    processing time may take 5 minutes or 1 minute etc. that depends on user.
    Can It be possible ? if possible , How ?

    Ok, I get a very strange error now:
    org.apache.jasper.JasperException: Unable to compile class for JSPerror: An error has occurred in the compiler; please file a bug report (http://java.sun.com/cgi-bin/bugreport.cgi).
    What is this??? Anyone?

  • IllegalAccessError trying to instantiate public class from JSP page

    I have a public class called UrlHolderClient located in both
    WEB-INF/classes/UrlHolderClient.class and
    WEB-INF/lib/urlholder.jar.
    This client class is used as a wrapper class around a simple ejb which holds urls. I have a JSP which tries to create an instance of UrlHolderClient in jspInit(), but the call to the constructor throws a java.lang.IllegalAccessError. I have no idea what the problem is here. I import the classes using the page directive.
    Any suggestions?

    Is this tomcat you are deploying on or some other App Server?
    Also, you reference JspInit(), have you tried instanting in
    Scriplet Code <% UrlHolderClient urlHolderClient = new UrlHolderClient() %>
    Does that not work either?

  • Is there a video tutorial which shows how to manually assign pages to menu items?

    I have a need to build out two separate menus. In order to do that, I need to be able to manually assign pages to the menu. Thanks

    Here's a tutorial on adding a Manual horizontal menu widget that should help - http://www.adobekb.com/building_your_first_website_pt07.html#addingmanual.
    Basically you just need to switch to a Manual menu type through Menu options, select the menu item and link/edit its label. You add more menu items to the menu by hitting the + symbol that appears when a menu item is selected.
    Thanks,
    Vinayak

  • Manually refreshing page in servlet

    Hi,
    I have this servlet that when processed automatically opens a window that display the results, however, because of IE's caching, when I reprocess the page the window still displays the old data. I can simply set the caching settings but I was wondering if there is a programmatical way of doing it. I try to do it on the client side using <meta http-equiv=no-cache> or <body onload="window.location.reload()"> or <meta http-equiv=refresh> or <body onload="window.location.href=window.location.href"> but nothing seemed to work. Can someone give me some hints?
    Mike Lam

    I'm not sure I follow. A Servlet cannot open a window, it can only write data the client. So, as long as you are writing new data, the cachine of IE would be a non-issue. And there is no way that IE can cache a Servlet class because IE doesn't have access to the class file, it's on the server. I probably didn't help much, but maybe you could elaborate more on what you are doing and what is going wrong.

  • Making an instruction manual in Pages

    I have an assignment in my class to create instructions for a specific task. Is there a Pages template for creating an instruction manual. Im wanting to make a little 20 page book. Maybe the size a 8.5x11 folded hamburger style.
    Anything will help.
    Thanks

    Look here:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=9&sid=55dcc1e8b75ef4 adccb0967fa9425001&mforum=iworktipsntrick
    Peter

  • Writing a file to a page in jsp in chunks

    hi there,
    at the moment i have a jsp page that reads mainly pdf files from file and streams them to the user's browser using the jspwriter class.
    adobe pdf files have a feature called Fast Web View which allows the pages to be displayed as they are loaded rather than waiting for the entire document to be loaded.
    i believe that i'd have to read the file into chunks to allow this to work (unless anyone knows any better) but i can't see a way of writing in chunks using jspwriter.
    does anyone have any idea how i can write a stream to the user's browser in chunks or use the Fast Web View feature ?
    i'm using tomcat 5.5 and java 1.5
    thanks in advance ...

    hi there and thanks for taking the time to reply.
    the pdf file that i'm testing with already has fast web view enabled.
    at the moment i'm using :
              fis = new FileInputStream(src_fname);
              while((byteRead = fis.read()) != -1)
              out.write(byteRead);
              out.flush();
    but the pdf only displays when the entire file has been read ...
    thanks in advance

  • Questions on using classes inside BSP pages

    Hi Group,
    I have a few questions on how to use classes,interfaces,parameters in classes,
    and etc., relating to OOPs concepts that can be implemented in BSPs.
    Pls send me some link wherein I can explore things and use it in BSPs.
    Thanks & Regards,
    Vishnu.

    Hi Raja,
    I am facing issues like this:
    1) When I use the code in my BSP as under:
    <%
    class ZCL_MODEL_03 definition load.
    data ref1 type ref to ZCL_MODEL_03.
    data cust_id type c value "1000".
    data c_id type c.
    create object ref1.
    c_id = cust_id.
    call method ref1->CHECK_CUSTOMER changing cid = cust_id.
    %>
    Cannot we define variables in the Scriptlet?? or we need to do only in the attributes sections only?? or in both??
    2)I am not able to use both exporting & importing things in my method call.
    eg.,call method ref1->GET_CUSTOMER
                      exporting cid = cust_id
                      importing c_id = eid.
    In the method definition, I am only using simply logic like, I was trying to send a value into the "cid" defined in the method and putting that value into "eid" which was defined exporting, but, still I could not get the value into "c_id" that I have defined in the BSP page.
    Note: in both the things(in BSP and class definition as well, I am using the same
            type for defining the attributes.
    3)When can we define a "Returning" option in the Class method's parameter    
       Definition? and how can I use it with an example?
    Thanks in advance.
    Regards,
    Vishnu.

  • How to get the ServletContext when writing a class

    Morning,
    I've got a project using al least 4 jsp documents that try to manipulate a mysql database
    To access the database and get a connection, i've put this syntax at the start of each document
    <%! Connection con; %>
    <%     
    String url =  (String)application.getInitParameter("databaseUrl");
                   String username = application.getInitParameter("username");
                   String password = application.getInitParameter("password");
                   Class.forName("com.mysql.jdbc.Driver").newInstance();
               con = DriverManager.getConnection(url, username, password);
                   %>Those documents also use classes that I create, what I want to do is keep the code I've written above in one place instead of 4 different places, Is there a way I can use the application variable, which belongs to ServletContext in a class (not a servlet)
    Message was edited by:
    Octavian

    This syntax reference JSP 2.0 : http://java.sun.com/products/jsp/syntax/2.0/syntaxref20.html
    covers JSP actions such as jsp:useBean , jsp:getProperty and jsp:setProperty.
    The API for JSTL is pretty intuitive:
    http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/index.html
    But if you need more details on a particular JSTL tag you can refer to the JSTL 1.1 Specification - it's a PDF document.
    JSTL also uses EL (Expression Language) which is also covered by the JSTL specification and by the above JSP 2.0 syntax reference.
    There are many JSTL tutorials and articles too, but most of them are old so they contain JSTL 1.0 code.
    To get yourself started you need jstl.jar and standard.jar which come with the latest JSTL 1.1 distribution found here:
    http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html
    Standard-1.1 (JSTL 1.1) requires a JSP container that supports the Java Servlet 2.4 and JavaServer Pages 2.0 specifications. Jakarta Tomcat 5 supports the new specifications. The Standard-1.1 taglib has been tested with Tomcat 5.0.3.
    After you have set up your environment you can test it with a small sample of JSTL code like this:
    inside sample.jsp
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <c:set var="someVariable" value="Hello World!"/>
    <c:out value="${someVariable}/>
    null

  • Solution for MP CM1312nfi Manual Duplex page ordering issue

    One of the things that bothered me when I got my CM1312nfi was the fact that Manual Duplex and Booklet printing were printing the back sides of the pages in the wrong order, resulting in weird page combinations (e.g. 1-8, 2-7, 3-6, 4-5). If I reversed the order of the sheets before reinserting them into the printer and then reversed the sheet order again after the job was finished, the results were as expected, but it was a pain in the rear end doing so.
    After fruitlessly trying to get HP tech support to help, I took matters into my own hands. I started digging around in the PPD file for the printer and trying different combinations of parameters. I finally stumbled upon a combination that worked, so I thought I'd share it here. If you'd like to download a ready-to-install PPD file, you can get it here:
    http://homepage.mac.com/catservant/HP%20Color%20LaserJet%20CM1312%20MFP%20Series .gz
    If you have your browser set to automatically decompress archive files (the "Open safe files after downloading" option in Safari will do that), control-click on the link and download the file that way. The file needs to stay compressed.
    Copy this file into your "/Library/Printers/PPDs/Contents/Resources" folder, saving the original file in that folder somewhere in case you need to go back to it. Then, go into the Print & Fax preference pane and delete and re-add the printer.
    If you'd rather do the modification yourself, here's the procedure:
    1. Copy the "HP Color LaserJet CM1312 MFP Series.gz" file from the "/Library/Printers/PPDs/Contents/Resources" folder to the desktop. Make a duplicate copy so you can restore the original if you make a mistake.
    2. Double-click on the "HP Color LaserJet CM1312 MFP Series.gz" file now on the desktop. The file will decompress and create a "HP Color LaserJet CM1312 MFP Series" file (without the .gz extension).
    3. Open the "HP Color LaserJet CM1312 MFP Series" file (the one without the .gz extension) in TextEdit.
    4. Edit the following two lines:
    <pre> *DefaultHPFaceOrientation: FaceUp</pre>
    <pre> *HPManDupTumbleFirstSides: False</pre>
    Change "FaceUp" to "FaceDown" in the first line. Change "False" to "True" in the second line.
    This will allow you to put the pages back into the printer as they come off the printer, i.e. without having to rotate them or flip them over.
    5. Save the file.
    6. Open the Terminal application and type the following two commands followed by the return key:
    <pre> cd Desktop</pre>
    <pre> gzip -c "HP Color LaserJet CM1312 MFP Series" > "HP Color LaserJet CM1312 MFP Series.gz"</pre>
    This will replace the "HP Color LaserJet CM1312 MFP Series.gz" file on the desktop, so you can see the importance of the duplicate copy in step 1.

    Hi marjnhunter,
    Your P2035n is a commercial product to get your issue more exposure I suggest that you post it in the commercial forums. Here is a link to the Commercial Laserjet forum.
    Thank you,
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • Please help with writing a class

    i need help getting started with this assignment. i haven't done anything with writing classes, so i don't know where to start.
    i need to create a bank account class that will keep a name, balance, up to 50 deposits, and up to 50 withdrawls. i need to include 2 arrays for the deposits and withdrawls.
    Here's what i know:
    I need a constructor that takes zero arguments. This constructor would initialize the numeric value to zero.
    I need a 2nd constructor that takes one argument, a name as a String value. This constructor would initialize the numeric value to zero.
    I need a 3rd constructor that takes two arguments, a name as a String value and a starting "balance" as a double value

    Sorry, I was watching a movie with my wife ...imagine that. Study my examples here and try to understand what I have done. You will follow the same methodology for the rest of the program. Use main to test the methods in your program.
    public class mdlAccount {
      String name;
      double balance;
      int currentDeposit = 0;
      int currentWithdrawl = 0;
      double[] deposits = new double[50];
      double[] withdrawals = new double[50];
      public mdlAccount() {
        name = "";
        balance = 0.0;
      public mdlAccount(String name) {
        this.name = name;
        balance = 0.0;
      public mdlAccount(String name, double balance) {
        this.name = name;
        this.balance = balance;
      // When the instructor says: Have a method that does deposits...
      // You need to create a method, similar to the constructors,
      // but with a return value, even if it returns void (nothing).
      // Like this:
      public void deposit( double amount ) {
        // Do some error checking.
        if ( currentDeposit < 50 && amount > 0 ) { // > is a greater than sign
          // If all is ok, add to the balance...
          balance += amount;
          // and add the entry to the array of deposits
          deposits[currentDeposit] = amount;
          // Finally, add 1 to the currentDeposit variable.
          currentDeposit++;
      // We need the 'return the balance' method so we can see if
      // the program runs correctly. This time we return a double,
      // instead of void. (void means don't return anything at all).
      public double getBalance() {
        return balance;
    // Now you create the next method for withdrawals...
    //  if ( currentWithdrawl < 50 ) {
    //    deposits[currentWithdrawl] = amount;
    //    currentWithdrawl++;
      // You want a main method so this class can be executed.
      // You can remove it later if you want to use this class
      // from within another larger program.
      public static void main(String[] args) {
        mdlAccount acct = new mdlAccount( "GumB", 100.0 );
        System.out.println("Initial balance is " + acct.getBalance());
        acct.deposit( 50.0 );
        System.out.println("Current balance is " + acct.getBalance());

  • Passing parameters from a Java class to Jsp page

    Hi everybody. I'm newbie in using Java class in conjunction with JSP pages. Infact I have a problem. How can I pass the parameters used in a Java class (as UserName, Password, and so on..) to a JSP page? What methods (and classes) I have to use?
    Thank you in advance
    Have a nice day

    It still doesn't work. I write the code
    //my java class
    package channel_service;
    import java.util.Vector;
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2002</p>
    * <p>Company: </p>
    * @author unascribed
    * @version 1.0
    public class CallMenu {
    private Vector parameters = new Vector();
    public void setParameters( String UserId ) {
    parameters.add(0, UserId);
    //parameters.add(2, Pin);
    //parameters.add(3, UserName);
    //parameters.add(4, Greeting);
    public Vector getParameters() {
    return parameters;
    //my jsp page
    <%@ page import="Channel_Service.src.channel_service.CallMenu" %>
    <%@ page import="java.util.Vector" %>
    <html>
    <head><title>User Menu Page</title></head>
    <body>
    <center><h1><i><b>This is your personal User Menu page</b></i></h1></center>
    <br>
    <br>
    <center><h2><i>In the list below you'll find all your personal information (as UserID, Password and so on...)
    and all the function you have the rights to use</i></h2></center>
    <br>
    <br>
    <table align=center>
    <tr>
    <%
    CallMenu cl = new CallMenu();
    cl.setParameters();
    Vector params = cl.getParameters();
    String UserId = (String)params.elementAt(0);
    String Pin = (String)params.elementAt(1);
    String UserName = (String)params.elementAt(2);
    String Greeting = (String)params.elementAt(3);
    %>
    <td><h2><b><i>User ID = <%= UserId %></td></tr>
    <tr><td><h2><b><i>PIN = <%= Pin %></td></tr>
    <tr><td><h2><b><i>User Name = <%= UserName %></td></tr>
    <tr><td><h2><b><i>The system says <%= Greeting %></td></tr>
    </table>
    </body>

Maybe you are looking for

  • Apps password unknown

    While running fndcpass to change passwords for a new clone, the apps password somehow was set to an unknown value. I know the old apps password, but am not able to successfully connect to the database with it. (I can connect with that password to the

  • Where can I get a good Mac FTP program?

    My question give you points :P Help!?

  • How to remote connect from NWBC  to r/3 with saprouter string

    Hi Experts, We've just installed and configure Business Client and succesfully login abap system, and i wonder is it possible to  remote connect ERP 6.0 Abap system from Business Client via saprouter string, Regards,

  • Listner is not starting up !!!!

    Hi All, I am not able to start the listner. It gives following error:- [oracle@ebs ~]$ lsnrctl status VIS LSNRCTL for Linux: Version 11.1.0.7.0 - Production on 24-NOV-2012 16:38:20 Copyright (c) 1991, 2008, Oracle. All rights reserved. TNS-01101: Cou

  • Bulk collect exception save

    DROP TABLE TEST1;DROP TABLE TEST2; CREATE TABLE TEST1(TNO NUMBER(10), TNAME VARCHAR2(5)); CREATE TABLE TEST2(TNO NUMBER(10), TNAME VARCHAR2(3), ERR_MSG VARCHAR2(1000)); INSERT INTO TEST1 VALUES(1,'CAT'); INSERT INTO TEST1 VALUES(2,'CAT'); INSERT INTO