Weird message below status bar - icons move down and almost touch dock

Ever since installing 3.0 on my 3g iphone I've had a weird problem. Roughly around an hour or so after the phone is on, the icons on the page move down (about an 1/8 of an inch) and the words "Revisar ADN" appear below the status bar. A little bit later the message will go away but the icons will remain shifted down. The only way to fix it is to turn the phone off and back on again, but again, roughly an hour later it happens again.
I have restored several times but to no avail.
Some more info about the situation: I purchased and activated the phone in Guatemala (where I live) and my carrier is Claro. The words "revisar ADN" mean "check DNA" in english. The phone is not jailbroken or anything like that. Even though the carrier is Claro, the international settings are in English with the exception of the spanish language added to the keyboard. I've had the phone for about 6 months and on 2.2.1 never got this message.
Any help would be appreciated.

Thanks so much for the information and the investigation on this (I saw you posting in other forums as well). Through some trial and error I think things are working finally. Here is the story for anyone else that might suffer from the same problem.
I originally tried the SIM trick and took the SIM out, put it into another phone, added a contact, and then put the SIM back in. This unfortunately did not work. A few hours later the icons had moved again. I then noticed that the contact that I had added to the SIM was not in my iphone address book, so I imported the contacts from the SIM (Settings>Mail, Contact, Calendars>Import Sim Contact), hoping that this would fix the problem. That didn't work either. I turned the phone off and on again, and that didn't work either.
Then I began to look into the "Claro Contactos" issue, and went looking for the SIM Applications (Settings>Phone). Now, I am almost positive that when I looked here earlier that day the SIM Applications button was not there. Maybe it was, but I'm thinking that by putting the chip into another phone and then putting it back into the iphone, this "unlocked" this feature. Or maybe it was the simple act of taking it out and putting it back in. Either way it was there now. I had never heard (or turned on) Claro Contactos so I went hunting for where to turn it off. After finding it "Utilidades Claro" it popped up a message asking if I wanted to turn it on. Obviously I had not used the feature before so I couldn't turn it off like the previous post had suggested. So I did the opposite and turned it on. I then touched the button "Respaldo Contactos" to back up that one contact to this service and then touched the button "Respaldo Automatico" and told it NOT to back up automatically. After doing all of this, I turned the phone off and on again, and now everything has been fine. It's been a full day and my icons are right where they should be.
I mention the process because I'm not totally convinced that just by turning the Claro Contactos on was the issue. I think the whole process is the solution. Maybe someone else that has the same issue can try the process, but backwards and see if just switching the Claro Contactos on (or off) solves the problem.
Thanks for the help and I hope this helps whoever else might have the same problem.

