Buttons don't respond sometimes/scroll bar slow

I have iPod nano that's approximately 2 years old. Buttons sometimes don't respond - have to push repeatedly and then will eventually respond. Also scroll bar is slowing down although does work. Dying or is there a fix? Any info would be appreciated!

The most common trouble shooting solution is to force-quit the Music app. See if that works for you.

Similar Messages

  • HT4859 I have the error message "Not enough storage. Cannot backup, not enough backup space in ICloud . . . ", but now the "close" and "settings" buttons don't respond and I cant get the IPad to open so I can go change settings. What do I do?

    I have the error message "Not enough storage. Cannot backup, not enough backup space in ICloud . . . ", but now the "close" and "settings" buttons don't respond and I cant get the IPad to open so I can go change settings. What do I do?

    For a "hard" restart of your iPad just press the home and power button at the same time and hold it for at least 10-15 sec. until it restarts.

  • When I'm in a Firefox browser window the screen info rolls up and down and doesn't respond to scroll bar control.

    This problem occurs intermmitently, but becomes more prevalent the longer I stay in the window and resumes when I move into another website. Occasionally, I seem to be able to stop the rolling by right-clicking the mouse while hovering the pointer arrow over the scroll bar. ost of the time I can not control the window roll, even with the scroll bar. If I exit Firefox and return, the problem ceases and then resues as before.

    Must be a problem with the graphics drivers or operating system.. Any other system malfunctioning reported ?
    If yes, kindly contact your system admin and format your OS...
    Must be a problem with compatibility, so please do the the above
    Happy browsing

  • JDialog Buttons don't respond in JDK 1.3.1

    Hi,
    I recently had to change from JDK 1.3 to JDK 1.3.1, in order to be able to use the MS Global IME and Japanese Characters in my App.
    The problem is that some of my Dialogs stopped responding both to mouse and keyboard events (I can still close the Dialog through the window menu and the (x) button on the top-right corner).
    I've looked in the Bug database, and found some entries that look like what I'm getting (http://developer.java.sun.com/developer/bugParade/bugs/4531693.html). The status of these bugs is fixed (I don't know in which version). I downloaded JDK 1.3.1_06 (the last version for JDK 1.3.1!?) and still have the same problems.
    If anyone has solved this problem or can help me solve it, I would really like to know!
    TIA,
    Paulo Breda

    Actually, I think 1.4.1 also has the problem, eventhough I didn't test.
    Anyway changing to 1.4.1 isn't a choice, because it would imply too many changes to the code, and to third-party components, that aren't supported...
    If someone has a better solution, I'm willing to give my Duke dollars away!

  • IPod screen went white, then black. Buttons don't respond, can't do 5Rs.

    About 20 minutes ago, I plugged my iPod into my computer to charge, and sync some new music to it. It was fine when I plugged it in, the screen showed everything, etc. I removed some music from iTunes while the other music I wished to sync was downloading to my computer itself. After about 10 minutes the music finished, and I reopened iTunes to sync the music. I noticed my iPod wasn't on the sidebar, and checked the iPod itself. The screen was completely white, and I couldn't do anything with it. I unplugged it, plugged it back in, nothing. I pressed all the buttons, moved the wheel around, and heard some sounds, but then the screen turned black. Nothing is responding, and when I plug my iPod into my computer, it makes the sound to signal that I've plugged something in, but does not appear in My Computer or iTunes. I've tried the 5Rs, and some of them are even impossible since it doesn't show up in iTunes. Can anyone help?

    See  Display Shows White Screen Here
    http://support.apple.com/kb/TS2771
    If no joy... Try letting the Battery Fully Drain... Then Charge the Device for at least 30 Minutes...

  • Flash CS4 as3 buttons don't respond

    I have a flash problem I can only click on one button and that's it. I have 5 buttons that go to different pages but if i click on, lets say the about button, it will go but that's it. I can't click on any other buttton. The code is below. I don't see what i'm doing wrong. Help is needed. Thanks!
    stop();
    home.addEventListener(MouseEvent.CLICK, gohome);
    function gohome(MouseEvent):void{
    gotoAndStop(1);
    about.addEventListener(MouseEvent.CLICK, goabout);
    function goabout(MouseEvent):void{
    gotoAndStop(2);
    history.addEventListener(MouseEvent.CLICK, gohistory);
    function gohistory(MouseEvent):void{
    gotoAndStop(3);
    cast.addEventListener(MouseEvent.CLICK, gocast);
    function gocast(MouseEvent):void{
    gotoAndStop(4);
    bios.addEventListener(MouseEvent.CLICK, gobios);
    function gobios(MouseEvent):void{
    gotoAndStop(5);
    tickets.addEventListener(MouseEvent.CLICK, gotickets);
    function gotickets(MouseEvent):void{
    gotoAndStop(6);

    I did a flash site for a play. I have 6 buttons at top labeled: Home, About, History, The Cast, Bios, The Tickets. I have all the buttons named and gave them a instance name. When I run the program I want to be able to go to the button I push. But when I run it, it starts up correctly but when I click on a button it freezes, I can still click on the other buttons but the pages don't change.
    Thanks for any help!
    Sent via the HTC Vivid™, an AT&T 4G LTE smartphone

  • Mouse back/forward buttons don't respond after exiting from full screen Flash video

    Yeah. Has anyone else encountered this? After viewing a full
    screen video (YouTube, Hulu) and exiting (via the ESC button), the
    back and foward buttons on my mouse stop responding. Really!
    Usually I will have to go back into a full-screen video twice for
    the buttons to get "stuck," and then it takes them several minutes
    to regain their functionality.
    I've had this going on for over a year now, and I'm finally
    sick of it enough to where I want to get some help. I've narrowed
    it down to the Flash player as being the culprit, and it happens on
    every browser I've tried it on (Firefox 3: RC2, RC1, Beta5; Firefox
    2; IE7; IE6; Safari 3.x). This started happening when I upgraded
    the Flash Player and the first offending version would be the one
    that introduced the current full screen Flash video technology. I'm
    guessing it was 9.0.
    I have a Logitech MediaPlay wireless mouse, Win XP SP2. I
    have the latest version of Flash and the most up-to-date mouse
    drivers.

    I have the same exact problem, only a different model
    Logitech. Have you found a solution? Thanks, Shawn.
    [email protected]

  • Corner Button with only a Vertical Scroll Bar

    I would like to have a corner button but the ScrollPane only requires a Vertical ScrollBar, and thus there is no room for the button. I understand it is possible to have a Heading which will then create the corner space required for a button, could somebody please point me to an example of a heading with a single line of text.
    The ScrollPane does not contain a Table but a TextPane containing document.
    Thanks
    Rich

    Something like this should work...
    JLabel columnHeaderComponent = new JLabel("some text in one line...");
    JScrollPane scrollPane = new JScrollPane(someComponent);
    scrollPane.setColumnHeaderView(columnHeaderComponent);In order to have more control over the columnHeaderComponent you should write your own class that overwrites getPreferredSize, getMinimumSize and getMaximumSize so that the component fits your needs.
    Finally you do something like...
    scrollPane.setCorner(JScrollPane.UPPER_LEFT_CORNER, topLeftElement);
    scrollPane.setCorner(JScrollPane.UPPER_RIGHT_CORNER, topRightElement);Greets
    Christian

  • My home button does not respond sometimes

    My home button on my iPhone 4 is unresponsive half the time. Help!

    This method worked for me once, but then my home button was physically not working correctly and i would have to put way more pressure on it to make it work. So i had to open it up myself and change the home button with a new part that i bought from amazon. The job isnt too hard with the power of patience and youtube.

  • Send and reply buttons don't respond in mail

    After migrating to another computer my mail won't send or reply. The controls are not greyed out. Just won't do anything when I try to send or reply. am receiving mail and forwarding works. Help? warren

    This problem is usually caused by some Launch Services cache or preferences corruption that affects Mail’s ability to use the spell checker. Can you compose the message normally in Mail? What’s your Mail > Preferences > Composing > Check spelling setting? Set it to Never, restart Mail, and see whether that makes a difference.
    The following article describes how to manually reset Launch Services — the notes at the bottom of the article also provide information about the side effects of deleting each of the files involved:
    Resetting Launch Services
    If you prefer using a cache cleaning utility instead of following the manual procedure described in the previous article, take a look at this other article for general troubleshooting and cache-cleaning procedures. Actually, you should also verify/repair the startup disk (not just permissions), as described there:
    Resolving Disk, Permission, and Cache Corruption
    The most appropriate utility for this particular problem probably is Tiger Cache Cleaner, but you may also want to consider other utilities, such as OnyX, or Cache Out X, which are free. Whatever utility you choose, be sure to read this first:
    Side effects of System cache cleaning
    As an example, here’s how you should proceed with OnyX:
    1. Quit all applications.
    2. Launch OnyX and enter your administrator password.
    3. Go to Maintenance > Reset and check LaunchServices database.
    4. Un-check any other pre-checked options.
    5. Click the Execute button.
    6. Restart the computer.
    7. If the problem persists, try again choosing the Reset option instead of the Rebuild option that’s selected by default.

  • Scroll bar, back/forward buttons and home buttons don't work

    I use Windows 7 and Firefox 6.0.1. The navigation buttons don't respond to mouseover and work only if the menu bar is selected.
    I don't want the menu bar because it reduces screen space. How can I get those buttons to work without the menu bar?

    Sounds like you have a corrupt '''places.sqlite''' file or corrupt '''localstore.rdf'''. Please see these articles which explain how to resolve the problem:<br><br>
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox<br><br>
    * http://kb.mozillazine.org/Corrupt_localstore.rdf<br><br>
    If this answers your question, please click the '''Solved it''' button next to this post after you log in into the forum. This will help others searching for a solution to the same subject.
    Thanks.

  • Missing Print button and scroll bar

    I am using Adobe Reader X version 10.1.9 on a Dell laptop and cannot see the print button or the right vertical scroll bar.  How do I fix this?

    One other thing: I know that WebHelp does not allow a Print
    button, and at one point we had to try WebHelp as a substitute
    while we solved another bug. This is why I deleted everything in
    the output folder (to get rid of WebHelp files that could be
    interfering) and reran the output, but no change in the
    results.

  • Mavericks ruins navigation. Why did they eliminate the scroll bar?

    Mavericks has ruined navigation. You can no longer color code files (except with tiny dots that appear far away from file names in the margin); the scroll bars sometimes appear. Sometimes they don't. Its very difficlt to grab window borders to resize the windows. What is the point of all this?

    bemuse wrote:
    Mavericks has ruined navigation. You can no longer color code files (except with tiny dots that appear far away from file names in the margin); the scroll bars sometimes appear. Sometimes they don't. Its very difficlt to grab window borders to resize the windows. What is the point of all this?
    If you are using an old-style mouse, you might be frustrated. But with any recent pointing device the scroll bars are not really needed. I don't use the scroll bars much because...
    I can scroll with my mouse scroll wheel
    I can scroll with the trackpad built into all MacBooks
    I can scroll with the keyboard using arrow keys, Page Up/Page Down, spacebar...
    In other words, with all of these better and faster methods, having to move your mouse all the way over to the edge of the screen to pick at a scroll bar or little arrow is now a relic of the 1980s and is much less efficient than using the direct touch gesture or scroll wheel methods.
    As for the window border grabbing, that is a compromise. If you enlarge the target area of the window borders, you reduce the target area for controls within the window or palette itself. The best solution for window resizing is to simply have a little patience, slow down until the resize arrows appear and then grab. Overall, window resizing is more flexible than it has ever been since you can grab any edge now, instead of just one corner as in the older OS Xs.

  • Remove Scroll bars in a URL iView

    hi
    I am attaching more than one( three or four) URL iview to a page and while opening the page, I don't want the Scroll bars to appear on the page.
    how can this be done?
    and heard of isolation method.....but doubts whether it is available in EP 7
    Thanks in advance.

    I don't care about the iView functionalities...
    this I am doing as part of the spacing issue I am facing with the iViews.
    for URL iview I guess there is no isolation method.
    for pages it comes.
    but for some other iviews the isolation method is there.

  • DIV Tag Scroll Bars

    I have a AP Div box that I want to hold more text than the
    vertical length has room for. I checked the box in the Positioning
    category for the overflow to scroll. This is all good. But is there
    any way to specify that I don't want the scroll bar bottom gray
    box?
    http://www.communicationssquared.com/C2newsite/services.html
    I can deal with the right scroll bar, because it's useful,
    but do I have to have that gray non-scroll bar on the bottom?
    Thanks.

    ethomasmcginnis wrote:
    > I have a AP Div box that I want to hold more text than
    the vertical length has
    > room for. I checked the box in the Positioning category
    for the overflow to
    > scroll. This is all good. But is there any way to
    specify that I don't want the
    > scroll bar bottom gray box?
    >
    >
    http://www.communicationssquared.com/C2newsite/services.html
    >
    > I can deal with the right scroll bar, because it's
    useful, but do I have to
    > have that gray non-scroll bar on the bottom?
    > Thanks.
    >
    Or even better than Micha's suggestion, let the content flow
    down the
    page and use the scrollbar the browser gives you.
    Bonnie

Maybe you are looking for

  • I want Safari to open with all windows from last session.

    I have selected that option from the preferences menu, but it doesn't work. It just opens a new page. What do I do?

  • Getting error while updating IT 0105

    Hi, I am inserting a record in Communications Infotype when user creates a IT 0006 record. I have written code in the user exit to do the job and I am using HR_INFOTYPE_OPERATION' Insert option (INS) for that. I am doing enqueue and dequeue properly.

  • Help, i get the 'error downloading purchased music.' what do i do?

    i can download music and podcast fine but when i try to purchase a tv show i get the error message "there was an error downloading purchased music. the disk could not be read from or written to" i went to the purchases command in the advanced menu se

  • Client can no longer see inbox for IMAP

    A direct quote from a end user that is using IMAP and outlook. "yep was working fine when i checked in the morning but i check about 6.30, as i checked it flashed up that the server was in off line mode, my inbox was still there i tried to open a ema

  • Script send as OTF attachment instead of PDF in email

    Hi, I am sending a script as email using the FM: CALL FUNCTION 'OPEN_FORM' "in background task EXPORTING device = 'MAIL' form = v_script_name language = sy-langu mail_sender = wa_persistent_sender mail_recipient = wa_persistent_recipient options = wa