How can disable the scrolling animation when setFocus

I'm working now on a screen of IM conversation. When the user send a message, the list of instant messaging on the screen will be updated the I setFocus on the message input field: this occors a problem after OS 6.0 because the list will always be scrolling up and down...

If I need to replace any method as moveFocus to achieve?

Try setScrollingInertial (false) on your Manager. If you are using screen, you can try yourScreen.setScrollingInertial (false), but if this does not help, oneOfYourFields.getManager () .setScrollingInertial (false) should (use after having added your fields on the screen).

Tags: BlackBerry Developers

Similar Questions

  • How to disable the autostart (application) when restarting the server managed?

    Hi Ppl,

    How to disable the autostart (application) when restarting the server managed?

    I want that some apps do not stay started. In WebSPhere, we have an option to disable auto-start for the application.

    I don't find in weblogic.

    Thank you

    You can force stop the application before you restart the server.

    -Faisal

    http://www.WebLogic-wonders.com

  • How to disable the backup works when you print an email?

    How to disable the backup works when you print an email.  Whenever I try to print an e-mail, save it as a PDF is displayed.  I then have to save, then open the file to print.

    Hello

    Thanks for posting your query on the Microsoft Community.

    To disable this feature, you need to uninstall Adobe reader and then check if still back you the question quickly.

    Kind regards

    Jesinta Rozario

  • Tecra A10 - how to disable the fingerprint reader when it is docked

    Hello

    I use a Tecra A10 with a 2 Express Port Replicator.
    How can I disable the fingerprint reader when it is docked and still use it when undocked?

    Thanks for your help

    Hello

    As far as I know that something like this is not possible.
    Following this logic, it will be possible to have access to protected files when the laptop is on docking station.

    Either you use fingerprints or not.

  • How to stop SysListView scrolling animation when selecting elements with keyboard

    I'm migrating from Windows XP to Windows 7 and use two programs that use SysListViews to display lists of files and folders.  Programs are Explorer2 and QDIR (both are file managers that accompany the Explorer).  They present them a pane like the Explorer that displays the files in a folder and can display them using large icons, small-icon view, list, Details view mode, and so forth, just like Explorer.  What I use is list mode.

    Now the problem.  You can use the keyboard to navigate through the page.  Cursor right key for example, selects the file in the next column to the right of its current, and repeated position cursor rights continue to move a column to the right.  When a column that is off the screen is required, this column is presented the screen and so on.  Likewise, HOUSE selects the first file in the folder, and the last END; the window is changed to display the selected file.

    But in Windows 7, the display is scrolling animated from its current position to the one containing the selected file.  When you move a column to the right, for example, data Scrolls left (take a second quarter or a half second or if) up to the column to the right has been brought to the screen.  When moving to the first file to the end, by the RECEPTION and at the END, a sequence spinning updates occurs when the display is refreshed during his trip.

    On XP, updates are instantaneous - there is no animation.  This is what I want.

    Of course I disabled all the Visual effects, that I don't see in Win 7, such as those in the context menu of the computer to the properties of system settings advanced to all parameters of these Performance checkboxes are disabled.

    What can I do to stop this animation and get the immediate update?

    Hello

    I suggest you to contact the manufacturer of the software for extra support.

  • Disable the scroll bar when the content is less than the viewport?

    Hello

    I have a vertical scroll bar has always shown (JScrollPane.VERTICAL_SCROLLBAR_ALWAYS).
    but I want that it should be disabled when the content in the display is lower at the height of the viewport.

    For example, browser Chrome in Windows: when you open Google, the content of the page is fairly low in height and scrolling in Chrome bar will be disabled. As soon as you have enough content on the page of the scrollbar will be active.

    How can I achieve this?
    Thank you

    Hello

    It isn't really a problem, I just know that it is a limitation of the SWING, (...)
    Almost all app have this behavior; It is not very nice visually.

    I don't have Chrome and haven't seen this problem until now, anywhere (but it is true, I'm way behind in terms of GUI mode).
    The behavior that I'm used to (and which Swing designers apparently supposed to be standard too), which is a scroll bar disappears when the width of the view does not justify it ( SCROLLBAR_AS_NEEDED ). Using SCROLLBAR_ALWAYS implies that you want to the scroll bar, no matter if the width of the merit. How the scroll bar looks like in this case sounds like a look and feel selection instead (I don't have older OSs, but maybe you know an operating system where this behavior is the norm? In this case, Yes, this is a limitation of the corresponding Swing L & F).

    Maybe there is a work around.

    Because this isn't the OS Lebanese armed forces, which can be "manually coded", by listeneing to resize events and thus change the appearance of the ScrollBar.
    Assuming that the "disabled" appearance scroll bar is what you are looking for (no idea, it's just an example, if that do not meet your needs, you can do something else in the placeholder code), here is one, certainly dense enough, workaround.
    Notice how the vertical and horizontal scroll bar is different (I applied workaround only to the latter).

    import java.awt.BorderLayout;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    import javax.swing.event.ChangeEvent;
    import javax.swing.event.ChangeListener;
    
    public class TestDisableScrollBar extends JPanel
    {
        private static final String SHORT_TEXT = "text";
        private static final String LONG_TEXT = "texttexttexttexttexttexttexttexttexttexttextte";
    
        private static void createAndShowGUI()
      {
            JFrame frame = new JFrame("Demo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JTextArea textarea = new JTextArea(5, 5); // just to take up some space.
            final JLabel label = new JLabel(SHORT_TEXT);
            JPanel view = new JPanel();
            view.setLayout(new GridLayout(2, 1));
            view.add(label);
            view.add(textarea);
            final JScrollPane widget = new JScrollPane(view, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
            widget.getHorizontalScrollBar().setEnabled(false);
            widget.getViewport().addChangeListener(new ChangeListener() {
                public void stateChanged(ChangeEvent e) {
                    widget.getHorizontalScrollBar().setEnabled(
                            widget.getViewport().getWidth()<
                            widget.getViewport().getView().getWidth());
                }
            });
            frame.getContentPane().add(widget, BorderLayout.CENTER);
            JButton alternateText = new JButton("Switch width");
            alternateText.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    label.setText(label.getText().equals(SHORT_TEXT)?
                        LONG_TEXT : SHORT_TEXT);
                }
            });
            frame.getContentPane().add(alternateText, BorderLayout.SOUTH);
            frame.pack();
            frame.setVisible(true);
          }
    
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
                  }
              });
        }
    
      }
    
  • How to disable the calendar reminder when it rings

    When the calendar reminder rings, how can I turn it off?

    Thank you!

    notification of events sounds should be short, since they are not intended to be disabled, and there is no way to do it. If you use a song or something longer, then a few seconds, you should shorten it.

  • How to disable the ghosting effect when moving windows

    original title: trail window Disable

    In Windows XP, how do disable you the window trail?  In other words, the outline of the window when you drag.

    Go to control panel | Mouse. Probably in a tab as the pointer Options, you will find a trail of pointer option, you can uncheck.

  • How to disable the right panel when opening a document?

    When I open a document in 9.2007 there is this annoying Panel on the right side of the document that presents itself.  I always have to hide it, but it will come if you open another doc (in the same Instance of player)... a new tab.

    Do not know what is called the Panel, but here are the buttons that appear:

    PDF export

    Create a PDF file

    Change the PD
    Comment

    Fill & sign

    Send for Signature

    Sending / track

    How can I disable this so that the Panel is not displayed everytime I open a doc?

    Hi discoBallz,

    Please visit the following link and know about the ToolPane permanently in the drive of DC of masking:

    Hide the tools constantly Panel in Acrobat and Acrobat Reader DC

    Hope that helps.

    Kind regards

    Ana Maria

  • Disable the scroll bar when no overflow in the dynamic text field

    I use the UIScrollBar on a dynamic text field. I would like to make the scroll bar is not visible or turn it off if there are no more rows to display when initially displayed. Are there variables in a pile of data L0 I can check to see if the scroll bar can be disabled; 'lines of total in the text field' and 'lines per page' either, something that accomplishes the same thing?

    You can use the textfields maxscroll property to determine if a textfield can display all its text without scrolling.

  • How to disable the password screen when the computer is not used for a few minutes

    original title: password problems

    How can I stop my computer from ebb to needing a password, if not used for a few minutes

    Right-click your desktop image and select Customize,

    Click on the link at the bottom right, screen saver

    Uncheck the underlined

  • How to disable the home page when popup is opened?

    Hello

    With the help of Jdev 11.1.2.3

    I have two buttons on each row in a table that open pop-up windows.

    If I open one of them (say p1), I can still click on the page and open the other popup (p2). In this case, two pop - up is open on top of the other which is a mess.

    So my question is: is there a way to prevent the user to click on the page, while a popup is open?

    Also, one of the popups (p1) launches a btf where very probably other popups will be open also (different from p2), so I would like to prevent the user from clicking anything on the page for the duration of the taskflow.

    Thank you!

    MB

    Hello

    1 - can you use a dialog inside your popup? In my view, using a dialog box, you disable the rest of the page.

    2 - you can create a link for each popup variable. The attribute, then disable/measure the other button based on this variable, then using events setPropertyListeners and popupClose to set true / false.

    Concerning

  • How to disable the current point when validate trigger

    Hi all
    I want to disable the current text point when validate trigger.

    Generally, we rely on WHEN-VALIDATE when the cursor leaves a field. In this case, because the cursor leaves the ground, why are you trying to turn it off at this point? The other time would be during the validation process. In this case, you should be able to disable during the WE-COMMIT or in a VALIDATION KEY.

    I guess if we understood better what you want to accomplish and why you want to do, we could offer something more useful.

  • How to disable the button submit when running

    Hello

    I create a page with buttons createEmployee, deleteEmployee and updateEmployee employee management.

    I want to disable the buttons send above if the user is "OPERATIONS".

    My code as follows:

    String userName = pageContext.getUserName ();

    {if ('Operations'. Equals (username))}
    OAPageLayoutBean page = pageContext.getPageLayoutBean ();
    page.prepareForRendering (pageContext);
    OAGlobalButtonBarBean buttons = (OAGlobalButtonBarBean) page.getGlobalButtons ();
    OAGlobalButtonBean button = (OAGlobalButtonBean) buttons.findIndexedChildRecursive ("CreateEmployeeButton");
    button.setDisabled (true);
    }

    but he throws NullPointerException.

    For this code, I guide the OAF Dev R12.

    can you explain what is function_name in the next line

    Button OAGlobalButtonBean = (OAGlobalButtonBean) buttons.findIndexedChildRecursive ("< function_name >");

    I tried with the id of the button, but I didn't work.

    Can you explain about this clearly.

    Thanks in advance,
    SAN

    Hello

    I think that your button on the page is in the region of pageButtonBar.

    Use code below.

    String userName =pageContext.getUserName();
    
    if("OPERATIONS".equals(userName)){
    OASubmitButtonBean button = (OASubmitButtonBean) webBean.findChildRecursive("CreateEmployeeButton");
    if(button!=null)
    {
        button.setDisabled(true);
    }
    } 
    

    Kind regards
    GYAN

  • How to disable the screen saver when you watch videos in full screen in firefox?

    This only happens with Firefox, other browsers videos play normally and without interruption. I want to keep my window screen saver by default but not when watching full-screen mode.

    The Flash Player plugin must normally block the system to go to sleep, reduce the brightness of the display or go to the screen saver when you are using full-screen. It is strange that you have this problem with Flash.

    There are workaround solutions such as the use of an add-on or an external program that simulates the movement of your mouse, but those who really shouldn't be necessary.

    VLC, I don't know.

    Furthermore, you closed and restarted Windows because this problem first occurred? Just in case where some component shared Windows crashed.

Maybe you are looking for

  • HP 14 d037TU drivers do not work for WIN7 64 bit

    Hello Please help me solve the problem. HP 14 d037TU drivers do not work for WIN7 64 bit as below. I have try all means possible to install WIN7 64 bit player but no luck. I assume that the reader has not been certified for WIN7 64 bit. HP, it is not

  • Interaction of applications with Windows 7

    Good evening everyone, OK? I have sort of a silly question to ask you guys. What is the name of the application that is running on the Thinkpad T420, example: increases the volume and appears onscreen in "BOLD" showing how this volume, these things.

  • The movement of my robot can be controlled by the entry of a camera control in labview?

    I'm new to mindstorms and I'm trying to interface a camera that I can easily control in Labview with the NXT unit movement.  I want this to be real time.  What is the best way to get Labview to send commands that get immediately updates implemented b

  • I have the same email address as someone else, how can this happen?

    same email address I have the same as someone else's email address how this can happen

  • behavior of 3D mapping sensor

    Hello I'm using Labview 8.5 to work. As you may already know, versions 8.6 prior have a 3D sensor mapping feature, which can help a lot with the development of a project. However, I need to explain how it works in order to have authorized a purchase