Inactive pixels, but its not what you think.......

Just purchased a 5800 Xpress direct from nokia a week ago and have now discovered 3 clusters of inactive pixels comprising of 6, 8, and 10 groups. They are all on the number 1, when in text mode. Now most people, including myself would automatically think hardware fault, however, if I turn to landscape mode the faulty pixels remain on the number 1 position, even though the 1 is at the other side of the screen therefore, in my humble opinion this would point towards a software problem. Has anyone else encountered this strange situation?

dawndriver wrote:
There's a chance I could qualify for a wally of the year award. Having looked closely at these pixels perhaps they are meant to be there as symbols.   Perhaps someone could clarify this. When you are about to write a new text message using predictive text, are there 3 marks to the right of the number one?
Why don´t you take a screenshot? Then you can compare the image with what you are actually seeing on the screen and you can post it here so that we can find out if your qualified for the wally of the year award...  
http://www.allaboutsymbian.com/How_to_take_screenshots 
Message Edited by illinjah on 30-Nov-2009 06:52 PM
Message Edited by illinjah on 30-Nov-2009 06:53 PM
By clicking the "Kudos!" or the "Solution?" button on the right you can say "Thank You" and you´ll show the author and others that the post is useful.
The day we stop improving is the day we stop being good.

Similar Messages

  • Where can i download quicktime 7.5.5? A compatibility version gets downloaded but its not what I need. Im unable to open my ITUNES without the quicktime 7.5.5 upgrade or higher. Anything higher isnt supported by my mac ( OS X 10.5)

    where can i download quicktime 7.5.5? A compatibility version gets downloaded but its not what I need. Im unable to open my ITUNES without the quicktime 7.5.5 upgrade or higher. Anything higher isnt supported by my mac ( OS X 10.5)

    I had the same problem when re-installing my old iBook recently. You can find it here:
    http://support.apple.com/kb/DL27

  • Photo booth mirror-not what you think

    when i use the mirror effect on photo booth, it mirrors the left side of the view (you have two left hands) is there anyway to get it to mirror your right side?

    Hello again, mr.merino
    Another idea that may be of interest to you...
    If you are only trying to make one (or a few) of the reverse mirror images you post about, and if you are not interested in learning and writing Quartz compositions, you can take the "easy" approach and use a mirror.
    Here is how I did what you ask about in Photo Booth without programming. No "Edit > Flip Photo" menu item was applied in any of the following images.
    (1) As a reference, I show this normal Photo Booth image of a left hand pointing left.
    (2) This image uses the "Mirror" effect on the same hand pointing the same way.
    (3) To mirror the right side instead of the left side, I selected the Photo Booth "Mirror" effect to make another mirror image. However, this time, I placed a mirror in front of the iSight and positioned the hand behind the iSight. By adjusting the positions of the mirror and the subject (hand) while I watched in the Photo Booth viewing window, I was able to obtain this image.
    We await your response. Please confirm that the kind of left/right reversal between items (2) and (3) is what you are trying to accomplish.
    EZ Jim
    Mac Pro Quad Core (Early 2009) 2.93Ghz w/Mac OS X (10.6.4)  MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.4)
    LED Cinema Display  G4 PowerBook  1.67GHz (10.4.11)  iBookSE 366MHz (10.3.9)  External iSight

  • Footer Issue (not what you think)

    I've spent over an hour now watching video turotirals and reading common issues regarding footers in Adobe Muse.
    My issue is that after I create text, check the footer box as well as the sticky footer box in preferences, and place it below the footer line --  it still doesn't act as a footer. It will remain in the same place despite everything and stay at the bottom of the page. I don't want it be pinned either so it's not an issue there. I'm fairly literate when it comes to adobe software but I can't figure this out. Could it be a weird bug or something on adobe's end? Can anyone help here? Am I doing something totally wrong? Thanks

    On this first screen shot, you can see the text I have set as my footer. You can see that the footer box is checked and it's below the content area.
    This next screen shot is what happens when I drag content down. The text footer doesn't move.

  • Switch on Strings - It's not what you think (Don't Shoot Me!)

    I recently decided to undertake an FAQ on the switch statement - how it works, why it works the way it works, when to use it, when not to, how to work without it, and ... here's the kicker ... WHY the rules are so restrictive.
    So, I've been doing some research, and seen some very good reasons provided by developers on why only integers and variants of integers (auto-unboxable versions, or widenning conversions), plus enums, are allowed.
    I've search this forum, and I've seen the topic beaten to death MANY MANY times. I've search other forums, however, and I've been apalled to see so much support for actually changing the specification for switch.
    I've search google, and not found much useful.
    I've search the bug database, and found several bug submissions that are really feature requests. Each has been denied, but with no explanation, nor even the name or initials of the engineer who evaluated the bug.
    I've looked for ANY sort of FORMAL discussion or debate that included sun, java.net, or the JCP, but not found any.
    There are people who have said that with the introduction of linguistic support for Enums in Switches, Strings could have been done at the same time. While I'm glad that they were NOT, I thought I might be able to find something on-line that explained the reasons why not. I expected to find either a dialog or technical paper covering the topic. But I found nothing.
    Does anybody know of any formal discussion that occured on the topic?
    Also, if anybody cares to suppliment my list of reasons, that would be great. Or if anybody thinks there is a logical flaw with one of my reasons, and thinks I should omit or revise it, please also tell me. Thanks! Here's what i have so far:
    - C++ didn't
    - should use .equals or .equalsIgnoreCase?
    - underlying mechanism in byte code is an integer look up table (should language be based on byte code, or vice-versa? not very strong argument)
    - some have suggest hashCode -> but not set in stone (in fact, it changed in version 1.2), and not necessarily unique
    - virtual machine would need to be aware of .equals function (is it already?)
    - switch is not good OO, but is substitute, for use with primitives.
    - switch is meant for enumerable types (loose definition -- all integers could be listed, it would just take a while), and String is not an enumable type.
    - Adam

    Ada couldn't use Strings, but did allow ranges in the cases, as well as "or". (These examples are from the web, but I used to program in Ada.)
         case Today is
              when Mon        => Compute_Initial_Balance;
              when Fri        => Compute_Closing_Balance;
              when Tue .. Thu => Generate_Report(Today);
              when Sat .. Sun => null;
           end case;
          case Bin_Number(Count) is
              when 1      => Update_Bin(1);
              when 2      => Update_Bin(2);
              when 3 | 4  =>
                 Empty_Bin(1);
                 Empty_Bin(2);
              when others => raise Error;
           end case;
      case A is                      -- Execute something depending on A's value:
        when 1          => Fly;      -- if A=1, execute Fly.
        when 3 .. 10    => Put(A);   -- if A is 3 through 10, put it to the screen.
        when 11 | 14    => null;     -- if A is 11 or 14, do nothing.
        when 2 | 20..30 => Swim;     -- if A is 2 or 20 through 30, execute Swim.
        when others     => Complain; -- if A is anything else, execute Complain.
      end case;

  • July 17 Doc icon - No. It's not what you think...

    I know that you suppose to open iCal for the Doc icon to change to today's date. Everything used to work just fine even after I quitted iCal.
    Now, when I fire iCal the Doc icon changes, but when I quit it goes back to "July 17" instead of keeping todays date. Any ideas?
    TIA

    L i o r,
    Dancin' Brook provides links to explain this frequently observed/maligned iCal behavior in Tiger.
    ese,
    Welcome to Apple Discussions.
    iCal registration is not required.

  • Volume level not what you think

    So I don't have any volume problems when it comes to hearing someone when i'm talking to them on the phone. Or when it comes to listening to music via the speaks or through headphones. What does give me problems is when I'm playing a movie that was purchased from itunes.
    The sound from that movie is pitifully low. I can max out the volume slider and volume button but it's still low as ****. So I don't know if it's a movie issue or a phone issue

    The movie is easy to fix.
    In iTunes, highlight the movie, click Get Info(apple-I), click options, and use the volume adjustment slider. That will change the tag, and give you higher volume. Hope that helps you.

  • Shuffle by artist - not what you think!

    I've been trying to figure out how to change the shuffle setting in itunes so that it will shuffle by song but only play one song per artist until it goes through a full cycle of all artists. Sort of like the opposite of "shuffle by album" which plays an entire album before moving on to the next. Some bands I have a much bigger catalogue for, including many live tracks and b-sides, and because there are so many of them, I end up hearing songs by them far more than any other band.
    Does anyone know how to do this in itunes? If not, is there a plugin available? Does anyone have any suggestions for a script or an automator prompt that would do this?
    Please let me know, I beleive this functionality would be a great bonus for my listening experiance.

    Well the error message is straightforward enough:
    java.lang.IllegalStateException: Cannot forward after response has been committedOnce you have started sending the response page to the client, you can't change that response. So any forward/redirect of a response needs to be done early on in the logic. JSP pages have a buffer of 8k by default to generate output into. Once you have committed the output (either by filling up the buffer or flushing it) then you can't forward/redirect again.
    The other thing to note is that after you forward/redirect it doesn't stop executing the page, so you should put logic like that in an if statement.
    if (wantToChangeToAnotherPage){
      forward to alternative page
    else{
      keep displaying current page.
    }The else is important :-)
    Now looking at your stack trace, it is iinvoking a custom tag on the jsp page - the typeTag.
    This typeTag calls retrieveContent which attempts to forward the jsp page.
    Are these your custom tags? Are you expecting it to attempt to forward to a new result page?
    Where is this custom tag in the flow of things?

  • Red MB...not what you think.

    Ok, my girlfriend and I have this blanket, a red one. It sheds really bad and gets on our hands and when my gf used her macbook, it got on the trackpad button, and the rests. I'm trying to figure out how to carefully clean off the red hue from the button and rests. Does anyone have any suggestions aside from trying goo gone? I know, it should be a last resort. Thanks in advance.

    This may sound harsh for the macbook - but try to use a vacum cleaner first - use it very carefully to make sure that the red fibers are not imbeded into the keybord and trackpad side cracks - I would not place the vacum cleaner hose directly on the computer but hold it about inch or two away from the surface - I've dont that same with my previous laptop and worked well. Then just wipe it down with microfiber cloth and some LCD display liquid cleaner

  • Links and rollover question - not what you think

    A little glitch in iWeb: I have a web page that is all white with black text. When I create a link with one of the words it turns white, but by page is white and the the linked word appears to be gone, only reapears when the mouse pointer hovers over it. Is there a way to change the colors of a link.
    Magma

    I have an article on my site outlining modifications you can make to the CSS file that iWeb generates, so that you can have whatever colours you want (Articles > Hyperlinks and CSS in iWeb)
    The other option is to choose a different template, or have a different background of course!
    Michael
    iMac Intel Core Duo 2GHz www.rowan-cottage.co.uk
    As there is advertising on my site, I am required under Apple Discussions Terms of Use to state that I may receive some form of compensation, financial or otherwise, from my recommendation or link

  • The hamster wheel of IT (not what you think)

    https://www.youtube.com/watch?v=60MU6zPA52YThings must be pretty slow during the summer for IT pros at this college...The IT department at George Fox University in Oregontaped 36 iMac boxes together to create a human hamster wheel. For all of you IT pros who don't like supporting Macs... at leastthey're good for this :) This looks like a blast... I want to play!http://www.geekwire.com/2015/university-it-department-in-oregon-makes-giant-wheel-out-of-36-imac-box...
    This topic first appeared in the Spiceworks Community

    Well the error message is straightforward enough:
    java.lang.IllegalStateException: Cannot forward after response has been committedOnce you have started sending the response page to the client, you can't change that response. So any forward/redirect of a response needs to be done early on in the logic. JSP pages have a buffer of 8k by default to generate output into. Once you have committed the output (either by filling up the buffer or flushing it) then you can't forward/redirect again.
    The other thing to note is that after you forward/redirect it doesn't stop executing the page, so you should put logic like that in an if statement.
    if (wantToChangeToAnotherPage){
      forward to alternative page
    else{
      keep displaying current page.
    }The else is important :-)
    Now looking at your stack trace, it is iinvoking a custom tag on the jsp page - the typeTag.
    This typeTag calls retrieveContent which attempts to forward the jsp page.
    Are these your custom tags? Are you expecting it to attempt to forward to a new result page?
    Where is this custom tag in the flow of things?

  • OS 9 In Leopard (Not what you think)

    Is it possible to partition my hard drive and install OS 9 as I have done with Tiger? If I do so, will I be able to boot into OS 9 by pressing option at the startup chime? The reason being, is that I have some classic applications that don't seem to function under Classic Environment in Tiger.

    will I be able to boot into OS 9 by pressing option at the startup chime?
    No. That capability is determined by the computer model, not by any other OSes which may be installed, and no G5 or Intel Mac has it.
    (49525)

  • Shuffle 3G headphones (it's not what you think)

    Okay so i was sitting down listening to my brand new ipod that i had gotten for my birthday six days before... I stood up and the ipod hooked something and yanked the headphones out of my ears i thought it was nothing but when i started to listen to it again i found that one of the phones had blanked out or something and it sounded like it had sarran wrap over it sometimes barely playing at all ***!?!?!

    They are under warranty call apple

  • I forget my password to my ipod and i have try to rerstart it but its not working what should i do?

    i forget my password to my ipod and i have try to restart it but its not working. i have done i could think of please help!!

    If You Are Locked Out Or Have Forgotten Your Passcode or Just Need to Restore Your Device
      1. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
      2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
      3. iOS- Understanding passcodes
      4. What to Do If You've Forgotten Your iPhone's Passcode
      5. How to Recover Forgotten iPhone Restrictions Passcode | The iPhone and iPad Blog
         If you have forgotten your Restrictions code, then follow the instructions
         below but DO NOT restore any previous backup. If you do then you will
         simply be restoring the old Restrictions code you have forgotten. This
         same warning applies if you need to restore a clean system.
    A Complete Guide to Restore or Recover Your iDevice (if You Forget Your Passcode)
    If you need to restore your device or ff you cannot remember the passcode, then you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and re-sync the data from the device (or restore from a backup). If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present. Refer to Updating and restoring iPhone, iPad and iPod touch software.
    Try restoring the iOS device if backing up and erasing all content and settings doesn't resolve the issue. Using iTunes to restore iOS devices is part of standard isolation troubleshooting. Restoring your device will delete all data and content, including songs, videos, contacts, photos, and calendar information, and will restore all settings to their factory condition.
    Before restoring your iOS device, Apple recommends that you either sync with iTunes to transfer any purchases you have made, or back up new data (data acquired after your last sync). If you have movie rentals on the device, see iTunes Store movie rental usage rights in the United States before restoring.
    Follow these steps to restore your device:
         1. Verify that you are using the latest version of iTunes before attempting to update.
         2. Connect your device to your computer.
         3. Select your iPhone, iPad, or iPod touch when it appears in iTunes under Devices.
         4. Select the Summary tab.
         5. Select the Restore option.
         6. When prompted to back up your settings before restoring, select the
              Back Up option. If you have just backed up the device, it is not necessary
              to create another.
         7. Select the Restore option when iTunes prompts you (as long as you've backed up,
             you should not have to worry about restoring your iOS device).
         8. When the restore process has completed, the device restarts and displays the Apple
             logo while starting up:
               After a restore, the iOS device displays the "Connect to iTunes" screen. For updating
              to iOS 5 or later, follow the steps in the iOS Setup Assistant. For earlier versions of
              iOS, keep your device connected until the "Connect to iTunes" screen goes away or
              you see "iPhone is activated."
         9. The final step is to restore your device from a previous backup. If you do not have a
              backup to restore, then restore as New.
    If you are restoring to fix a forgotten Restrictions Code or as a New device, then skip Step 9 and restore as New.

  • My form builder create the fmx but its not populating. what is the reason?

    Hi,
    if i execute the form builder it wil create the fmx file but its not populating. if i want to use i have to run the fmx file..
    can any body help the reason why it's not populating?
    and one more proble is my form call the report but it's running. yester day it was work well. but today its not working. i didn't change any thing in that today.

    Your question is quite unclear. Also, I think you should review this:
    http://blogs.oracle.com/shay/entry/10_commandments_for_the_otn_fo
    In the future, please be sure to include the complete product version and platform you are using. By version, I mean the numbers and not the name. For example, 10g is not a product version - it is a name.
    You said,
    ...if i execute the form builder it wil create the fmx file but its not populating. if i want to use i have to run the fmx file... What do you mean it doesn't populate+ ? Then you say, "... I have to run the fmx...". The fmx is the file you need to run. You cannot run the fmb as this is the source code file.

Maybe you are looking for

  • Error while configuring credential for Adobe service

    Hi, While configuring Credential i am getting an error as popup. But when I click on OK, I am able to see the .pfx file in the top. <b>Error Details:</b> An error occurred while updating the credential expiry for alias 'ReaderRights': com.adobe.servi

  • Experiencing complete freezes with my iMac even after clean install

    Hi, I've got a problem that I thought was something that only Windows was supposed to have and Apple actually used to advertise that Macs didn't have it. Complete freezes of the whole system. My iMac 21.5" (mid 2011), now with OS X 10.8.2, sometimes

  • Code generation using Visual cafe

    I'm using visual cafe for GUI development. It includes it's own libraries though the equivalent ones are available in JDK. For example: to place a component in GRid Bag layout it generates code with symantec's constructor new com.symantec.itools.awt.

  • Keyboard will not pair to iPad

    My aluminum keyboard will no longer pair with my iPad 3. The light on the keyboard flashes as it is supposed to but the iPad cannot find it. The keyboard has only been paired with my iPad and has new batteries. I tried to remove the saved pairing and

  • How to get support from Apple

    Problems with Leopard are rare, and I've had my iMAC 2+ years with many happy troublefree hours. I upgraded to Leopard a while ago, and with the latest update am having problems. What support am I entitled to, and how do I access it (UK)?