Similar Messages

  • IPod touch status bar icon

    On my iPod touch status bar icon with lock and circle arrow around it. Can not send image since iPod can no longer connect to wifi

    The circled padlock by the battery indicator is the screen-rotation lock. To change double click the Home button and swipe the bottom row fully right past the music controls. Then tap the circled padlock icon.
    Does the iPod connect to other networks?
    Does the iPod see the network?
    Any error messages?
    Do other devices now connect?
    Did the iPod connect before?
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    iOS: How to back up your data and set up as a new device
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • ALV Report - Field Overflow message in status Bar

    Hi
    I am trying to display ALV report , ALV report is displaying fine but on execution of report , an message in status bar is coming as "Field copy Number can not be totalled because of field overflow."
    Can anyone tell why such messgae is comming?
    Thanks,
    Debadatta

    Just a wild guess, treat the below as an example.
    Eg:
    assuming one field in the output is of length 2 type i.
    values: 20, 30, 60, 45.
    Totalling the values result as 155. but due to the length of the field as 2. We can encounter the overflow message.
      Considering the above example, manually total the values of your numerical columns and see if any of the column is execeeding the specified length.
    Regards
    Eswar
    Note: Reward if you find the info useful.

  • Display a message in status bar when error in a block based procedure

    Hi
    I have a block based on procedures.
    If I have an exception when I try to insert a record for example, how can I display a user friendly message in the status bar ?
    here is my insert procedure :
    PROCEDURE emp_insert2(t IN emptab) IS
      BEGIN
        FOR i IN t.first..t.last LOOP
        INSERT INTO emp (empno, ename, job, hiredate, sal)
        VALUES(t(i).empno, t(i).ename, t(i).job, t(i).hiredate, t(i).sal);
        END LOOP ;
      EXCEPTION
        When DUP_VAL_ON_INDEX then
            Raise_Application_Error( -20002, '^This identifier already exists^' ) ;
      END emp_insert2;When I use the ON-FORM trigger and ERROR_CODE and ERROR_TEXT variables, I get an FRM-XXXX message saying :
    40735--INSERT-PROCEDURE trigger raised unhandled exception ORA-00001.
    I want a message like :
    ORA-20002 This identifier already exists

    Hello,
    ORA-20500: ^This identifier already exists^ ORA-06512: à "SCOTT2.EMP_PKG", ligne 48
    I cannot figure out what is the problem described by the second part of the message.
    why numeric or value error in this case ? ( ligne 48 corresponds to the raise_applicaion_error instruction )There is no problem with the second part it is just for showing the line number it not the numeric or value error the code for numeric or value error is ORA-06502. See the below link for more information
    http://www.techonthenet.com/oracle/errors/ora06512.php
    So, now you can display your customized message in status bar using the error code which you defined in RAISE_APPLICATION_ERROR like below...
    DECLARE
         errcode VARCHAR2(50) := DBMS_ERROR_CODE;
         errtxt VARCHAR2(1000) := DBMS_ERROR_TEXT;
    BEGIN
         IF vErrCode='-20500' THEN
            MESSAGE('Here display your customized message.');
         ELSE
            -- Handle the rest errors...
         END IF;
    END; -Ammad

  • How create a tooltips in status bar icons

    the answer is in the title
    I want to create a tooltips on my application icon tray, in the status bar icon.
    I think that the solution is in the SDK, but i dont know to implement this code:
    source MSDN:
    #define ARRAYSIZE(a) (sizeof(a)/sizeof(a[0]))
    NOTIFYICONDATA IconData = {0};
    IconData.cbSize = sizeof(IconData);
    IconData.hWnd = hwndNI;
    IconData.uFlags = NIF_INFO;
    HRESULT hr = StringCchCopy(IconData.szInfo, ARRAYSIZE(IconData.szInfo), TEXT("Your message text goes here."));
    if(FAILED(hr))
    // TODO: Write an error handler in case the call to StringCchCopy fails.
    IconData.uTimeout = 15000; // in milliseconds
    Shell_NotifyIcon(NIM_MODIFY, &IconData);

    If you're interested in the icons in the notification area, I think the easiest solution is to use the "System Tray Icons" functions in toolbox.fp.
    You can create a new icon calling InstallSysTrayIcon(), and you can also set the tooltip text.
    Vix
    In claris non fit interpretatio
    Using LV 2013 SP1 on Win 7 64bit
    Using LV 8.2.1 on WinXP SP3
    Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
    Using CVI 6.0 on Win2k, WinXP and WinXP Embedded

  • Status bar icon meaning

    hello,
    can anybody help identity what this icon/symbol mean? how do i remove it?
    here's a close-up view (below)
    hoping for some help.

    well said, uselessSABOTAGE
    thank you for the perspective. btw, your suggestion -
    "Check if you have utilities or tweaks that may have a similar icon and see if that icon disappears if you toggle that tweak on/off."
    worked.
    i search for a utility that showed the same icon. it turned out to be for a tweak called iPrivacy. turned off its icon display tab and the status bar icon disappeared. equally important, this can be a guide for future occurences of this type, too.
    my appreciation and respect.

  • My phone will not load past the apple icon when trying to turn on. all it has on the screan is apple icon and a blank status bar. whats wrong? and what can i do?

    my phone will not load past the apple icon when trying to turn on. all it has on the screan is apple icon and a blank status bar. whats wrong? and what can i do?

    Hi, Just put phone in the recovery mode and restore to the factory settings. It should work.

  • No Sound from Mac Pro, however, volume icon moves up and down

    Hello, I was using my 12 month old Mac Pro last night and it worked fine with sound as normal. When I powered it up today there is no sound coming from my monitor, but the volume icon moves up and down when I press the keys? I've checked in the Preference sound file and everything is set ok? I googled this problem and some people have suggested that there should not be a 'red' light showing in the digital connection on the back? However, I can see a red light, I've tried using my headphones in the front mini-jack and nothing? I disconnected the monitor audio cables restarted the Mac, there was then sound as normal if I used the sound keys. I re-connected the audio cable and it continued to play sound for 5 minutes or so, then stopped working again?

    I have a problem with my Powerbook automatically muting. If you read the posts, there seem to be a lot of people having this problem and no one can explain or help.

  • FM to display warning message at status bar

    Hi,
    can any body give me the FM to display the warning message
    at status bar.
    Thanks in advance

    Hi,
    To give a warning message , you dont need any function module. You can use the keyword 'MESSAGE' and give the type as 'W'.
    Do a F1 on the keyword MESSAGE for further details.
    regards,
    Advait

  • Error Message in Status bar

    Hi ,
    i am getting an error message in pop-up box ,can we show this same error message in status bar..?
    Thanks.

    Hi shiva ,
    data : dtype type c value 'S'.
    MESSAGE E053(z4) DISPLAY LIKE dtype.
    my code is like that,but still it shows in popup window.
    can you check it once...?
    Thanks

  • How to pass message in Status Bar

    How can I pass message in status bar.
    I typed bellow line but get some error.
    void itemFileOpen_actionPerformed (ActionEvent e) {
    statusBar.setText(" need Help ");
    Error: (456) method setText(java.lang.String) not found in class oracle.dacf.control.swing.StatusBarControl.
    Warning: Deprecated APIs are used. Please recompile with the 'deprecation' option for details.
    null

    Sergio,
    Even though your form is based on the Apps Template form, double-check to ensure it has all of the triggers it should have, like the Form level Key-Commit. The easiest way to make this comparison would be to open your custom form and then open one of the EBS forms like "ARXCUDCI". If your comparison shows no significant differences you might be dealing with a situation when the message is displaying in the Console (status bar) but something else is clearing the console. Check for any Clear_Message calls.
    Hope this helps.
    Craig...
    If my response or the response of another was helpful, please mark it accordingly

  • What handler is called when a Status-Bar-Icon is clicked in Cocoa-Applescript?

    In Cocoa-Applescript Xcode, what handler is called when the Status-Bar-Icon for my app is clicked? Are there any variables or connections that I have to make?

    Thanks Red_menace! I don't know what the Apple community would do without you.
    For others viewing this question, the following is the proper format, for Cocoa-Applescript:
    property NSStatusBar : class "NSStatusBar"
    property StatusItem : ""
    on applicationWillFinishLaunching_()
    set StatusItem to NSStatusBar's systemStatusBar's statusItemWithLength_(current application's NSSquareStatusItemLength)
    StatusItem's setAction_("myAction:")
    end applicationWillFinishLaunching_
    on myAction_()
    say "Hello!"
    end myAction_
    Where "myAction:" is the action that you want to call when the Status-Bar-Item is clicked. It should also be noted that this handler will not be called if a menu or view is already linked to it's click action.

  • Supress message in status bar when using Call Transaction

    Hi,
    I have designed a RF program and I am using a BDC program to call LT11 transaction for confirming TO.
    As this was a Flowrack storage type we will assign Source HU during TO confirmation. So I went for a BDC.
    But after confirmation I am getting a Status message TO XXX confirmed in the status bar which is also displayed in the RF Screen for every line item confirmed. I want to supress this message.
    I am getting this message in the messtab table as well by using Call Transaction. So how can I supress this message in Status bar.
    Please let me know for more information.
    Thanks,
    Manoj.

    >
    kaka79 wrote:
    > I have designed a RF program and I am using a BDC program to call LT11 transaction for confirming TO.
    > But after confirmation I am getting a Status message TO XXX confirmed in the status bar which is also displayed in the RF Screen for every line item confirmed. I want to supress this message.
    > I am getting this message in the messtab table as well by using Call Transaction. So how can I supress this message in Status bar.
    The CTU (CALL TRANSACTION ... USING ...) captures and stores all the messages into the message internal table (... MESSAGES INTO itab ...), but they are not displayed. So, if one of them appears in the status bar, it's because there is an additional MESSAGE ... statement in the program using the CTU. So look at it and add a condition before the MESSAGE statement to not output this exact message (click the message on status bar to get the message number, or debug the program to get it from the message internal table).

  • Firefox Sync (Weave) 1.4b2 removes status bar icon

    After updating Sync to 1.4b2 the status bar icon is removed. This is annoying as i use a third party password manager.
    Why has it been removed or where to ask for Sync support?
    Please help, Sync is a life-saver!
    == This happened ==
    Every time Firefox opened
    == I updated to 1.4b2

    v1.3 was perfect, v1.4 is a disaster... please bring back the icon... Since I upgraded to v1.4, I do not know if things have been sync'ed and it should be done automatically, not manually like in v1.4. I have gone back to v1.3... and I have to do this to all my computers... please ask the users before making any changes, if you really care about the users who use this.
    bad! bad! bad! bad! bad! bad! bad!

  • SAP GUI 7.20 and Animated Messages in Status Bar

    Hello Experts,
    Is there a way to disable "animated" display of messages in status bar when Signature Design is active? Currently messages are scrolled from left to right and then fade in. (Please note that this is a different from "Animated Focus" or "Animation" feature and only unique to Signature Design Theme). It would be nice to disable the animation so messages are immediately displayed without disabling Signature Design. I have asked this question in the past and there was basically no way to accomplish this. Is there any hope that this would be included in future patches for SAP GUI 7.20?
    Thank you!
    Abdul

    Daniel,
    Have you had any luck with this issue?  We recently installed SAP GUI 7.20 patch 2 and are having similar issues.  While working in t-code SWDD, "Workflow Builder", I am automatically logged out of SAP and the LOGON pad also closes out and I forced to sign back in.  This is happening when I drag and drop an event into a step and enter in information that should normally prompt a warning/error message after hitting the "Enter" key.
    Thanks in advance.
    Edited by: Michael Kostek on Oct 7, 2010 9:11 AM

Maybe you are looking for

  • Language change in Dreamweaver cs6 from Dutch to English.

    I have accidentally selected Dutch to be my Language during set up. How do I change the language from this point? Its all in Dutch and is very confusing. I'm not on it through Creative cloud. Please Help!

  • QT won't save movies, exported jpegs won't open.

    I am running the latest version of QT pro on my PC, windows XP. When editing a movie clip, I can edit to my heart's content, but when I go to save it, QT won't save it. It acts like it saves, but it doesn't. Also, when I export a movie to picture, th

  • ALV printing setting Layout

    Hello I do have an issue printing at ALV -  I want the Layout X_44_120 - g_grid  TYPE REF TO cl_gui_alv_gri   ps_print-print_ctrl-pri_params-LINCT    = 44.   ps_print-print_ctrl-pri_params-linsz    = '120'.   ps_print-print_ctrl-pri_params-paart    =

  • Lync for Mac - How to customize profile image

    We are beginning to roll out Lync for Mac (and windows) and on the Mac side there doesn't seem to be a clear cut (easy) way to customize your icon like you can do in AIM, Yahoo Messenger, etc.  Knowing that I will get a bunch of calls regarding this,

  • More feed posting problems

    I am also getting either error 5002 or just "The iTunes store could not process your request, please try later" The feed has been validated OK It is: brandspanking.co.uk/podcasts/parker/parkerpodcast.xml I have tried on 3 PCs and 2 macs in 2 complete