[svn] 3733: Better scrolling and selection synchronization in List.

Revision: 3733
Author: [email protected]
Date: 2008-10-17 16:32:38 -0700 (Fri, 17 Oct 2008)
Log Message:
Better scrolling and selection synchronization in List. Its not perfect, but better then what we had - though not where Halo List is. This is feature work to be done post-MAX.
Reviewer: Glenn
Checkintests: Pass
QA: Yes
Bug: SDK-17355
Ticket Links:
http://bugs.adobe.com/jira/browse/SDK-17355
Modified Paths:
flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxList.as

i had the problems and searched the WHOLE EARTH CATALOG   and didnt found the answer. but i have found it.
i had changed the appletv video settings to output in 1080p 50hz. if you change it back to 1080p 60hz, then you will have smooth scrolling, and the press and hold effekt and reordering the apps on the homescreen will work again.

Similar Messages

  • HT1349 Itunes pages are sonetimes unredable, there is no scrolling and selections are inop

    When using iTunes program most (if not all) displays are either inoperative OR the words are not completed. When selecting the iPhone there is no scrolling and some choices are unredadable.
    I download an app from the store (free) and it is not on the list of apps available BUT it is on the phone bu very faint and unuseable.
    All of the above is very frustrating.
    The previous version of iTunes was almost asdifficult and I didn't download any apps. However this latest version has made it impossible to use most of the itunes features. Fortunately the iPhone works GREAT and I really don't need iTunes exceept to download apps. Ideas and suggestions will be accepted with pleasure especially if they help my get an app from the store.   Thank you  PAACharlie

    Sure.
    Just open up iTunes on your computer -> Go to the iTunes Store -> Click your e- maill address (top right corner of the window) -> Type in your password for your Apple ID -> Under Computer Authorisations (underneath your Apple ID account balance and address) -> Press 'Deauthorise All'
    -> This will deauthorise all computers and devices from your iTunes account -> you then need to re- authorise any computers/ devices you would like to use with your Apple ID for iTunes content -> to do this, select the Store tab along the menu at the top (where 'File', 'Edit', 'View' etc..... are) -> Then click 'Authorise this Computer' -> Type in your Apple ID -> Voila!
    For any iOS devices (non- computers) you wish to re- authorise, these will automatically do so when you go to play iTunes content, download an app or anything like that on those devices!
    Hope this helps!

  • Scrolling and selecting text with a bluetooth mouse. (Possible bug?)

    I currently have an Apple Keyboard and Magic Mouse hooked up to my Playbook. They work very well, the implementation is incredible. However, I cannot for the life of me figure out how to scroll with the the mouse. It really limits the PB since if I hook it up to my television I cannot scroll unless I have the PB near me. Has anyone gotten this to work or is this something we are hoping to get in a future update? Aslo, is there a way to select text and bring up the copy/paste menu without having to use the touch screen? I can select text by holding shift / arrow keys on the keyboard but am unable to perform any actions without having to use the touchscreen.
    Thanks!

    Hold on there, @jnko -- are you saying you can scroll with the mouse (as in, use the virtual scroll wheel), or are you saying you can use the mouse to click on the document in, say, Word To Go, and drag it to make the screen scroll?  I can only do the latter, and, like you, can't scroll at all in the web browser.  Stinks that this wasn't fixed with the last update...

  • ComboBox scroll and selected/highlight on glasspane

    I'm using JInternalFrame as a modal frame( we couldn't use JDialog).
    For that I used an example that i found on net, which in this way the JInternalFrame is added to GlassPane of JFrame .
    On JInternalFrame there is a JComboBox.
    When I drag its scrollpad and move it up and down (to see items in Combo box), content moves ok, but scrollpad stays fixed on one place (instead of going up and down too).
    Also, when mouse points an item, it's not highlighted.
    After browsing the web and this forum i found 2 threads about this but no answer.
    Does anyone have a solution for that?
    Sample code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.beans.*;
    public class ModalInternalFrame extends JInternalFrame {
      private static final JDesktopPane glass = new JDesktopPane();
      public ModalInternalFrame(String title, JRootPane
          rootPane, Component desktop) {
        super(title);
        // create opaque glass pane   
        glass.setOpaque(false);
        glass.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
        // Attach mouse listeners
        MouseInputAdapter adapter = new MouseInputAdapter(){};
        glass.addMouseListener(adapter);
        glass.addMouseMotionListener(adapter);
        desktop.validate();
        try {
          setSelected(true);
        } catch (PropertyVetoException ignored) {
        // Add modal internal frame to glass pane
        glass.add(this);
        // Change glass pane to our panel
        rootPane.setGlassPane(glass);
        @Override
      public void setVisible(boolean value) {
        super.setVisible(value);
        // Show glass pane, then modal dialog
        if(glass != null)
            glass.setVisible(value);   
        if (value) {
          startModal();
        } else {
          stopModal();
      private synchronized void startModal() {
        try {
          if (SwingUtilities.isEventDispatchThread()) {
            EventQueue theQueue =
              getToolkit().getSystemEventQueue();
            while (isVisible()) {
              AWTEvent event = theQueue.getNextEvent();
              Object source = event.getSource();
              if (event instanceof ActiveEvent) {             
                ((ActiveEvent)event).dispatch();
              } else if (source instanceof Component) {
                  ((Component)source).dispatchEvent(event);                           
              } else if (source instanceof MenuComponent) {             
                ((MenuComponent)source).dispatchEvent(
                  event);
              } else {
                System.out.println(
                  "Unable to dispatch: " + event);
          } else {
            while (isVisible()) {
              wait();
        } catch (InterruptedException ignored) {
      private synchronized void stopModal() {
        notifyAll();
      public static void main(String args[]) {
          final JFrame frame = new JFrame(
          "Modal Internal Frame");
        frame.setDefaultCloseOperation(
          JFrame.EXIT_ON_CLOSE);
        final JDesktopPane desktop = new JDesktopPane();
        ActionListener showModal =
            new ActionListener() {
          Integer ZERO = new Integer(0);
          Integer ONE = new Integer(1);
          public void actionPerformed(ActionEvent e) {
            // Construct a message internal frame popup
            final JInternalFrame modal =
              new ModalInternalFrame("Really Modal",
              frame.getRootPane(), desktop);
            JTextField text = new JTextField("hello");
            JButton btn = new JButton("close");
            JComboBox cbo = new JComboBox(new String[]{"-01-", "-02-", "-03-", "-04-", "-05-", "-06-", "-07-", "-08-", "-09-", "-10-", "-11-", "-12-"});
            btn.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent e) {
                            modal.setVisible(false);
            cbo.setLightWeightPopupEnabled(false);
            Container iContent = modal.getContentPane();
            iContent.add(text, BorderLayout.NORTH);
            iContent.add(cbo, BorderLayout.CENTER);       
            iContent.add(btn, BorderLayout.SOUTH);
            //modal.setBounds(25, 25, 200, 100);
            modal.pack();
            modal.setVisible(true);    
        JInternalFrame jif = new JInternalFrame();
        jif.setSize(200, 200);
        desktop.add(jif);
        jif.setVisible(true);
        JButton button = new JButton("Open");
        button.addActionListener(showModal);
        Container iContent = jif.getContentPane();
        iContent.add(button, BorderLayout.CENTER);
        jif.setBounds(25, 25, 200, 100);
        jif.setVisible(true);
        Container content = frame.getContentPane();
        content.add(desktop, BorderLayout.CENTER);
        frame.setSize(500, 300);
        frame.setVisible(true);
    }

    This is a bug, and there are several open bugs on the same subject.
    The only pop up that works in this situation is a heavy weight pop up.
    There are 3 types of pop up windows: light weight, medium weight and heavy weight.
    When you call setLightWeightPopupEnabled(false) the combo box uses the medium weight when the pop up window is inside the application frame, and heavy weight when the window exceeds the frame bounds.
    There is no easy way to force the pop up to heavy weight, since most of the functions and fields in the relevant classes are private.
    But you can use reflection to access them.
    Here is one solution (tested and working with JDK 5) - adding the client property forceHeavyWeightPopupKey from PopupFactory to your combo box.
    cbo.setLightWeightPopupEnabled(false);
    try {                         
         Class cls = Class.forName("javax.swing.PopupFactory");
         Field field = cls.getDeclaredField("forceHeavyWeightPopupKey");
         field.setAccessible(true);
         cbo.putClientProperty(field.get(null), Boolean.TRUE);
    } catch (Exception e1) {e1.printStackTrace();}
    ...

  • Thesaurus w/ terms in table and selecting hierarchically

    Hello all,
    I am developing a web application where users must be able to search within a thesaurus and select from a list of thesaurus terms. I tried to set up a prototype similar to the one found in:
    Oracle Text - Knowlegde base - Use of ABOUT
    1. I use a hierarchical query to select the terms I want. Using LIKE I can also obtain the terms which match the search criteria only partially. But there is a problem: The hierarchical query which uses the CONNECT BY and START WITH clause returns the same terms more than just once. Should I resolve this using DISTINCT or is there a more elegant way?
    2. Another question: Is this structure in the above thread suitable for using multiple relationships (NT, BT, SYN, etc.)?
    Thanks in advance,
    Martin

    Hi,
    We have encountered these sorts of issues too.
    200000 records isn't a lot; collecting stats should be possible.
    Which version of Oracle are you on?
    I'm going to investigate using dynamic sampling; the default sampling level in 10gR2 is 2, but I'm looking at using one of the higher levels (= sample more blocks, as I understand it).
    Cheers,
    Colin

  • How to focus and select to the next cell with a ListView when scrolling?

    I have a ListView filled with cells and I'd like to scroll to the next cell to have it focused and selected.
    My code works to scroll down but the scroll bar is going to far!
    How can I reduce the scroll size to each cell, so I can see the focused cell? Is there a better way to implements this?
    Here is my code:
    documentListView.scrollTo(0);
    documentListView.getSelectionModel().select(0);
    int indexSize = documentListView.getItems().size();
    for (Node node : documentListView.lookupAll(".scroll-bar")) {
      if (node instanceof ScrollBar) {
      final ScrollBar bar = (ScrollBar) node;
      bar.valueProperty().addListener(new ChangeListener<Number>() {
      @Override
      public void changed(ObservableValue<? extends Number> value, Number oldValue, Number newValue) {
      int selectedIndex = documentListView.getSelectionModel().getSelectedIndex();
      if(selectedIndex <= indexSize && listScrollDown(oldValue.floatValue(), newValue.floatValue())) {
         selectedIndex++;
         documentListView.scrollTo(selectedIndex);
         documentListView.getFocusModel().focus(selectedIndex);
         documentListView.getSelectionModel().select(selectedIndex);
    Thanks for your help,
    Regards

    You could set the IsHitTestVisible property of the WebControl to false but then you won be able to interact with the web page:
    <awe:WebControl ... IsHitTestVisible="False"/>
    Another better option would be to handle the PreviewMouseLeftButtonDown of the WebControl, find the ListBoxItem in the visual tree and then set its IsSelected property like this:
    <ListView x:Name="BrowserListview" ItemsSource="{Binding browserCollection}">
    <ListView.ItemTemplate>
    <DataTemplate>
    <VirtualizingStackPanel Orientation="Horizontal">
    <awe:WebControl Source="{Binding mySource}" PreviewMouseLeftButtonDown="wc_MouseLeftButtonDown"/>
    <Rectangle/>
    </VirtualizingStackPanel>
    </DataTemplate>
    </ListView.ItemTemplate>
    </ListView>
    private void wc_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) {
    ListViewItem lbi = FindParent<ListViewItem>(sender as DependencyObject);
    BrowserListview.UnselectAll();
    lbi.IsSelected = true;
    private static T FindParent<T>(DependencyObject dependencyObject) where T : DependencyObject {
    var parent = VisualTreeHelper.GetParent(dependencyObject);
    if (parent == null) return null;
    var parentT = parent as T;
    return parentT ?? FindParent<T>(parent);
    Hope that helps.
    Please remember to close your threads by marking helpful posts as answer.

  • Using iOS 7 on my iPad, is there a way to put an event into the calendar without having to scroll down to calendar and select "home" every time?  My friend's iPad retains that setting but mine doesn't .

    Using ios7 on my iPad, is there any way to enter a calendar event without having to scroll down to calendar and selecting "home" every time?  My friend's retains that setting, bu mine won't .

    Settings>Mail, Contacts & Calendar
    Scroll till you see calendar and set default calendar to the one you want.

  • I downloaded Mavericks and now when I google a topic and select I then cannot scroll back to the original google page?

    I downloaded Mavericks and now when I google a topic and select one, I then cannot scroll back to the original google page if I wish to try a different answer?

    Sorry, I'm not very good at describing the problem.   If I had multiple browser pages open, prior to downloading Maverick I could swipe the mouse to go back or forward as required.   Now if I google a subject and the page comes up with all the choices and I pick one, I now cannot swipe back to the first page , I have to re-open google each time, type in my seach and start from scratch.  

  • Upgraded to Firefox 5. Bookmark window and selection process has changed -Scrolling response is too sensitive

    Upgraded to Firefox 5. Bookmark folder content display and selection process is now different than last version. It is difficult to scroll down my bookmark files, as the v5 now INSTANTLY opens a file if you ever-so-slightly slow down as you approach the file you want to open.
    Please supply new instructions for bookmark selection - Or fix it.
    I will switch browsers while waiting for fix (Is it possible to go back to previous V of Firefox?)
    Computer - MacBook - 2010 version
    OSX 10.5.8

    I have this same problem on my MacBook Pro. I'm disturbed that suitable quality control was not conducted before an upgrade was deployed that created this problem with a very fundamental function of the browser.

  • I was running firefox beta 9,selected about firefox, which then updated to 10, and when opening 10, began to update to version 11. now the desktop icon is beta 9, start menu beta 10, and version 11 is installed. how do i correct this problem?

    after updating from beta 9, to 10, to11, my desktop icon still says beta 9. The start menue has beta 10, and will not allow me to select open file location, which when accessing through programs(x86) is listed as beta 9. When checking uninstall programs, beta 11, is listed.
    how do i remove references to beta 9 and 10?

    Mr. Willener,
    Thank you for your reply.
    I did un-install and then re-install per the Adobe recommendations which are what you listed in your reply.  The problem remained until I did a MS Windows restore to a restore point a month or so ago.  The IE problems vanished.  However, now I'm using an outdated and unsupported version that is lower than most of the web pages require for their sites, at least the ones I want to view (they all say I need to upgrade my Flash Player which, when I did, put me in this fix).
    As to:
    Pat Willener wrote:
    Usuallyexasperated wrote:
    it requires a...... 2.33 Ghz processor!
    You can safely ignore that requirement; it is simply not true.
    Why would Adobe post a system requirement of 2.33 Ghz for 11.2 if it simply were not true?
    Message was edited by: Usuallyexasperated

  • Whenever I open my music and select a song, my iphone immediately scrolls through other songs rapidly and then I get a pop up saying "the requested url cannot be served" and I can never listen to music

    Whenever I open my music and select a song, my iphone immediately scrolls through other songs rapidly and then I get a pop up saying "the requested url cannot be served" and I can never listen to music

    I'm in the same boat...so far no one has helped here

  • I've just recently updated to the ver 4.0. After the update, I can't select my vertical scroll and any buttons on the search toolbar.

    I've just recently updated to the ver 4.0. After the update, I can't select my vertical scroll and any buttons on the search toolbar. I've tried switching off all the add-ons and running it on safe-mode but the problem still persist. Anybody encountered the same issue here? Any help would be good. Cheers

    Okay. The missing menus at the top of iTunes (in recent versions) can indicate trouble with the Segoe UI fonts on your system. It's a new symptom of a problem that can also cause text to go missing from the Device tab in iTunes.
    Unfortunately it's a bit trickier to deal with on Windows 7 systems than Vista or XP. (The "Vortical" instructions which can fix it for almost all folks on Vista and XP aren't applicable to Windows 7.)
    Try having a look through the following (unfortunately very long) topic. It contains a lot of information on the Windows 7 variants of this, and possible methods for fixing the various Segoe UI-related issues that might be in play:
    iTunes 10.1 Missing Text

  • Previously, I was able to type part of a word and all of my prior searches would be listed, such that I was able to scroll down and select it. Now I cannot. Why

    It's quite simple. A very useful feature in Firefox had been typing a search item into the white box on Mozilla's start page, where it would remain for a long while. I then would be able to just type in a few letters of the prior search to see it listed below, where I could tab down and select it. Very useful when you search a topic multiple times, or over several days (or longer). A great time saver, and memory assistant.
    Two weeks ago, my desktop computer suddenly stopped doing that, and instead began listing suggested searches, and stopped displaying any of my prior searches, regardless of topic. The look of the font also changed in the bargain.
    Then today, my laptop did the same thing for no apparent reason. All of those earlier search topics are just Gone. I am forced to recall them from memory, or go through the initial canvasing I did to find them in the first place: a great time waster.
    Both computers have Windows-7. The laptop 32-bit home and the desktop 64-bit professional.
    What happened to my search topics, and how can I reset it back the way it was? Also, why am I getting Google-like prompts for topics instead of what I want? Previously, I did not get anything until I pressed enter to start the search.
    Thank you,
    Brian

    In current Firefox releases the search bar on the about:home page and the about:newtab page have an autocomplete=off attribute that prevents Firefox from saving form data and now show search suggestions just like you get on the regular Google search page.

  • [svn] 2417: SDK-16048 - No longer open flash10 namespace for Flash Player 10 Beta 2 and onwards

    Revision: 2417
    Author: [email protected]
    Date: 2008-07-09 11:57:25 -0700 (Wed, 09 Jul 2008)
    Log Message:
    SDK-16048 - No longer open flash10 namespace for Flash Player 10 Beta 2 and onwards
    Reviewer: Pete
    Bugs: SDK-16048
    QA: Yes, please run tests related to -target-player=10, e.g. make sure 'z' property is accessible. Make sure that these tests will run when this change is merged to trunk.
    Doc: No
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16048
    http://bugs.adobe.com/jira/browse/SDK-16048
    Modified Paths:
    flex/sdk/branches/3.0.x/lib/asc.jar
    flex/sdk/branches/3.0.x/modules/asc/src/java/macromedia/asc/util/ContextStatics.java

    Step 1: uninstall Avast  See how it is as that is a known culprit
    Step 2: Chrome does not play well with OS X and is also sighted as a leading cause
    Step 3: DropBox has been a processor or network hog though less so than the above two.
    The Community you want(ed): MacBook Pro

  • Scrolling and searching is seriously delayed

    So I had itunes running perfectly on my main desktop computer upstairs with an older version of itunes. I also have a desktop dopwnstairs that had itunes running perfectly as well (this one is reading itunes files wirelessly from the main desktop). So I go to upgrade to 6.0 on my main computer and of course I have issues and itunes would not open. So I did some research and the Lorraine fix did the trick (adding itunes and quicktime to the Norton list). Worked like a charm. So then i go to do the same upgrade on my downstairs computer which is reading wirelessly. I did the Lorraine trick again but on this computer my music library disappeared when opening the new version of itunes 6.0. OK...no big deal. I proceed to load in my music library wirelessly via my main computer. So now I have my library loaded into the downstairs computer but I am having serious problems scrolling and searching on this computer. When i try and scroll it delays and freezes and it takes forever to scroll, so much so that it is unreasonable to use. The weird thing is that the downstairs computer will play songs but I just can't really scroll or search effectively. I never had this problem with the old version of itunes. Any suggestions as to what this might be?
    Thanks....Eric

    hi Eric!
    So now I have my library loaded into the downstairs computer but I am having serious problems scrolling and searching on this computer. When i try and scroll it delays and freezes and it takes forever to scroll, so much so that it is unreasonable to use.
    hmmm. check to see if you have any strange compatibility settings checked on the afflicted PC. right-click your itunes desktop icon, select "properties" and go to the Compatibility tab. are any of the boxes there checked? if so, which ones?
    investigate the QT compatibility settings too.
    another thing we'd better check on is your
    b wireless
    card. which card are you using?
    (asking this, because we've had strange reports of
    b old
    wireless drivers causing system hangs for some cards, and
    b new
    drivers causing system hangs for some other cards ... so i'm reluctant to suggest a driver upgrade until we know which kind of card we're dealing with ...)
    love, b

Maybe you are looking for