Problems scrolling with TitleBarScrollBehavior default, NonSticky - Q10, Dev Apha C

I'm having a problem with the default behavior of the title bar when run my apps on Dev Alpha C Simulator and the device, with the latest operating system.

If the title bar is set by default or NonSticky, he will hide quite well.  However it will then parade not beyond the limit of the screen height + hidden title bar height.  A simple example, I have a screen with ScrollView containing a number of LabelFields, of which 3 are hidden.  If I scroll up, the title bar will disappear, which is good and I can see the label located slot, but when I let go, the screen hangs on back order as the top of the screen eo the immeidately field under the title bar, which of course hides the last LabelField.

While I can go through my QML and together

TitleBarScrollBehavior.Sticky

This means that I wil have create a version 10.1 specifically for the Q10.

I searched and found no referecnes in this as a problem, but I don't know that other people have noticed it.

It is fixed with 10.1.0.1485.

http://supportforums.BlackBerry.com/T5/Cascades-development/BlackBerry-10-1-available-for-dev-alpha-...

Tags: BlackBerry Developers

Similar Questions

  • When I select a local adjustment, how can I scroll the new adjustment panel with the default panels

    In lightroom in the develop module. When I select a local adjustment for example the Brush tool or the gradient tool, the adjustment of the particular tool panel appears in the sidebar where I can make adjustments to these tools (see figure below).


    Now my question is with this adjustment Panel, it seems to be coming overlap on top the other default settings (for example the "base Panel" - exposure, contrast etc) and when I scroll down on other settings, the Brush tool or the gradient tool adjustment panel is always on top and does not scroll with the default settings.


    I would like to change the setting of this kind that the adjustment panel is part of the other default settings in the module development and scrolls with them.

    I know this is possible because I saw online videos where this is the case, and my lightroom on another machine for this.
    If anyone know how I change the setting for this?


    Capture.JPG

    It seems to depend on the actual size of the Lightroom window. Just messing around with the CRD and LR5 onto my retina MBP 15 "with a monitor 1920 x 1200 and the two Lightroom versions scrolls happily adjustments table so that others, but only if the size (i.e. the height) of the Lightroom window is below a certain level. Done on the screen retina, when the display is set to 'Better for the retina', the Panel scrolls with others. But if I change the screen resolution of 2880 native and expand the LR window to fit, then the settings panel does not scroll.

    Similarly, if I move LR for the monitor external, same thing, i.e. Panel does NOT scroll when the window to maximize LR, but it does not scroll when I lower the height of the LR window (seems to be around the mark 1600 pixels)

    It's the same with LR5 and even on the Windows platform. I think he has somehow based on the height of the Panel adjustments with regard to the total height of the LR window, i.e. the settings panel does not scroll when there is enough space in the right panel to allow the eyes of one or many of the other tools below.

  • I worked on a large document for several years and all of a sudden I can't scroll to the bottom of the screen with my two fingers on the touchpad, well that I have no problem scrolling to the bottom of this page to search for similar issues.

    I worked on a large document for several years and all of a sudden I can't scroll to the bottom of the screen with my two fingers on the touchpad, well that I have no problem scrolling to the bottom of this page to search for similar issues. I can navigate only to go up and down with the arrow keys.

    What version of Pages is running on your MBP?

    What version of Mac OS X is running on your MBP?

    The MBP is not iOS running.

  • scrolling with keyboard problem

    When scrolling with down, he reached the end of the page

    You may have switched to the keyboard navigation.

    You can press F7 (Mac: fn + F7) to toggle the power switch keyboard navigation.

    • Tools > Options > advanced > general > accessibility: [] "always use the cursor keys to navigate through the pages."
  • Problem with setting "Horizontal scrolling with tilt wheel"

    All of a sudden, everytime I open a spreadsheet it acts as if I am pressing the arrow button to the right and the active cell moves to the right as quickly as possible.

    At the same time:
    1. my wireless Microsoft mouse leave with the scroll wheel.
    2. when I click a down arrow, the menu is displayed for a split second, then disappears.
    Any ideas what may have caused this?
    * original title - Excel-unstoppable to the right at the opening of automatic pagination

    1 only with Excel

    2 Microsoft 6000v2.0
    3. since Monday morning, when I opened a spreadsheet
    4. the system changes. I didn't touch anything.
    5. the keyboard is clear. It only happens in Excel.
    I managed to do stop by disabling "horizontal scrolling with tilt wheel" in the mouse properties. Absolutely, I know for a fact that nobody changed this setting, but it became somehow activated.
  • Problem scrolling in PopupScreen

    Hello

    I added a PopupScreen to my application that will display a given text. When the text is displayed, scroll arrow appears indicating that there is more text to be displayed, however it doesn't let me scroll when I click on the down (tests on a BlackBerry with a trackball).

    The text is displayed in a LabelField (which I believe is not Focusable by default), but even when I say new LabelField ("text", Field.FOCUSABLE), it still doesn't let me scroll down. I tried to add other areas (for example, EditFields) and it seems to work. So I think the problem is with the update?

    Can someone tell me why this is? Here is my code:

    package com.kflicks.ui.Screens;
    
    import java.util.Vector;
    
    import net.rim.device.api.system.*;
    import net.rim.device.api.ui.container.*;
    import net.rim.device.api.ui.*;
    import net.rim.device.api.ui.component.*;
    
    public class SynopsisScreen extends PopupScreen implements KeyListener {
    
        Vector results;
    
        LabelField label;
    
        public SynopsisScreen(String synopsis) {
            super(new VerticalFieldManager(VERTICAL_SCROLL | VERTICAL_SCROLLBAR),
                    Field.FOCUSABLE);
    
            label = new LabelField(synopsis);
            add(label);
        }
    
        public void close() {
            UiApplication.getUiApplication().popScreen(this);
        }
    
        // ///////////////////////////////////
        // / implementation of Keylistener
        // ///////////////////////////////////
        public boolean keyChar(char key, int status, int time) {
            // intercept the ESC key - exit the app on its receipt
            boolean retval = false;
            switch (key) {
            case Characters.ENTER:
                break;
            case Characters.ESCAPE:
                close();
                break;
            default:
                retval = super.keyChar(key, status, time);
            }
            return retval;
        }
    
        /** Implementation of KeyListener.keyDown */
        public boolean keyDown(int keycode, int time) {
            return false;
        }
    
        /** Implementation of KeyListener.keyRepeat */
        public boolean keyRepeat(int keycode, int time) {
            return false;
        }
    
        /** Implementation of KeyListener.keyStatus */
        public boolean keyStatus(int keycode, int time) {
            return false;
        }
    
        /** Implementation of KeyListener.keyUp */
        public boolean keyUp(int keycode, int time) {
            return false;
        }
    }
    

    Try to exchange your LabelField to a RichTextField and see if that solves your problem.

  • Common Web site does not scroll with Firefox the fact with Explorer

    Finally, I installed firefox for the first time yesterday. I was impressed by the speed. I have windows XP, which was new at the time on my laptop Compaq Presario V5000. I was unable to download Explorer 8 and the other 2 options on the Ford Motor Co. Web site were Firefox and Chrome. I chose Firefox. When I go on the web site of Ford - photos do not one side to side - scroll and they load partially below the first set of photos on Firefox (the top of page 1/3 of the bottom row to see the pictures) when I load the Explorer on these pictures together and correct scroll and the partial line does not show and which would be correct. On the positive side, in addition to the speed, the list of options and standard equipment truck scrolls up and down properly. On explore, it is difficult to maintain in position when scrolling. In addition, my concern is the antivirus protection and antispyware - I use the free microsoft protection - but I think if you use firefox I don't have. In addition the site Ford when I try to play videos - it says I need flash player - and then it trys to install and used.

    Your list of details of the system shows that you have Shockwave Flash 11.9 installed r900.

    You can check the version of the plugin Flash here:

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/Firefox/tools > Modules > appearance).

    • Do NOT click on the reset button on the startup window Mode without failure.
  • Scrolling with the mouse on the pages to create black and white, lines

    When scrolling with the mouse, periodically the entire screen turns into black and white lines. Page sometimes together, sometimes just from ads pictures/side. If you continue to scroll disappear but you need to scroll to where the lines have begun, it's hard to explain, I took 1 picture of the problem but will have more photos that I can, I love how Firefox works on my computer, it has always been the best browser for my needs. I recently bought a new desktop computer, but he did so also, so I deleted and tried to launch the Explorer and Google and I don't like, so I hope that we can settle this problem.

    I don't know if it solved the problem, but he didn't precisely these days. Thank you

  • TouchPad does not scroll with Win 7 on Satellite A200 PSAE3E

    Hello

    I have a little problem with the touchpad after update my OS for Win7 (x 86 32-bit).
    Scrolling with the latest drivers for Win7 from Toshiba and Synaptics does not work well.

    14.0.3.0 driver version (2009-08-27) Toshiba A200 PSAE3E

    Does anyone have a solution?

    Best regards

    Hello

    > scroll with the latest drivers for Win7 from Toshiba and Synaptics does not work well.
    Is this means that the scroll function is available after the installation of Win 7?

    UM, to me, looks like you need configure the touchpad function.
    You can do this in Control Panel-> mouse-> device settings
    There should be an additional tab containing the options of touchpad

    Here, you could change and increase the contact surface is needed for scrolling and similar you could increase the sensitivity too

    Welcome them

  • Cannot scroll with the scroll on my mouse button in some Applications

    How do I can't scroll with the scroll on my mouse button in some applications? Happen for example when I tried to scroll my Lotus Notes e-mail messages. I was not able to scroll using the button on my mouse! Very annoying!

    Hi X04p2n! I had the same problem! I was not able to scroll with the scroll thing (dunno what it's called) in note either. Just, I went on the site and downloaded the correct drivers for my mouse and it works since.

  • Difficult to scroll with the background color of table cell

    When I changed the background color of cell, the table has become difficult to achieve.

    And I can't finish change the cell background color, it takes forever.

    Anyone encountered this problem before?

    LabVIEW 2011 on WinXP.

    Hello Zou,.

    The problem is not with "background color of the cell.

    But the problem is with the "size of the Table!

    When the size of your table is huge, the windows + chart LabVIEW take longer to scroll.

    Attached VI may help you to experience the same. Change the size of the table and the roll of experience.

    Solution: -.

    1 initialize the Table for that size, if the size of your table is small.

    2. use a table (UI) + Scroll Bar (Manual from Numeric range) + internal buffer (block diagram), for the size of the huge table

    Kind regards

    Yogesh Redemptor

  • problem scanning with keithley 2420

    Hello

    I'm having some trouble to configure the Keithley 2420 to sweep a range of Volt and measure the amps in a cell.

    The vi attached check the polarity of the voltage, then measure the short circuit current and then performs a scan.

    The program runs, but scanning seems to measure resistance and outdated.

    Any help would be greatly appreciated!

    Incase anyone reads this, the problem was with the drivers Keithley 2400 do not turn off simultaneous measurement mode when you set up the type of measure. Even if I set the type of measure amps, he was still measuring ohms.

    I still don't know why it uses default ohms.

    Anyway, I solved this problem by using the ENS:FUNC:CONC OFF command with the Instrument i/o assistant after having used the driver concerned of Keithley VI to set all other settings.

  • Windows Update error "windows update location must be replaced with the default windows location."

    Original title: Failed to automatically / thru fixit updated windows installation (another) indicates both failed 1 of 5. It says windows update location must be replaced with the default windows location

    XP86 running. Recently had installed the additional memory. Microsoft Update icon never goes away - seems like if 1 of 5 updates usually install on a group. Keep trying to install updates (even those) again and again. Sometimes we will not install and then moved the next time, he's trying to install the same updates, another a group. Worked through say fixit and details window update location must be changed to windows default = - but did not say how.

     

    Hello

    Have you tried Microsoft Fix - it?

    See the following article:

     

    Important: this section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    http://support.Microsoft.com/kb/322756/

     

    You cannot install some programs or updates

  • Can I still use Windows journal, if I have the handwriting recognition and just type my text with the default keyboard input?

    I have a Gateway laptop computer and I tried to use Windows journal without handwriting recognition.  So, he feels a bit lame that I can't understand how to enter text with my default keyboard or whatever it takes.  I think I'm pretty computer, so maybe I am an annomaly of persanal that seems to happen to me a lot!  Thus, any help I can get with this problem would be cool.  I type to fast however, just hunt and Peck, so please be patient.  Thanks in advance!

    Best regards, bryznet

    Hi bryznet

     

    Windows Journal is part of the Group of Tablet PC accessories. It is not a keyboard application.
    It is an application ink for taking notes of ink and writing to text conversion.
    If you want to simply type in the text, you can use a word such as Notepad or Microsoft Office Word application.

    If you want a combination of features of ink and/or the text of note taking, then watch Microsoft OneNote (think of it as Notepad Word, OneNote is)
    http://Office.Microsoft.com/en-us/OneNote/

    I hope this helps.

  • User profile service, you have been logged with the default for the system profile, please see the the event log for more information or contact your administrator.

    User profile service... Help... I'm stuck and going nowhere.

    Hello

    Whenever my user try to connect this MSG poping up to the top of any solution please.

    User profile service

    you have been logged on with the default for the system profile, please see the the event log for more information or contact your administrator.

    Click on this URL and follow the instructions 100% your problem has been resolved http: //support.microsoft.com/kb/947215

    Try it.

Maybe you are looking for

  • Finder of freezing and acting weird

    Hi I had a couple issues Finder weird recently any help would be much appreciated! The finder drawing seems to freeze - can I open a folder or a new window of finder and sometimes it will be fine, but then it will be half freeze - the content of the

  • Do not play recorded midi notes

    I just bought a JD-Xi synthesizer and hooked it up to logic pro x. I recorded a drum loop and he plays very well the JD-Xi is plugged. When it is unplugged and I get to play there is no sound. Maybe I have not hooked right but I follow all the instru

  • Satellite L600: How can I turn off the Wireless Communication switch?

    Hello! Would be very grateful for any help... After struggling for 3 months that I finally registered here in the hope of getting help. I have a new Satellite L600 / Win7 Home Premium.My question is that I don't know where the wireless switch is to t

  • Upgrade memory for iMac 24-inch, early 2009

    I want to upgrade memory for my iMac 24 inch, early 2009 with 4 GB. What a memory of 8 GB will work Best Buy? I have a gift card I want to use. Thank you!

  • windows xp with the norton anti-virus program compatibility

    When I installed the Norton Anivirus with spy software with my winows xp operating system, the computer has been significantly slower and periodically would be ' freexe for about 15 seconds on several occasions.  Are there other antivirus programs th