BlackBerry Z10 menu drop-down ("Notifications", "Alarm") disappears!

My z10 works beautifully.

Except in the last days whenever I do the drop-down list active (the one accessible by sliding from senior management downwards) and try to click "Alarm" or "Notifications", the menu drop down menu scans back and disappears!

In other words, it seems that * just * these two buttons (alarm and Notifications) are disabled, so the effect is the same, as if I was to click on the black background of the drop in the menu drop-down or anywhere else but an active button. By pressing the buttons or notifications in all sorts of ways has the same effect: the banner just think you want to exit the menu and disappears.

Any ideas why this happens? Am I the only one?

I had to return the phone and get a new one.

Tags: BlackBerry Smartphones

Similar Questions

  • BlackBerry Smartphones menu drop-down

    Hello

    I just bought a 9520, I developed a website of supporters in HTML for my local football team. The problem is a drop in the menu system that does not work on my BB 9520, it would be a software problem on my BB. I have updated with the latest update via Desktop Manager. Any help would be greatly appreciated.

    If you need the address of the site PM me and I will send it to you.

    Thank you

    Philippe

    Hi and welcome to the Forums!

    Web sites can be coded to perform better with some browsers, rather than others. The BB browser may appear to websites like several different things... What is inside the browser application (BBKey > Options > browser Configuration > browser Identification). Change that to a different browser could help your BB interact better with some Web sites. In combination with all other configuration settings, you have to find the combination of all these parameters which works best for the sites you visit. Unfortunately, there is no "best advice" that each persons needs are different. But, in general, I find that change browser Identification often helps - most often by changing to FF or IE (if those who are at your disposal... the options vary depending on the carrier).

    Good luck!

  • Windows text disappears when I open a menu drop-down

    original title: TEXT disappears

    When I point to any word in the dialog boxes or need to choose all the options in a menu drop down, my text disappears and the text box is white.  Please help me fis this annoying problem.

    Hi YvetteKing,

    Thank you to contact the community Microsoft and we will be happy to help you with your concern.

    According to the description, I understand that, while you select a word or drop-down box the text box disappears and becomes white.

    He would be grateful if you can answer this question in order to help you further.

    Have you made changes on the computer before this problem?

    I would suggest trying the following steps and check if it helps.

    a. right click on computer.

    b. Select advanced in the left pane system settings.

    c. Select the running parameters.

    d. in respect of Visual effects, remove control "Use Drop Shadows for the desktop icon labels".

    Thanks for posting the question in the Microsoft Community. If you need others with this problem please do not hesitate to join us.

  • symbols of site little left of the names of sites in favorites have disappeared in the menu drop-down

    These are the small individual square symbols identify the Web site. They are present when checking under "Show all bookmarks" menu drop-down [which opens the info files], but do not show that they were previously in individual link lines in the menu drop-down.

    Hi nateich2,

    You should take a look at this article which discusses some of the problems with the latest version of Firefox.

    There is some information here that should help you solve your problem. Fortunately, this is a very easy solution.

    Hope this helps!

  • How can I get a program icon for the office high back on the menu drop-down?

    I accidentally pulled the icon 'Windows Explorer' on the menu drop-down 'Programs' (instead of create a shortcut).  Now I can not understand how to get it back.  If I display the menu drop-down then try to sneak back, as soon as I click the icon, the menu drop down disappears.

    This should do it:

    1. Click the Start button.
    2. Click Open .
    3. Click programs .
    4. Click on Accessories .
    5. Drag the icon into the folder.

    Boulder computer Maven
    Most Microsoft Valuable Professional

  • Save the choice by the user in the menu drop-down

    Hey guys

    How is everyone today? I hope you are all okay

    I am facing a problem, I made a menu drop-down with 2 options, each option changes something in the way of the application of notification showing, once the application is closed, it returns by default (no selected value... which makes sense, because I do not know how to record yet)... so is there anyway to save the user's selection in the menu?

    Here is the code

         DropDown {
                id: drop
                enabled: false
                Option {
                    text: "Every 15 minutes"
                    value: 1
                }
    
                Option {
                    text: "Every 30 minutes"
                    value: 2
                }
                onSelectedValueChanged: {
                    if(selectedValue == 1){
                        //because it's milliseconds
                        timer.interval = 900000
                        timer.start();
                    }
                    if(selectedValue == 2){
                        //because it's milliseconds
                        timer.interval = 1800000
                        timer.start();
                    }
                }
            }
    

    Thanks a lot guys

    Hi Alem... from your code snippet:

    if (theOptions[count].value == settings.getUserSelectDrop)
    {
        drop.selectedIndex = count;
    }
    

    The problem I see here is that getUserSelectDrop is a function, not a variable, and so he needs parenthesis after it else Qt will stop execution of JavaScript as soon as he's trying to run it.

    Try this:

    if ( theOptions[count].value == settings.getUserSelectDrop() )
    {
        drop.selectedIndex = count;
    }
    

    The other thing I would say is that getUserSelectDrop() reads the value of the settings file every time through the loop, who has a bit of a drop in performance. I recommend to save the value of a local variable only once before the loop, then use for comparisons instead:

    var userSelectDrop = settings.getUserSelectDrop();
    for(var count = 0; count < theOptions.length; count++)
    {
        if (theOptions[count].value == userSelectDrop)
        {
            drop.selectedIndex = count;
            break;
        }
    }
    

    Note also in this last code that I added a break statement, if the value matches to avoid the loop to test all the values more unneccesarily.

  • Cascades: How to set the background image for the menu drop down and etc...

    Hello

    Is there an easy way to set the background image for the menu drop down and etc, current support only black as a background?

    Thank you

    Tom.

    Welcome to the forums!

    This is currently not supported unfortunately.

    I encourage you to save a feature for this request:

    https://www.BlackBerry.com/JIRA/secure/dashboard.jspa

    See you soon!

    Martin

  • Capture AbstractActionItem SIGNAL to slip into the menu drop-down

    Hello

    So I need to do anything when I press the ActionItem in slide it towards the bottom of the context menu on BB10.

    I created the shot on the menu drop-down

        Menu *menu = Menu::create();
        Image infoIcon = Image(QUrl("asset:///images/info"));
        menu->addAction(ActionItem::create().title("Info").image(infoIcon));
        menu->setObjectName("infoItem");
    

    Looked at the docs. AbstractActionItem

    https://developer.BlackBerry.com/Cascades/reference/bb__cascades__abstractactionitem.html the action point emits a triggered() Signal.

    Then ran info a bunch of question that did not help.

    • Looked QTDocs
    • Looked at the signals & Slots section of BB stunts Docs

    in my App.hpp file I added

    public:
       void debugText();
    

    I tried to connect the menu by using the following code:

    connect(menu->objectName(), SIGNAL(triggered()), this, SLOT(debugText()));
    

    It does not work, and I spent 2 hours trying to figure why not.
    How do you connect in fact these things?

    Thank you!

    Hello

    trigger signal is attached to ActionItem itself and not Menu object.

    And don't forget the Q_SLOT macro.

    class xxx : virtual QObject {
      Q_OBJECT
    
    public:
      Q_SLOT void debugText(void);
    };
    
    Menu *menu = Menu::create();
    Image infoIcon = Image(QUrl("asset:///images/info"));
    
    ActionItem *mItem = ActionItem::create().title("Info").image(infoIcon)
    
    menu->addAction(mItem);
    menu->setObjectName("infoItem");
    
    connect(mItem, SIGNAL(triggered()), this, SLOT(debugText()));
    

    Nicklas

  • Added command "Combined" for Windows 7 Pro declining Acrobat menu drop-down

    How can I add the 'combine' order in my dropdown Windows Acrobat 9 Pro? He was there and is very useful for downloading and file management.  I would just select the files that I wanted out of any Windows to combine and convert to .pdf folder and select 'Combine' in the drop-down window. The window of "Combine" Acrobat open with my selected files in place ready to go forward with the combination. Do not know how the order disappeared in menu drop down but I want to go back!

    I guess my question would apply to the addition of any command to a drop-down list menu Windows.
    Thank you very much!

    Hello

    The question you have posted is related to Adobe acrobat and would be better suited to the Adobe community. Please visit the link below to find a community that will support what ask you:

    http://forums.Adobe.com/community/Acrobat

  • Y at - it an option to activate the menu drop-down overview of the policies?

    Until about a week ago, I could type in the menu and the box of selection taking place and I could select fonts. (as in the image below) Now, it only goes to the exact police that I type, and there is no drop down with it. It's really make things more difficult for me. I can get the menu drop-down appears, but only if I click on the arrow and use the mouse. The second, that I start typing it disappears.

    Does anyone know how to recover my preview? I'm worried that I hit a weird keyboard shortcut.

    Untitled.jpg

    There are two search modes. Maybe you changed it. Read about it in this article.

    New features of Illustrator CC Type | Design of Type and layout in Adobe Illustrator | Peachpit

  • Display / hide subforms with menu drop-down does not not for no discernible reason

    As far as I can tell, I seem to do everything right:

    Form1. Form.MainInformation.OR - StationeryType:exit - (JavaScript, client)

    If

    (this.rawValue == 'Visiting card') { }

    Form1. Form.BusinessCardInformation.presence

    = 'visible';

    }

    on the other

    If (this.rawValue == 'Header') { }

    Form1. Form.BusinessCardInformation.presence

    = 'invisible';

    }

    Is there something inherently wrong with this code? It does not work - I want the "calling card" subform to disappear when the "calling card" is not selected and reappear if it is.

    Hello

    Also, check the following:

    • Check form is saved in XML form dynamics in the Save as dialog box.
    • Make sure the menu drop down doesn't have a limit value / specified in the object > Binding tab.
    • I would drop the second "ElseIf" and just run with a 'other '. It seems only two choices, then the principal if the declaration will capture a condition and the other with the second exit.

    Hope that helps,

    Niall

  • What is a good DW extension for telescopic menu drop-down?

    I need to create a menu drop down vertically with a telescopic attribute as follows:
    http://www.MenuKit.com/Intelescopic.htm# (except that I'm hoping to show just the text on a white background)

    I tried MenuKit (download the demo) and ended up having to re-create all my existing drop down menus in my site - they disappeared and kept disappears whenever I left the dialog box until I removed the MenuKit extension. I don't know that he is a decent program, no doubt it was something I did in my newbie-ness...

    can anyone recommend an alternative, good extension that will perform this feature? Otherwise, is there is a 'simple' (see roll me my eyes?) Function that I can build and integrate into my Flash site? I know that this isn't the Flash forum, I'll post there as well...

    Thanks in advance

    Hi Yes

    the base of the menu tree of p7 style is what you want.

    http://www.Projectseven.com/products/menusystems/TMM/index.htm

    Check out the demos. It is simple to implement in case of problems, but they
    have a great support.

    Kenny

  • How can I order by alphabet created list on a menu drop-down?

    How can I order by alphabet created list on a menu drop-down?

    Click the cell that contains the data of cell format pop-up menu. On the cell on the right Panel tab, you will see these menu items. Drag to reorder alphabetically. There is no provision to automatically sort this list of menu items.

  • Cannot use my address bar. Press enter, nothing happens. Click on menu drop down and it will not go to the address

    Address bar does not work. Will not open search or site Web open, even when I click on addresses in the menu drop-down. I tried to start in safe mode and I tried Firefox refreshing. I even tried to reinstall Firefox. Any suggestions?

    I did a system restore, after seeing some other problems with my computer. Now, it seems to work correctly. I think that refreshing Firefox may not have worked until I did the restore, because he tried to open my previous session, even after rebooting. When I started after restoring the system, is no longer a bookmarked or saved passwords. So I'm not sure what I did than the fixed, but it seems to work now. Thanks for all the help

  • Menu drop-down list does not apear, instead of this, there is a miniature version of the Thunderbird window. How to fix?

    On a new installation of Thunderbird running on a new instalation of Windows 7 in the dropdown menu will not work. By clicking on the list of the menu drop-down appears, but instead to be filled with tryies to squeez options in a copy of the window full thunderbid - see the screenshot.

    Restart in SafeMode it works OK.

    Any ideas how to fix?

    No picture, but try this
    https://support.Mozilla.org/en-us/questions/1012145

    Not better?

Maybe you are looking for