Trouble with singly linked method

i have this mothod in my program and im not sure how to go about it....
here is what it is.. if anyone can help me get started that would be great
      * Compares this list to the parameter IntList for equality.
      * The two lists are equal iff they are the same size and
      * for each index 0 <= i < size, the ith elements of the two
      * lists are equal.
      * @param otherList - the right operand of the equality test
      * @return true if the two lists are equal, false otherwise
     public boolean equals(IntList otherList);

Following your previous posts this might help:public class LinkedIntList implements IntList {
    protected class Node {
        protected int data;
        protected Node next;
    protected Node head;
    protected int size;
    public boolean equals(IntList otherList) {
        // *** verify that otherList is a LinkedIntList type
        // *** then assign it to a LinkedIntList local variable (eg. otherLinkedList)
        // *** verify equality of size between this and otherLinkedList
        // *** loop from this head till null found
        // *** in each iteration verify equality of data between current node from this
        // *** and current node from otherLinkedList
}

Similar Messages

  • Jittery mouse with SINGLE link DVI adaptor!! Not Dual-link

    Hello All,
    I've found the Dual-link DVI adapter threads regarding this known issue but I'm now experiencing this with _not just one but 2 Single Link DVI_ adapters and my 24" Benq display.
    I bought these 2 adapters the day I bought my laptop (mid-december) and was using one non stop for several months without a single issue and 2 days ago, suddenly my mouse is constantly jumping when connected to an external monitor. A reboot will not alleviate the problem, only when I disconnect the mini dp to DVI adapter does the mouse start behaving correctly. It happened before and after I upgraded to the new iTunes 8.1 and iLife support update. Everything else is up to date on my system...
    I've tried:
    -Zap Pram
    -Remove all USB devices but mouse/keyboard
    -Many many reboots
    -Switched from performance to better battery mode on the display settings
    -Uninstalled completely (and properly) iStat menu
    -Using 3 different mice
    -Used a brand new mini-dp to single link DVI that I had purchased for my laptop bag and never used
    So I'm back to using my laptop screen in front of a dark 24" monitor since I can't really work efficiently with a constantly jumping mouse. I've not seen anyone else experiencing this on a single link adapter... Anybody else???
    Thanks!

    I have found a possible solution to your issues. It worked for me. I am using the midi Display to DVI.
    My issue was that I started getting the mouse and video lag when the external monitor was plugged in. I had no issues in the past, it just started to happen. I thought it was a XP update so when I booted back to XP there was no lag. It was strange. I had called support and they cleared my memory but that didn't work. So when they told me it was hardware issues I didn't really believe it. Especially when it was working ok in XP but not in OSX.
    So to make a long enough story short, the thread I found suggested to plug your monitor in another location than the Mac is plugged into. Like a surge bar. I had both plugged into a surge protector so I plugged the monitor directly in the wall and what do you know, the lag issues stopped.
    Sounds strange but why it work, Who the frak knows. I am just glad it fixed this issue. Was driving me nuts.

  • I have trouble with website links not working but they work fine on I.E. it's a problem on quite a few sites .

    The problem I'm having is the links are just unclickable . I have checked all the settings and everything seems ok , but the links are not working . Everything is fine in I.E. and I am not having any problems , it appears to only be when using mozilla . On this site http://compare100.com it's the links at the bottom of the page , is any body else having the same issue ?

    After a bit more troubleshooting... This appears to be a CSS float clearing issue. In a page with both left and right floated containers, if the float is not cleared in one of various ways, Firefox may render the page properly, but the hyperlinks do not function. By clearing the float in the application of the page footer division, I am able to correct the problem in my web page structure such that all browsers render correctly with working links. When you experience this problem, you won't be able to do anything to Firefox to correct it, the page owner will have to resolve their stylesheets, unless a patch or something comes out to address whatever causes Firefox to behave this way.

  • Trouble with PDF links

    A little background: I work for an agency and have a peripheral responsibility for updating our website, so I am learning everything on Dreamweaver from square 1 basically. So bear with me as I muddle through this. A couple years ago a former employee installed version CS3 on the PC I use, and is the version I am working with to this day.
    I need to post a .pdf link of a meeting agenda to a page on the site and have it show up when it's clicked. Links to previous meeting agendas on the page work fine, but the most recent one I added 404's, even though I follow the exact code as previous .pdf links.
    My suspicion is that I trouble lies in the fact I have an old and unsupported version of the software, or some sort of conflict between HTML/HTML 5 (if something like that exists), or a combination of the two.
    Thoughts and suggestions? Thank you.

    My suspicion is that I trouble lies in the fact I have an old and unsupported version of the software, or some sort of conflict between HTML/HTML 5 (if something like that exists), or a combination of the two.
    I think it's very unlikely that either of these would be involved. No doubt the issue is either with your code for the link, with your path to the linked file, or with remembering to upload the linked file. Can we see the code on the page (best way is to post a link to the live page)?
    A little background: I work for an agency and have a peripheral responsibility for updating our website, so I am learning everything on Dreamweaver from square 1 basically. So bear with me as I muddle through this.
    The more you know about HTML (and CSS) the easier this will be. It might be a good idea to spend some time on http://www.html.net, or http://www.w3school.com

  • I'm having trouble with "this" and method dependence

    For my Data Structures course, we have to create a simple Word Processor. The constructor contains two stacks, left and right. The way the class populates the strings is pretty straight forward. Any text to the left of the cursor gets pushed onto the left stack and any text to the right of the cursor gets pushed onto the right stack (in reverse order). For example, the phrase "hello" with the cursor between the l's, would push h, then e, then l onto the left stack. o then l is pushed onto the right stack. Follow me so far?
    Next, we have to implement several methods, such as moveLeft, moveRight, delete, insert, and moveToStart. There is also a toString() method which prints the two stacks as a String. The way I have my toString() method mapped out, is first to call the moveToStart() method. This method then pops all values from the left stack and pushes them onto the right stack (left: empty, right: h-e-l-l-o). So now, I simply pop each value from the right stack and store the values in a char[] array. The array is then returned as a String.
    This data structure converts the stacks to a String fine, the only problem is preserving the original stacks. So I tried to copy the value of "this," which should correlate to the EditableString es2 (declared in main), to a temp EditableString, tempEs. I then call moveToStart on tempEs, and pop values from tempEs.right. This is all in hopes to preserve the original es2. However, as you could see from the output at the bottom is that toString() modifies es2. If it didn't, "Hello, how are you" would have printed twice. Instead, an empty string is printed.
    There is obviously something wrong with my moveToStart(). Any suggestions? I apologize for not providing any comments in the code, it's just that I tried to save space. If any further explanation is necessary, don't hesitate to ask. Thanks.
    public class EditableString {
    private Stack left;
    private Stack right;
    private JavaStack l = new JavaStack();
    private JavaStack r = new JavaStack();
    private char[] text;
    private static String cursor = new String("|");
    private EditableString tempEs;
    private Character characterObject;
    private char test1;
    public EditableString() {
    left = new JavaStack();
    right = new JavaStack();
    public EditableString(String left, String right) {
    new EditableString();
    for (int i=0; i < left.length(); i++) {
    characterObject = new Character(left.charAt(i));
    l.push(characterObject);
    for (int i = right.length(); i > 0; i--) {
    characterObject = new Character(right.charAt(i-1));
    r.push(characterObject);
    this.left = l;
    this.right = r;
    public void moveToStart() {
    while (! this.left.isEmpty())
    this.right.push(this.left.pop());
    public String toString() {
    tempEs = this;
    tempEs.moveToStart();
    text = new char[(tempEs.right).size()];
    for (int i=0; i < text.length; i++)
    text[i] = ((Character) (tempEs.right).pop()).charValue();
    return new String(text);
    public static void main(String args[]) {
    System.out.println("Starting Word processor!");
    System.out.println("----------");
    EditableString es2 = new EditableString("Hello, how", " are you");
    System.out.println("es2: " + es2.toString());
    System.out.println("es2: " + es2.toString());
    /* Output:
    Starting Word processor!
    es2: Hello, how are you
    es2:
    */

    Ok, I tried to create a copy(Es) method and modified the toString() method as follows, but I am having the same problem. Ok, in order to test my methods, I print the various sizes of several stacks. In the toString() method, right after tempEs is declared, this.left=10, this.right=8 and tempEs.left=tempEs.right=0. After the copy method is invoked and assigned to tempEs, this.left=tempEs.left=10 and this.right=tempEs.right=8. Follow me?, this is where I have trouble.
    I try to "pop" one value from tempEs.right to see if the action occurs on tempEs and not this. Well, it does. Right after the pop() method, this.left=tempEs.left=10 and this.right=tempEs.right=7. I need this.right to stay at 8. Why are these Editable Strings dependent?
    And for the record, I'm not trying to "pay" anyone to do my homework. I am simply trying to pass, and in turn, graduate. This is the second time I am taking this course (failed it with style the 1st time) and desperately need to pass. I have VERY little Java background and this class is unfortunately required for my engineering degree. So, I am simply looking for some help with my 30+hour homework assignments.
    public EditableString copy(EditableString ES) {
            EditableString xTemp = new EditableString();
            xTemp.left = ES.left;
            xTemp.right = ES.right;
            return xTemp;
        public String toString() {
            EditableString tempEs = new EditableString();
            tempEs = copy(this);
            tempEs.right.pop();
            tempEs.moveToStart();
            text = new char[(tempEs.right).size()];
            for (int i=0; i < text.length; i++)
                text[i] = ((Character) (tempEs.right).pop()).charValue();
            return new String(text);

  • Troubles with D-Link DIR 600 and AirPort Extreme

    Hi guys
    The question might has already been raised but I couldn't find anything in any other threads helping me.
    I've got a new router (came along with my new ISP) D-Link DIR600 which I tried to connect to my AirPort Extreme to have a secondary WiFi available. My devices are connected in this way:
    Internet Modem ---> AirPort Extreme (cable) ---> D-Link 600 (cable).
                                            |                                   |
                                            |                                   |
                                       WiFi(1)                          WiFi (2)
    While my APE is just working perfect the D-Link doesn't. I can connect to my DLink Router though but the "Internet" somehow won't get passed through.
    Any help
    Thanks a lot

    The dlink probably does not have a bridge mode.. so you have to use WAN bypass.
    See this post for details.
    http://forums.whirlpool.net.au/forum-replies.cfm?t=933517
    Or flash your DIR600 over to dd-wrt so you can use it in WAP mode.

  • Trouble with D-Link Router

    I have been having all kinds of issues with a D-Link WIFI router in my house. I am having to reset it on a regular basis. But the funny thing is that my mom who uses Leopard is not having a problem in the world with it. The problems I am having is that I am unable to get a connection after a period of time (sometimes a day or two of usage).
    The funny thing about all this is that at home in my house I use a D-Link router (another type) and have used the Apple airport base station and have had no problems at all. Why I am having problems with this router is beyond me. Our WiFI network is insecure (its okay as we live in the sticks). I am clueless. My only guess is a incompatibility between Snow Leopard and this particular D-Link router.
    John

    John Wolf wrote:
    Its my mothers router and she claims to not have any problems at all. She is running Leopard. At my house I have a Netgear router and am fine.
    Then I obviously misunderstood your first post:
    +I have been having all kinds of issues with a D-Link WIFI router in my house. I am having to reset it on a regular basis. But the funny thing is that my mom who uses Leopard is not having a problem in the world with it. The problems I am having is that I am unable to get a connection after a period of time (sometimes a day or two of usage).+
    +The funny thing about all this is that at home in my house I use a D-Link router (another type) and have used the Apple airport base station and have had no problems at all.+
    So, at this point, I'm confused as to whether you have a problem (or not); if so, you'd need to share some info about the model and whether it is "g" or "n" rated. If you're not having a problem, I don't understand your post.

  • Having trouble with the renameTo() method in Windows

    Hi all,
    The below code works perfectly well in netbeans but as shown as I try to call it from cmd prompt I get issues.
    The below code is designed to move or delete log files from one area or another.
    now if i try to delete the logs from command prompt I have no problem.
    However when I tried to move the files by doing renameTo() I get a false back. And as this method seems to have no relevant error message, I am at a loss....
    Now I have checked the permissions, this is not a problem (all users can edit the files, if I can't edit them why will let me delete them?), I have checked to make sure no duplicate files exist and they don't. i have also tried to move the files to different locations, same problem. The files are definitely not open.
    I need the below to work on 1.5 due to compatibility issues with other programs.
    Any ideas?
    public class Main {
         * @param args the command line arguments
         * args[0] = Directory where files are to be processed from
         * args[1] = file extension to process
         * args[2] = Number of days to limit on. IE 31 means all files older than 31 days
         * args[3] = location of log file
         * args[4] = del/move. if del, files are deleted. if move, files are moved.
         * args[5] = Location of the new file. only applicable if file is moved.
        public static final String newLine = System.getProperty("line.separator").toString();
        public static void main(String[] args) {
            try {
                File file = new File(args[0]);
                FileNameFilter fileFilter = new FileNameFilter(args[1]);
                int days = Integer.parseInt(args[2]);
                File[] children = file.listFiles(fileFilter);
                // longs required because int overflow limit reached.
                long daysAgoPart1 = 1000 * 60 * 60;
                long daysAgoPart2 = 24 * days;
                long daysAgoPart3 = daysAgoPart1 * daysAgoPart2;
                long daysAgo = new Date().getTime() - (daysAgoPart3);
                // System.out.println(daysAgoPart3);
                // System.out.println(new Date().getTime());
                // System.out.println(daysAgo);
                // System.out.println(new Date().toString());
                Date limitDate = new Date(daysAgo);
                // System.out.println(new Date(new Date().getTime()).toString());
                //  System.out.println(limitDate.toString());
                for (int i = 0; i < children.length; i++) {
                    if (children.lastModified() - limitDate.getTime() < 0) {
    if (args[4].compareTo("del") == 0) {
    printLog("Deleted file: " + children[i].getAbsolutePath(), args[3]);
    children[i].delete();
    } else if (args[4].compareTo("move") == 0){
    String fileName = children[i].getAbsolutePath();
    if (!children[i].canRead()){
    printLog("Can't read: " + fileName, args[3]);
    } else if (!children[i].canWrite()){
    printLog("Can't write: " + fileName, args[3]);
    if( (children[i].renameTo(new File(args[5] + children[i].getName())))){
    printLog("Moved file "+ fileName, args[3]);
    } else {
    printLog("Failed to move file "+ fileName, args[3]);
    } catch (Exception err) {
    printLog(err.toString(), args[3]);
    public static void printLog(String message, String logLoc) {
    try {
    File errLog = new File(logLoc);
    FileWriter errFW = new FileWriter(errLog, true);
    errFW.append(new Date().toString() + " " + message);
    errFW.append(newLine);
    errFW.close();
    } catch (IOException errFWException) {
    }Edited by: enema0007 on Sep 2, 2009 8:27 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    right I think I have worked out what I am doing wrong I think.....
    I am calling the code with:
    java -jar "deleteLogs.jar" "D:\TADDM" ".rar" 31 "D:\Working Files\deleteFilesLog.log" "move" "D:\Working Files\"
    However when I go to create file its giving me:
    D:\Working Files"logs.rar
    Which is clearly not the correct file name....
    So why is it removing the \ and not the "?

  • Trouble with Application Link

    Hi xperts,
    I am developing an custom application wherein i am suppose to send an email to selected userid by user . Its kind of confirmation email ..say like your purchase order is created ,with the details of PO# and link to edit the that PO #.
    I am making sure that the user this email is sent to exist in Oracle apps with valid account.
    For now , we are not plannin to use Workflow way of doin things . So for now i am using simple JavaMail to send the email . The content in the email is all picked up from the FndLookup table , except for the URL.
    However , when user clicks the link in the email , it doesnt come up with the application . My understanding was that even if user is not logged in Oracle Apps(UI) , this link should bring up the login screen and when user logs in the link will take him to my self-service web application page.
    Below is the link mentioned in email
    http://maxhold.icorp.com:8004/OA_HTML/OA.jsp?OAPage=/oracle/apps/xxi/pps/webui/HomePG&retainAM=Y&resp_id=50771&resp_appl_id=20003&security_group_id=0&lang_code=US
    Below is the error which i get when i use this link individually in browser window.
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_NO_REGION_CODE. Tokens: REGION = null; REGIONAPPLID = -1; (Could not lookup message because there is no database connection)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1223)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1960)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._OA._jspService(_OA.java:98)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_NO_REGION_CODE. Tokens: REGION = null; REGIONAPPLID = -1; (Could not lookup message because there is no database connection)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeData(OAWebBeanFactoryImpl.java:3526)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3478)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:988)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._OA._jspService(_OA.java:98)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:595)
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_NO_REGION_CODE. Tokens: REGION = null; REGIONAPPLID = -1; (Could not lookup message because there is no database connection)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeData(OAWebBeanFactoryImpl.java:3526)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3478)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:988)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at oa_html._OA._jspService(_OA.java:88)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._OA._jspService(_OA.java:98)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:595)
    any help is appreciated . This has been pain point from quite some time
    thanks

    verify using jdr_utils.LISTDOCUMENTS(/oracle/apps/xxi/pps/webui/HomePG,true) if this xml is available in the mds rep or not.
    Thanks
    Tapash

  • Trouble with Pagemaker Links

    How can I embed graphics in pagemaker 7.0.  I have a 40 page document that I have printed before and converted to a pdf.  Now my links are not embedding.  I went back and re-linked everything from a clip art disc.  As soon as I eject the disc the links disapper.  I can't understand why things aren't linking or embedding.  Any help would be so appreciated. You can email me at [email protected]
    thanks
    Linda

    From the old PM Forum FAQs:
    ONLY use File>Place to bring graphics into PageMaker
    When placing images in a PageMaker file, the following message appears:“The graphic in the linked file would occupy xxxxxxx bytes in the publication. Include the complete copy in the publication anyway?”The correct answer to this question is always "NO".
    (You can permanently avoid this popup in future docs by unchecking "store copy in publication" under Element -> Link Options with no publication open. You can do the same to avoid further prompts in pre-existing documents.)
    l
    Do NOT use Insert Object or Paste Special
    Object Linking and Embedding is highly problematic in the Postscript environment (e.g. creating PDFs), severely restricts portability (other applications have to be present) and is really only present in PageMaker to gain Microsoft approval as a Windows application. It has been dispensed with in newer applications, e.g. InDesign.
    l
    Do not Place graphics from a floppy, Zip disk, CD, or network drive. Copy the graphic file to your local hard drive, then Place.
    l
    Use only TIF or EPS graphics (plus PSD and AI with PM7)
    l
    Do NOT use JPEG, GIF, WMF, CGM, DXF, or any graphics format other than TIF or EPS (Click here for the Adobe Knowledgebase article about the Limitations of Metafiles.)
    l
    You can place PDFs as graphics - they are essentially handled as EPS by PageMaker
    l
    Do NOT copy/paste graphics from other applications. The Windows clipboard will lose information required by PageMaker for high quality output.
    l
    Do not embed your graphics in PageMaker documents. Link only. (See the first bullet point)
    l
    Save Illustrator or CorelDraw graphics as EPS for placing in PageMaker
    l
    For best results with Illustrator EPS, convert all type to outlines, and save back to version 7.
    l
    Save Photoshop graphics as TIF (the exception is duotones - save as EPS)
    l
    Size your Photoshop graphics in Photoshop - do not scale in PageMaker, or if you must, do NOT scale UP (e.g. stretch a TIF to make it larger) in PageMaker.
    l
    Photoshop's preferences should be set to NOT embed profiles in grayscale images - they can cause problems in PageMaker
    l
    PageMaker supports transparency in vector EPS or TIFs with clipping paths ONLY. GIFs will not retain transparency and shouldn't be used in PageMaker anyway. See the other FAQs in section 3 for more details on transparency.
    l
    PageMaker does not support progressive JPGs nor 16bits/channels TIFFs. Use Photoshop and re-save as 8bits/channel TIFFs.
    Iechyd da! John
    19:01 24/06/2009 BST

  • Trouble with D-Link DI-524 wireless router

    i have connected successfully to the internet with this router, but then when i turn my computer off, my airport card turns off and i cannot turn it back on , it is grayed out in the system preferences. i connect through verizon dsl. sometimes when i turn my computer on, the airport icon is on, sometimes it is off. i can't figure out how to turn it on consistently. any suggestions would be greatly appreciated.

    Phish, I must first declare I do not have that router. However, I've checked the on line specs of that router, and can tell you that you won't have any problem using it with your iBook.
    Now, to get more specific, this router claims to be 802.11g standard compliant, the same standard the iBook uses. It is WEP and WPA compliant, both of wich work well with the iBook, however, the WPA is way more secure than WEP, and also is simpler to set (you don't need to guess any hexadecimal code, choose between several passphrases nor enter any special $ign before the password) on Macs.
    Now, do not be fooled on thinking that you must install the ".exe" setup program on your ibook to make it work with your router. You mentioned you are already using the router, so you should only need to open the iBook, and, if your network is open (which I DO NOT RECOMMEND) your precious little white laptop will ask you if you want to connect to your network, that simple!
    If you have WEP/WPA and the SSID broadcast on, then you'll need to enter the password, if you are not broadcasting the SSID (an even more secure setting), you'll need to enter the name of the network and the password. Unless you are filtering the MAC numbers to connect the network, you won't need to change ANYTHING to let your iBook to surf wirelessly.
    There is also a way to configure the wireless network with your ibook, (with any browser) but I pressume you won't need it, as you already have the network installed.
    Good luck and congratulations on your new acquisition!

  • I'm having trouble with my payment method payment type it's not accepting any of my cards

    Payment method/payment type will not accept any of my cards for payment it's saying my security codes are wrong there are available funds on both card

    You have exactly the same name and address on your iTunes account that the cards are registered to : http://support.apple.com/kb/TS1646 ?
    And when you say that there are available funds on the cards, do you mean that they are debit cards ? If they are then I don't think that they are still accepted as a valid payment method in all countries - from this page :
    You may be able to use other payment types in your country, like debit and Maestro cards
    which implies that they are not accepted in all countries, and there have been a number of posts about them being declined.

  • Trouble with dynamic link manager in starting a cs6 product

    i just re-installed cs6 on a new hard drive.  Now, I get an error message when I try to load Photoshop 64-bit.  Dynamic Link Manager has stopped working.
    I applied the DLM update, applied all the updated to all the programs in cs6, and still getting the DLM error message.
    HELP!
    Michele Johnson
    423-619-9886

    Tech support was finally able to correct the problem.  He went into the appdata folder and renamed the dynamic link manager file.  Then he restarted Photoshop,  which then automatically recreated the file.  Such a simple solution.

  • I am having trouble with some of my links having images. For example, Foxfire has a picture that looks like a small world. The links in question are blank.

    I am having trouble with my links/websites having images attached to them. The place where the image should be is blank. For example, AARP has an A for its image. My storage website has a blank broken box where the image should be. I forgot I had trouble and had to reset Foxfire, this problem occurred after that reset.

    cor-el,
    Mixed content normally gives the world globe image, unless you are using a theme that uses a broken padlock instead. Maybe the gray triangle means invalid? I came across that in a few themes (what is invalid was not made clear), but those were not using triangle shapes to indicate that.
    I came across that mention in one of the pages you posted:
    * https://support.mozilla.org/kb/Site+Identity+Button
    I cannot attach a screenshot because I have not seen a triangle of any kind in my address bar.

  • What's wrong with this simple method

    i'm having compile troubles with this simple method, and i think it's got to be something in my syntax.
    public String setTime()
    String timeString = new String("The time is " + getHours() + ":" + getMinutes() + ":" + getSeconds() + " " + getIsAM());
    return timeString;
    this simple method calls the get methods for hours, minutes, seconds, and isAM. the compiler tells me i need another ) right before getSeconds(), but i don't believe it. i know this is a simple one, but i could use the advice.
    thanks.

    Hi,
    I was able to compile this method , it gave no error

Maybe you are looking for

  • Query on integrating windows file server into SAP KM using WEBDAV

    hi I have sucessfully integrated windows file server into SAP KM using WEBDAV. I have query in it regarding the possible validation against the portal Database user. Can we configure such that the user comparison happens for LDAP as well as database

  • Bootcamp - The disk cannot be partitioned because some files cannot be moved.

    I know what you're thinking; this question has been posed before. But my circumstances are different. Sooo I bought a brand new Macbook Pro 15" Retina, late-2014 model on Monday. After some initial setup (moving my music, downloading programs etc.) I

  • [SOLVED] Pacman - could not open file

    After being forced to downgrade my firmware in this thread I get the following error in pacman... :: Starting full system upgrade... resolving dependencies... [b]error: could not open file /var/lib/pacman/local/linux-firmware-20120227-2/desc: No such

  • Distribute Global outline agreement to non SAP system

    Hello, We have a system called Upside for legal Contract managment where complex workflow and legal team works. Our requirement is to to send SRM Global outline agreements to that system as metadata and once all the approval in Upside completes they

  • How to Correct Note With Question Mark

    Hi, We are facing one problem in SPAU during the upgradation, two notes with queastion mark . Those two note are not relevent for our version... In the notes it is showing like obsolate version implemented .... SAPRUPGM is the program to correct the