NullPointerException forever! Weird problem..

Note: I'm using Motorola SDK for Motorola OS Products Version 6.4
this is my MIDLET classs
protected void startApp() throws MIDletStateChangeException
          this.myList = new ListCanvas(Font.SIZE_SMALL, false);
          this.myList.setTitle("asdsd");
          display.setCurrent(this.myList);
     }and this is my Canvas derived class
import javax.microedition.lcdui.Canvas;
import javax.microedition.lcdui.Graphics;
public class ListCanvas extends Canvas
     private String title;
     public ListCanvas(int FontSize, boolean textCentreAligned)
          this.title = "";     
     protected void paint(Graphics grfx)
          grfx.setColor(0x00FFFFFF);          // White Bg
          grfx.fillRect(0, 0, this.getWidth(), getHeight());
          grfx.setColor(0x000000);
          grfx.drawString(this.title, this.getWidth() / 2, 0, Graphics.HCENTER | Graphics.TOP);
     public void setTitle(String text)
          System.err.println(text);
          this.title = text;
}its quite simple.. all its doing is drawing some text on the screen...
now when im running it using the emulator in the SDK..
i get
1. "null" printed in debug window << from the System.err.println() in setTitle()
2. java.lang.NullPointerException occurred in ListCanvas.paint(Graphics), ignored.
the basic problem here is no matter what i do.. i don't know why the string im passing to my canvas class is going through as a null??
therefore i cant use it in the drawstring...
it always keeps giving me this exception..
the same problem also appears on cell phone which runs Motorola OS so its not an only desktop emulator problem!
though it works perfectly on WTK and Motorola for Linux OS products emulator!! and other cell phones...
whats the solution to this please?? im really tired and need this work

Dayson
It's weird no doubt, but have you tried initializing title at declaration?String title = "zzz";Other things you can try: rename methods, rename parameters, rename variables, rename classes.
All of which suggestions no doubt sound absurd, but some years ago I faced a security violation (the dreaded Windows C000..005) in a Visual FoxPro program, and was 100% sure that my code was OK. The problem went away after I renamed a report file. Then I've had blackout crashes of Microsoft&reg; HTML Help editor -- no error message, the program window simply disappeared every time I tried to compile a particular help file -- which was solved by renaming a MIDI file from popcorn.mid to pop.mid... which was used in ALL my other help files, which compiled fine with the original name.
When you're clutching at straws, and the fault is not yours, you have to try everything!
Wish you luck, Darryl

Similar Messages

  • SAP GUI 7.10p15 weird problem on FB70

    Hi all,
    We upgraded SAP GUI 7.10 to patch level 15 from patch level 14 using the install server on our Windows XP machines. A weird problem seems to appear since then on FB70. You press once or twice the ENTER key, without filling any field on the screen and the GUI stays on a busy state forever (trying to constantly redraw the screen as to show an error message on missing account number). It results to 100% CPU usage on the client (Windows XP machines, tried on Windows 7 also with same result) and seems to also stress the SAP system a bit. The only way to stop that behavior is to use the Windows task manager and kill the busy window. I have not seen this behavior before and can't reproduce it in any other transaction until now.
    I got access on a machine that was still on patch level 14 and works just fine. I did the upgrade and the same behaviour (busy, 100% CPU) instantly appears. Oddly enough, this behavior does not occur if I run FB70 throught the debugger (/h) in any case.
    Have you seen something like this or do you have any clue why that weird behavior might appear?
    Thank you very much in advance for any insight

    Hello Artemios,
    Yes, this seems to be a know issue with Patch 15. Please open a ticket on BC-FES-GUI to get a fix for that or wait until Patch 16 is released.
    Kind regards,
    Martin

  • Cancel button weird problem

    im trying to program a game that works with JOptionPane, and ive come to this weird problem:
    this works fine but throws a null pointer exeption when i press the cancel button:
    if (e.getSource() == easy)     {
    do {
         word = JOptionPane.showInputDialog (x.create(1));
    result = "" + ((x.right(word)) ? "YOU GUESSED!" : "YOU MISSED!");
    JOptionPane.showMessageDialog (null, result);
    while (palabra != null);
    but when i try to catch the exeption:
    if (e.getSource() == easy)     {
    try {
    do
         word = JOptionPane.showInputDialog (x.create(1));
    result = "" + ((x.right(word)) ? "YOU GUESSED!" : "YOU MISSED!");
    JOptionPane.showMessageDialog (null, result);
    while (word != null);
    catch (NullPointerException no){}
    The weird thing happens:
    the first time i press cancel it works fine but if i press easy again and then cancel it just reloads the input dialog and if i press cancel again it works, but if i do easy again, this time i have to press cancel 4 times for it to work, and if i press easy again i need 8 cancel, then 16 and so on....
    i have no idea why this happens....
    can anybody give me some help?
    thank you.

    /* the error takes place when presing the cancel button
         to make this work press "press me first" and then activate me will show the
         window, presing cancel and then again activate me makes everithing worse */
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class sample     {
    static JButton neu = new JButton("Press Me!");
    JButton act = new JButton("Activate Me!");
    String word,result;
    public Component createComponents() {
    neu.setMnemonic('i');
    neu.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
         act.addActionListener(this);
    if (e.getSource() == act)     {
            do
             word = JOptionPane.showInputDialog ("press cancel");
             result = "" + ((word.equals("cancel")) ? "yes!" : "cancel!!!");
             JOptionPane.showMessageDialog (null, result);
            while (word != null);
         JPanel pane = new JPanel();
            pane.setLayout(new GridLayout(0, 10));
         pane.add(act);
         return pane;
    public static void addComponentsToPane(Container newbie) {
    newbie.setLayout(new GridLayout(5,5,5,5));
    newbie.add(neu);
    private static void createAndShowGUI() {
            JFrame frame = new JFrame("Demo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            addComponentsToPane(frame.getContentPane());
            frame.pack();
            frame.setVisible(true);
    public static void main(String[] args) {
    try {                              
                UIManager.setLookAndFeel(
                    UIManager.getCrossPlatformLookAndFeelClassName());
            } catch (Exception e) { }
    JFrame frame = new JFrame("LETTERAMA");
            sample app = new sample();
            Component contents = app.createComponents();
            frame.getContentPane().add(contents, BorderLayout.CENTER);
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
          frame.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                    System.exit(0);
           frame.pack();
            frame.setVisible(true);
    //ps. sorry for the horrible grids, i was kind of in a hurry

  • Weird Problem using Mnemonics

    I have a weird problem with mnemonics:
    When I use the mnemonic for my JMenuItem to open a specific JPanel the first time (e.g.) it works fine, then if I then close it for example and I still have the "Alt" key pressed I get the follwing exception??? :
    java.lang.NullPointerException
    at javax.swing.SwingUtilities.getWindowAncestor(Unknown Source)
    at com.sun.java.swing.plaf.windows.WindowsRootPaneUI$AltProcessor.postProcessKeyEv ent(Unknown Source)
    at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(Unknown Source)
    at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(Unknown Source)
    at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(Unknown Source)
    at java.awt.DefaultKeyboardFocusManager.dispatchEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    Hope someone can help.
    Kanita

    The mnemonic are not working because the Window or the Frame on which your components are added have lost the focus while pressing the Alt key.
    I had faced the same problem , but I wanted a focus on JMenuBar which i had added to my frame.
    when i was clicking the JButton using the mnemonic , i used to loss the focus. But afterwards i put a code in the actionPerformed part of the button to bring the focus to the JMenuBar.
    rootFrame.getJMenuBar().getComponent().transferFocus();
    rootFrame is my main frame on which the JMenubar is added.
    I am using java 4 version.

  • Apple Banned me, because of a very weird problem with my "Factory Unlocked"

    Hi Everybody! Im having a very weird problem with my unlocked iphone 4.
    First of all, i would like to apologize because of my english, is not very good. My native language is Spanish.
    Well.. Im from Mexico, and here we can buy the iphone Unlocked on the Apple Online Store.
    Here's my problem. Apple has exchanged my iphone 3 times.
    I returned the iphone the first time because the screen was totally yellowish, other than that everything was working great!, that was by the end of September.
    On October 20th, i recieved my second iphone, and then a bigger problem started .
    Before i continue, let me give you this information: here in Mexico we have basically 3 cell phone companies
    1.- Telcel
    2.- Movistar
    3.- Unefon
    OK, now on october 20th, i recieved my second iphone, and then procced to activate via itunes using my UNEFON sim card (microsim).
    And every time i tried to activate it, only got this message onscreen:
    http://i148.photobucket.com/albums/s2/jorgelomeli/Screenshot2010-10-29at24915PM. png
    I though something was wrong with my brand new factory unlocked iphone 4.
    I have 4 more simcards from my brothers (they all had iphone 4 too)
    I tried telcel sim card, and i could activate my iphone. Then i insterted the Movistar microsim, and it worked too!! But then when i put the Unefon sim, the itunes logo inmediatly appears on the screen asking to activate on itunes, and when i tried that, the only response i got was the image above saying " The Simcard inserted on this iphone does not appear to be supported"
    Weird thing here is, that, when i put my Unefon sim card on my brothers iphone 4, it worked great! on all of them, internet 3g, phone, wireless , evrything!
    I called apple support, and they exchange the iphone for another one.
    I recieved the third iphone on October 29. Last friday. and guess what? SAME PROBLEM! different serial number, same week production (week 42) but exactly the same message on itunes.
    Very, very frustrated, i called apple again, and after 1 hour with thechnical support, they told me " We are sorry, but we can only offer you, your money back, NO MORE EXCHANGES FOR YOU"
    I said why?... i dont want my money back! i want an UNLOCKED iphone!, but they refuse to give me another iphone.
    When i asked techincal support, why my unefon sim card worked great on all three of my brothers iphone but not on mine, he just told me, "I really dont know, i guess they just got lucky" ****, this answer put all my trust i had on apple products for years, right on the garbage.
    Since they refused to give me another iphone, i accepted my money back, and inmediatly after i finished the call, i asked my brother to buy me one more time an iphone 4 using his name, and his credit card. Now i have to wait until November 8-12 to recieve my new iphone, hoping this time i get a REAL UNLOCKED iphone, and not a partially unlocked iphone.
    btw. i even went to Unefon costumer service and bought a new prepiad line, with a new microsim, just to be 100% sure that this problem is not because of the sim. And again didnt worked on my iphone, but it worked on any of my brothers iphone4.
    Serial numbers of the 3 iphones:
    79039C0U* (this one worked great with Unefon, only problem was yellow screen)
    85042GR4*
    81042FJB*
    What do you suggest me? any info would be really aprecciated
    FYI i also restore 4 times the last iphone and nothing seemed to work, i use 3 different computers, Macbook Pro, iMac, and an Hp with Windows 7, and the same message on all three computers.
    Wierd thing also, one of my brothers bougth an iphone 4 this last week too, but he bought the 16Gb not the 32Gb. His iphone production week is 42 also! and when i put my Unefon sim in his iphone works great!
    I dont know what else i can do, I just need to have faith that my new iphone coming this november will be real unlocked, but what if i'll recieve an iphone and then the same problem?? time for android? just kidding really guys, what can i do? anyone with similar problem like me? i dont wanna use Telcel or Movistar, i wanna use Unefon, and thats why i bought an Unlocked iphone
    btw: jailbreak is not a solution for me, because i always like to use legal software on all my apple products, and because of the warranty.

    According to http://support.apple.com/kb/HT1937, there are two official carriers in Mexico (Movistar and Telcel) and neither carrier offers an unlocked phone.

  • Iphone 4, having a weird problem /: can't seem to fix it!

    So i have been having my iphone for a while, i have no warranty on the phone now. I have this weird problem that when i scoll down my messages and stuff i can see the outline of the message kind of show rainbowish colors that sort of show a bit when i scroll, right near the border of the message. its kind of annoying at times, also there are times when i press the home button, right when i get to my wallpaper, the outline of the letters when i text are there like very very faint, they disappear after for a while but then come back sort of like a glitch, and i cant fix it at all. then i would see faint horizontal lines, i would notice them when i use the camera, they disappear also. can anyone help me with this or suggest something?

    Screen lag is normaly the LCD itself. But try restoring the iPhone. http://support.apple.com/kb/HT1414

  • Hiya, I've got a weird problem with my iPhone4. On the 'home page' of my iPhone the mail symbol tells me there's a new mail waiting for me. However, there's no new mail to be found. Does anyone know what the problem is? Thanks

    Hiya, I've got a weird problem with my iPhone4. On the 'home page' of my iPhone the mail symbol tells me there's a new mail waiting for me. However, there's no new mail to be found. Does anyone know what the problem is? Thanks

    This response is a little late as I just read about your problem. I have a 2012 Dodge Charger and a 2012 Chrysler Town and Country and both worked flawlessly with the iPhone 5s my wife and I had. However, we just upgraded to the iPhone 6 and Uconnect will receive calls but you cannot answer them. You can callout successfully, however. the annoyance being the inability to answer incoming calls in the HandsFree mode.

  • Weird problem involving my external hard drive - help please!

    I recently got a formac mini 120 gb firewire hard drive, which had been working fine with my g4 quicksliver.
    i then went to a friends (g5 machine) with my drive and he put some data on it - bought it back to mine and managed to re connect the drive and take the data - no problem - very happy.
    I recently gave my drive to another friend using a g5 and when it came back, nothing - i don't get the drive symbol appearing. turned the comp on and off many times and tried re-connecting etc still no drive appearing.
    Then i took the drive to my friend with a mac lap top power book. connected there - working fine. Baffling. was happy that my data can still be accessed.
    I know it's not the firewire cable because i can get power to the drive - i can see the red light at the fron on.
    Can anyone help with this weird problem?
    Thanks

    Thought you could use this info about getting FireWire to work!
    First, you should always Repair Permissions in Disk Utility before and after any update; I would do that now. If you installed your update with FireWire plugged in, your Mac may not recognize it anymore.
    Try resetting your FireWire ports by disconnecting all FW devices, shut down your Mac and unplug it from AC power (wall socket) for 30 minutes. plug it back in and try FW.
    If that did'nt work, download the combo update from this site (yours may be corrupt), not Software Update, disconnect all firewire + USB devices except keyboard + mouse, Repair Permissions, re-install update, Repair Permissions again + try. Yours might be the 10.4.10 Combo update. I have no idea since you did not fill out your specs. fully when you signed in to this site. Others reading, download the Combo that applies to your system. This link is for PPC Macs not Intel Macs.
    If that still did'nt get it Zap the PRAM. While restarting Mac hold down the following key combo Command-Option-P-R. Keep holding those keys down till you hear the second start-up chime, then release.
    For those of you with Macs that are not PowerBooks or iBooks, a bad internal battery can cause FireWire to not be recognized, so make sure it's good! Also, here is Apple doc.#88338 on getting FireWire to work.
    Good Luck!
    Cheers!
    DALE

  • Weird problem when executing an update statement

    Please help me out with this issue. This a very weird problem i'm facing while executing the following update statement.
    update tblo.S_TABLE c
    SET (ACCNT_NAME, ACCNT_LOC)
    =
    (select NAME, LOC from S_TABLE1 p
    where p.ROW_ID = c.ACCNT_ID)
    where ROW_ID = 'XXXXX'
    The statement executes perfectly fine in "SQL Plus" but when i try from my application or any SQL Tool that uses ODBC, it fails with the following error
    <eb1>ORA-00923: FROM keyword not found where expected
    State:S1000,Native:923,Origin:[Oracle][ODBC][Ora]</eb1>
    ODBC Driver Used: 9.2.0.2.0

    Yes this could most probably be resolved by upgrading the driver. I'hv tried MS Oracle ODBC driver but that is even more problematic!
    The applications works fine in another environment which uses a Merant ODBC driver. Thanks for your time and advice.

  • Weird problem when downloading the output to an excel sheet

    Hi to all,
          when i download the list, output by an alv grid, i observe a weird problem..in the excel sheet the last digit (10th digit) of the first col. which is delivery no., is getting truncated...0001802563 is getting downloaded as 000180256..couldn't understand why...when i use conversion_exit fm, the values are not getting truncated and downloading correctly...curious to know what's gone wrong in this funcationality? thanks all
    cheers,
    Shankar. M.

    actually the problem is in the field catalog.if u can send me the code, i shall bug fix it for u.

  • Weird problem with JApplet

    I'm having a weird problem with JApplet. So first I create an Applet with this code
    public class japp extends JApplet {
         public void init() {
              Container content=getContentPane();
              JButton jb=new JButton("Hello");
              content.add(jb);
    }and with this in the .html file;
    <html>
    <body>
    <APPLET CODE="japp.class" WIDTH="650" HEIGHT="500"></APPLET>
    </body>
    </html>
    And opened it in Firefox, it worked as expected. However, when I change the code in any way, i.e.
    public class japp extends JApplet {
         public void init() {
              Container content=getContentPane();
              JButton jb=new JButton("Goodbye");
              content.add(jb);
    }and compile it, it still shows the old button that displays "Hello". I've tried deleting the .class file from before and recompiling, that doesn't work. What am I doing wrong?
    Thanks.

    Reloading the page usually doesn't work. You will need to open the Java Console and clear classloader cache (x). You can also use appletviewer for testing purposes.

  • Problem of PI am having a weird problem in prinrinting List in Address Book

    I am having a weird problem in printing a list of addresses in Address Book. The odd number pages (1,3,5,etc.) print fine but the even number pages move the phone numbers from the third column and prints them over the second column's address and Note fields. Anybody know what is going on here? I have tried the Roll Call Directory software suggested by one respondent on another printing problem and while it is very nice, it seems to have its own quirks (Splits the information when it reaches the bottom left column of a two column set-up or prints at the top left column of the next page when it reaches the end of the right column instead of keeping the address intact in one spot).

    P.S. To as to this problem. I tried printing some more pages of the address list and now while some of the odd numbered pages seem OK as you go along it switches to some of the even numbered pages being OK with the odd numbered pages having the third column shifting to overprint on part of the 2nd column. In addition, I can't print envelopes since the program simply does nothing or crashes when the print button is selected.

  • I am facing a weird problem with my iphone 4s Wi-Fi connectivity. As i connect my iphone to my office Wi-Fi, internet works in one building, but it doesnt work in the other building, although the phone shows Wi-Fi is connected. Please help me out!!

    I am facing a weird problem with my iphone 4s Wi-Fi connectivity. As i connect my iphone to my office Wi-Fi, internet works in one building, but it doesnt work in the other building, although the phone shows Wi-Fi is connected in the other building. This problem was not there earlier but has occured recently. I would also like to mention that none of my other colleauges who uses iphone are not facing this issue. Please help me out!!

    Assuming you entered the correct WiFi password for your network, see these articles:
    iOS: Troubleshooting Wi-Fi networks and connections
    iOS and OS X: Recommended settings for Wi-Fi routers and access points

  • Weird problems with CSS being applied to JSF pages

    I have this really weird problem with my CSS rules being applied to my JSF pages. My CSS rules don't get applied unless one of the following two things happen:
    - A page is reloaded (by redirecting to itself, or if there were validation errors)
    - The previous page in the history had the same relative reference to the same CSS file.
    If a page is newly loaded, and the previous page did not have that same CSS reference, the CSS styles will not show up. Also, if the above is true, and the page is reloaded by JSF, the CSS styles show up.
    Now, my problem could be solved if I put all JSP files in the same level, but the display of the first page would still be without the CSS style applied.
    Is this known behaviour? And if it is, does it have anything to do do with the way JSF handles URLs (always one level back)? Help and input is kindly appreciated!

    Dude,
    I tried the same
    <link rel="stylesheet" href="<h:outputText value="#{facesContext.externalContext.requestContextPath}"/pages/css/default.css" />
    and I got the following Jasper exception.... pointers plz ??
    =============================================================
    2005-08-24 14:18:55,937 [http-8080-Processor25] ERROR org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[mydemo].[FacesServlet] - Servlet.service() for servlet FacesServlet threw exception
    org.apache.jasper.JasperException: /myproj/eventCrit.jsp(8,78) Unterminated <h:outputText tag
         at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:39)
         at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:405)
         at org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:130)
         at org.apache.jasper.compiler.Parser.parseOptionalBody(Parser.java:1049)
         at org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1367)
         at org.apache.jasper.compiler.Parser.parseElements(Parser.java:1564)
         at org.apache.jasper.compiler.Parser.parseBody(Parser.java:1793)
         at org.apache.jasper.compiler.Parser.parseOptionalBody(Parser.java:1060)
         at org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1367)
         at org.apache.jasper.compiler.Parser.parseElements(Parser.java:1564)
         at org.apache.jasper.compiler.Parser.parse(Parser.java:126)
         at org.apache.jasper.compiler.ParserController.doParse(ParserController.java:211)
         at org.apache.jasper.compiler.ParserController.parse(ParserController.java:100)
         at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:146)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:286)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:556)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:293)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:291)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    =========================================================

  • Weird problems with OSX Tiger

    I'm with a weird problem with my OS Tiger. I have a G4/400 AGP Graphics with a Fastmac 1.5GHz processor upgrade, 1 GB RAM, 128MB video card, USB 2.0 card and a Sonnet serial ATA card. I have two HDs: one of 80GB and another one with 250GB (serial ATA) connected to the serial ATA card.
    I have installed OS X Tiger in this serial ATA HD. Some weird things are happening since then. Sometimes when I shutdown my Mac, the delay is too long, all the icons disappear and the spinning wheel cursor remains in the screen for a long time until the Mac shuts down.
    Sometimes when I try to open some applications, the same thing happens, the delay is long. And it happens too when I try to quit some applications. The sintom doesn't follow a rule - sometimes happen and other times it don't happen. And when I hit optioncommandesc to force quit, the application appears in the list as 'not responding', and even when I force quit it doesn't quit at all.
    I already have checked the disk permissions, I have runned MacJanitor, but the problem is still there.
    Any idea?

    Hello! Long delays are often caused by corrupt disk directories. I'd first boot from the install Tiger disc and run the repair disk routine and then repair permissions AFTER rebooting from the hard drive. Other than that I'd get Diskwarrior to keep the directories in good shape. Tom

  • Weird problems with Leopard on iMac G5

    I've started having some weird problems—I think they may have started after running iDefrag, please no discussions about whether to defrag or not, but I'd done it before since upgrading to Leopard and nothing like this ever happened—sometimes while looking at a picture in Preview I'll click outside the frame onto the desktop, but it won't switch to the Finder, no matter how many times I click, also sometimes the computer will go to sleep *while I'm using it* (i.e. moving the mouse); I have set to put the display to sleep after five minutes of inactivity, and the computer never (I donate my CPU cycles).
    Also sometimes when I click on the Firefox icon in the Dock it appears as well in another section (so I have two FF icons at once)--I've been having some problems with FF and I think it's a bad profile but would this be related?
    All this started within the past week or so, but there wasn't a clear-cut before-and-after with the defragging (I did run OWC Media Scanner for the very first time, but it didn't find any errors, so presumably it didn't change anything), so I'm a little stumped. I ran Disk Utility and DiskWarrior, but the former didn't find anything and the latter only found a custom flag icon error.

    Check out the following links:
    http://support.apple.com/kb/TS1541 Mac OS X 10.5: Troubleshooting installation, startup, and login issues
    Mac OS X v10.5 Leopard Troubleshooting/Support
    Leopard Forums
    Keep calling Apple while you still its 90 days of free phone tech support.

Maybe you are looking for

  • SQLLDR - how to set a default value for an empty string

    I'm using SQLLDR to load data from a flat file on Oracle 10g 10.2.0.4 EE, Linux RHEL 4 update 6. Seems like my question is simple, but darned if I can't find the solution. My source file (comma delimited extracted form a different RDBMS) has some (no

  • Firefox 20 does not work for me AT ALL - totally unusable

    I downloaded Firefox 20.0 this morning, as I update my browser whenever they are available. To my consternation I discovered that it made my browser completely useless. When I restarted after install, all I got was a blank page. I normally get my Ses

  • In sm30, when save, how to fill the table with the system data in the table

    Hi all, in SM30, we have user name and time fields, when we create record, after we click the SAVE button, it will automatically fill the fields with the system data, how can we realize it?

  • File share with USB HD & AEBS?

    Is there a way for me to convince my Airport Extreme Base Station to let all the users on the Airport network read and write to a USB hard drive connected to the Base Station's USB port? If not, is the only comparable solution one of those LaCie ethe

  • Index size greated then Table Size

    Hi all, We are running BI7.0 in our environment. One of the tables' index size is much greated than the table itself. The Details are listed below: Table Name: RSBERRORLOG Total Table Size: 141,795,392  KB Total Index Size: 299,300,576 KB Index: F5: