Buttons not working, will reset.

Just wondering if anyone has seen this before. With the iPod off, I can press the button to turn the iPod on. Once it's on and at the main menu, neither the buttons nor the scroll wheel do anything at all. I can reset the iPod by pressing select+menu without any trouble.
This seems to imply that the buttons work. Any takers on why they're not doing anything in the menu though?
Info: Used iPod I got as a gift. It's out of warranty. I've reset it both hard and soft many times. It connects perfectly to Windows and iTunes, I can access the drive from Windows as well. I've updated the firmware to the newest version through iTunes, I've reset factory settings twice, and I've done many, many soft resets without any trouble.
- Perplexed and very yearning to use iPod. (EE student, not afraid to get hands dirty either)

Just an addendum to the post, the hold switch does work fine. I have read about the problems with other 5G iPods and have toggled the hold switch quite a lot with my fingers off of the scroll wheel to let it recalibrate.
I'm able to load and play files off of the iPod with iTunes as well without any problems; which is interesting because the iPod itself is now at the language choosing screen following my restores. Either way, everything seems to work fine except for the buttons and wheel not working, except for allowing me to reset whenever I want with menu+select.

Similar Messages

  • Home button not working, any reset type tips gratefully received!

    Home button not working, any reset type tips gratefully received!

    Perhaps you can find something that will help in this older extensive thread.
    https://discussions.apple.com/thread/1969583?start=0&tstart=0
    B-rock

  • 9630 Keyboard/Buttons not working; hard resets and multiple reloads of OS did not correct

    My BlackBerry 9630 Tour is a little more than a year old. Yesterday the keyboard, trackball, and all buttons stopped working while I was typing out an email. I could not power off the Blackberry without removing the battery for a hard reset. Unfortunately, even after many hard resets, the problem persisted, so I went to the forums for help and tried everything that seemed relevant (multiple times) with no success.
    After reviewing a number of tech support posts, this problem does not appear to be unique to any given model of BB and contact with liquids is cited as a common but not the only cause for this condition.
    I was outside on a very hot and humid day when the malfunction occurred so it is possible some perspiration may have come into contact with the keypad, convenience buttons, or trackball and caused the lockup.
    I'm looking for someone with more smarts than me to help me troubleshoot, identify the actual problem, and identify the proper corrective actions. See below for a synopsis of my actions taken, with the exception of taking it to the shop for repair/replacement.
    The corrective actions listed on the forums and blogs are varied but essentially fall into two primary solutions:
    1. If moisture is suspected to be the issue, let the BB dry out overnight
        a. Pull the battery, naturally air dry or use a blow dryer, let it sit unplugged with no battery for at least 12 hours 
        b. If this doesn't immediately work, try a clean install of the OS (see below)
        c. If this doesn't work, take to the shop and they'll either replace the keyboard and/or trackball or replace entire unit
    2. If moisture is not suspected to be a factor then perform a backup followed by a clean install of OS
         a. Backup your files using Desktop Manager Backup and Restore
         b. Do a clean reinstall OS using Desktop Manager Application Loader
             i. The OS installation process is dicey  and takes a little patience and focus-- you have to wait for the Desktop Manager to properly recognize the device before it can proceed on some of the steps and it may take several iterations to get completely through the process and get the "successful installation" message.
             ii. Further, you may need to keep the battery removed during the initial steps in the process and only insert it when the process gets to the point of actually trying to copy files into the BB memory
                * The BB LCD will display an icon that looks like a battery with a slash through it letting you know the process cannot proceed until a battery is inserted and the Desktop Manager Application Loader will also give you an error indicating it cannot find the device.
                * After inserting the battery, it will take a few seconds or more for the computer to recognize the USB device and for Desktop Manager to respond with the BB password pop-up window.
                * After typing in your BB password, the installation should continue.
        c. If you can get the OS successfully reloaded and your keyboard/trackball/buttons work -- great -- now restore your files and settings using Desktop Manager Backup and Restore and get on with your life.
        d. If this does NOT work after multiple successful clean OS installations apparently you are completely hosed; the only other option is to get it to the shop for repair or replacement.
    1.. Does anyone have a troubleshooting procedures that will identify whether moisture is the root cause or not?
    2. Is there another corrective procedure that's been missed?

    Took  BB to Sprint Store and technician took it apart, saw no evidence of moisture or any other damage, and concluded that the keyboard had failed. Not an uncommon occurance.
    Also, he told me you cannot simply replace the keyboard, it is integral to the systemboard, so you need to replace the entire device.
    He did commend the troubleshooting approach used prior to going to the store -- most folks won't take the time to do even basic troubleshooting (like taking out the battery), they just go to the store and say "fix it please". He confirmed that the steps outlined in the initial post were correct and did not have any other solutions.
    Take away:
    If you want to do some troubleshooting yourself to check for moisture, the process was pretty straightforward. After watching the technician, most folks with a little technical or mechanical aptitude should be able to manage the dismantling process. You just need a small phillips head screwdriver and a little patience. Good lighting and a magnifying glass or reading glasses also help!

  • Radio buttons not working after resetting

    I have a form with two radio buttons for each question.  Each question is in its own frame "Q1," "Q2," etc.  I also have a btn_Reset created to reset the form, i.e. reset all radio buttons and return to "Q1" frame.  All buttons work as they should, including resetting the radio buttons, however, once I reset the radio buttons and return to "Q1" to start over, the actions associated with each radio button upon clicking on them do not work.  Here's my code:
    //Frame "Begin"
    gotoAndStop("Q1")  //I also define my variables in frame "Begin"
    //Frame "Q1"
    rbtn_YESQ1.onPress = function():Void
         attachMovie("btnReset", "btn_Reset", 1, {_x:0, _y:0});
         btn_Reset.onRelease = function():Void
              xfa.host.resetData("radioGroupQ1"); //this resets my radio buttons in "Q1" frame
              gotoAndPlay("Begin");
    //Once I return to "Begin" frame, my variables are reset to their initial value since that's where I originally defined them, and I go to "Q1" because that's what the code in frame "Begin" says.  Here is where I click on rbtn_YESQ1 again and even though the button does fill in, it does not attach btn_Reset to the stage as defined by rbtn_YESQ1.onRelease function.
    What am I doing wrong?

    Here's the full code for the radio buttons:
    ////Code in frame "Q1"////
    //rbtn_YESQ1 code
    yesListener = new Object();
    yesListener.click = function (evt)
        mc_EmptyReset.attachMovie("btnReset", "btn_Reset", 1);
        mc_EmptyReset.btn_Reset.onRelease = function():Void
            //Places "Reset Confirmation" window on top
            attachMovie("mcResetConfirmation", "mc_ResetConfirmation", getNextHighestDepth(), {_x:24.0, _y:56.0});
            resetConfirmationTween = new Tween(mc_ResetConfirmation, "_alpha", easeNone, 0, 100, .5, true);
            mc_ResetConfirmation.btn_No.onRelease = function():Void
                mc_ResetConfirmation.btn_No.enabled = false;
                mc_ResetConfirmation.btn_Yes.enabled = false;
                resetConfirmationTween.yoyo();
                resetConfirmationTween.onMotionFinished = function():Void
                    removeMovieClip(mc_ResetConfirmation);
            mc_ResetConfirmation.btn_Yes.onRelease = function():Void
                mc_ResetConfirmation.btn_No.enabled = false;
                mc_ResetConfirmation.btn_Yes.enabled = false;
                resetConfirmationTween.yoyo();
                resetConfirmationTween.onMotionFinished = function():Void
                    removeMovieClip(mc_ResetConfirmation);
                    gotoAndPlay("Begin");
    rbtn_YESQ1.addEventListener("click", yesListener);
    //Same code as above btn_NOQ1
    noListener = new Object();
    noListener.click = function (evt)
         //same code as above...
    rbtn_NOQ1.addEventListener("click", noListener);
    ////Code in frame "Begin"////
    gotoAndStop("Q1");

  • If Ctrl+Alt+Shift buttons not working to reset your adobe photoshop cs5.1 preference to default

    How to reset Photoshop preferences (In Windows):
    First, hold down all three Ctrl+Alt+Shift buttons
    Now "while keeping those button held," simply open Photoshop or a file that opens with Photoshop
    As Photoshop loads, you should get a prompt asking if you would like to "delete the Photoshop settings file", Click yes
    You should now have a fresh slate with all of the settings returned to their default.
    Its strange some keyboard cannot reset photoshop after  you press  Ctrl + Alt + Shift buttons.
    And its no pop up to confirm delete
    At finally i found the problems is type of my keyboard not compatible with photoshop
    i changed my old keyboard immediately and its works!!
    If you have problems with Ctrl + Alt + Shift buttons cannot reset your adobe photoshop cs5 preference  , please do change your type of your  keyboard to new keyboard

  • Iphone 4 home button not working, called never fixed, then cracked screen before bringing it back again, will they blame the cracked screen if i bring it back?

    I bought an iPhone 4 less than a year ago, then one day the home button randomly stopped working, I bought the warranty so I decided to call in and see what was wrong with it. The girl said that restoring the phone would correct the problem which it did. But it is only a temporary fix, it happens more often now. So I was meaning to call in soon, but the other day my phone fell out of my pocket IN CASE from a foot height and cracked the screen. I nearly threw up. All the years I have had a phone I have never cracked or broken one, strongest screen my ***. Anyway, if I contact them again now will they fix the home button problem? or will they say that the cracked screen is obviously the cause of the home button not working? which it is not!! I don't care about the screen being cracked its not on the actual screen just on the side so its irrelevant to me. Plus I heard it is outrageosly pricey to replace.

    Apple, as I said, does not repair your iPhone. All hardware service issues are handled by replacing the unit. So they can't handle the home-button issue without also addressing the issue of the cracked screen, for which they'll almost certainly charge you. But you can make an appointment at an Apple Store or call Apple tech support and plead your case.
    Regards.

  • Help button not working on firefox.How to fix?

    help button not working.

    Hello,
    Lets give Firefox some Tuneup.
    The Refresh feature (called "Reset" in older Firefox versions) can fix many issues by restoring Firefox to its factory default state while saving your bookmarks, history, passwords, cookies, and other essential information.
    '''''Note:''' When you use this feature, you will lose any extensions, toolbar customizations, and some preferences.'' See the [[Refresh Firefox - reset add-ons and settings]] article for more information.
    To Refresh Firefox:
    # Open the Troubleshooting Information page using one of these methods:
    #*Click the menu button [[Image:New Fx Menu]], click help [[Image:Help-29]] and select ''Troubleshooting Information''. A new tab containing your troubleshooting information should open.
    #*If you're unable to access the Help menu, type '''about:support''' in your address bar to bring up the Troubleshooting Information page.
    #At the top right corner of the page, you should see a button that says "Refresh Firefox" ("Reset Firefox" in older Firefox versions). Click on it.
    #Firefox will close. After the refresh process is completed, Firefox will show a window with the information that is imported.
    #Click Finish and Firefox will reopen.
    Did this fix the problem? Please report back to us!
    Thank you.

  • Sleep Button Not Working on iPhone 5

    Sleep button not working .. Advice on what Else I should do?
    I've already turned it off & turned it on, & rebooted it.
    I've had my phone since October and this is the first time it's done this

    Morning AskVictoria95,
    Thanks for using Apple Support Communities.
    Installing the latest version of iOS may resolve the issue.
    For more information on this, take a look at this article:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Sleep/Wake button will not lock or unlock iPhone
    To lock the phone, press the Sleep/Wake button. Note: By default, if you don't touch the screen for a minute, iPhone locks automatically.
    To unlock iPhone, press the Home button or the Sleep/Wake button, then slide the slider.
    If either of the above steps don't work, try turning iPhone off and then on again.
    If the iPhone will not power off, reset it.
    Try to lock or unlock the phone.
    Issue not resolved
    http://www.apple.com/support/iphone/contact/
    Best of luck,
    Mario

  • I have an iphone 3gs in which sleep/wake button not working. i have got stuckn  in an apple logo in my phone screen. is there any software or any solution to turn on or restore my phone??

    i have an iphone 3gs in which sleep/wake button not working. i have got stuckn  in an apple logo in my phone screen. is there any software or any solution to turn on or restore my phone?? Please help...and thaks in advance

    The Basic Troubleshooting Steps are:
    Restart..  Reset..  Restore from Backup..  Restore as New...
    Try a Reset of the Phone... You will Not Lose Any Data...
    Turn the Phone Off... ( if it isn’t already )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    The Apple logo will Appear and then Disappear...
    Usually takes about 15 - 20 Seconds...
    Release the Buttons...
    Turn the Phone On...
    If that does not help... See Here:
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414

  • Help me .....My HOME button not working and responds very very slowly

    My home button not working is very slowly
    Help me pliss

    Hello Frajaisa
    I have highlighted below the troubleshooting steps for issues with the Home button slowly responding.
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    The Home button is slow to respond
    If the Home button is slow to respond when exiting one application, try another application.
    If the issue exists only in certain applications, try removing and reinstalling those applications. Get further assistance in installing and troubleshooting applications.
    If the issue continues, Try turning iPhone off and then on again. If the iPhone will not restart, try resetting it.
    If the issue is still happening, try to restore the iPhone.
    Seek service is the issue is still occurring.
    Regards,
    -Norm G.

  • HT201412 my ipod 4G power button and volume button not working after updated to ios6. i also experience wifi issue. so deppresing!

    my ipod 4G power button and volume button not working after updated to ios6.
    i also experience wifi issue. my ipod can't detect any wifi signal.
    so deppresing!
    what should i do?
    i can't put my ipod to sleep, can't adjust volume, can't shut off.
    should i update to ios 6.1?
    HELP

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:       
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar
    When iOS 6.1 comes out I would update.

  • Iphone 4 volume buttons not working

    iphone 4 volume and mute buttons not working, checked all settings they are all fine and when headphones in it works??? When I take out headphones the volum buttons do not work, when phone rings or text receives only vibrates???? HELP!!!!

    This could be due to some debris or dirt inside the  headphones jack that makes the iPhone think that the headphones are connected even when they are not.
    Try to see if you can clean the jack being very careful, with canned air as sold in electronics store.  Some people have been successful by introducing and withdrawing the headphones jack several times in a row to displace whatever is in there if it is lodged in.
    Avoid introducing anything else like a pointed object.  You could damage the jack.
    If all of this does not work, I would try first resetting the phone by holding the home button and the power button together for about 15 seconds or until the whilte apple appears, then waiting until the phone resets.  If the problem continues after this, take it to an Apple Store to see what they believe should be done.

  • Button not working in browser

    I am coding a video player in Netbeans 6.8. just find two problems:
    1. the browser button not working in browser when I run the project from Netbeans under "run in browser" mode. however under "standard execution" mode, everything is fine.
    2. can not run the jar file in the project's dist directory directly. in other word, I can not run the jar file outside of Netbeans.
    I appreciate any help. thanks.
    Main.fx:
    package gui;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.paint.Color.*;
    * @author Jethro
    var face=Face{};
    function run(){
        Stage{
            title: "player"
            resizable:false
            scene: Scene{
                width:800
                height:600
                fill:DARKBLUE
                content: [face]
    }Face.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.control.Button;
    import javafx.scene.layout.VBox;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaError;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.media.MediaView;
    import javafx.scene.control.ProgressBar;
    * @author Jethro
    public class Face extends CustomNode {
        public var lbf=LBF{};
        public var enable=true;
        public var mark="play";
        public var sourceOfMedia:String;
        public def player=MediaPlayer {
            repeatCount:MediaPlayer.REPEAT_FOREVER
            onError:function(e:MediaError){
                var er=e.message;
         media : bind Media {
              source: sourceOfMedia
        public def view=MediaView {
                mediaPlayer:bind player
                preserveRatio: true                    
        public def bar=ProgressBar {
                height:10
                width:bind scene.width
                progress: bind
                    if(player.media !=null){
                        player.currentTime.toMillis()
                            /player.media.duration.toMillis();
                    }else{
                        0.0
        public var play=Button {      
            onMousePressed:function(e:MouseEvent){
                if(enable and player.media != null){
                            mark="pause"; println("playing...");                       
                            sourceOfMedia=lbf.uri;
                            player.play();
                            enable=false;
                }else{
                    mark="play";
                    player.pause();println("paused...");
                    enable=true;
         text: bind mark       
        public override function create(): Node {
            return Group {
                content: [
                    VBox{
                        content: [
                            lbf,
                            bar,
                            play,
                            view,
    }LBF.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.control.TextBox;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.scene.Node;
    import javafx.geometry.HPos;
    import javafx.geometry.VPos;
    import javafx.scene.control.Button;
    import javax.swing.JFileChooser;
    * @author Jethro
    public class LBF extends CustomNode{
        public var uri:String;
        public var whereis=Text {
            fill:Color.BLUE
         font : Font {
              size: 20
         x: 10, y: 30
         content: "location: "
        public var location=TextBox{
            text:"the song's location"
            columns:40
            selectOnFocus:true
        public var browser=Button {
         text: "Browser"
         action: function() {
                    var jfc=new JFileChooser();               
              jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
                    var val = jfc.showOpenDialog(null);
                    if(val == JFileChooser.APPROVE_OPTION) {                   
                        location.text = jfc.getSelectedFile().getAbsolutePath();
                        uri=jfc.getSelectedFile().toURI().toString();
                        println(location.text);
        public var face=Group {
         content: [
              Rectangle {
                        x: 0, y: 0
                        width: 800, height: 50
                        fill: Color.SILVER
                     HBox{
                         width:800
                         height:50
                         hpos:HPos.CENTER
                         vpos:VPos.CENTER
                         spacing:5
                         content: [whereis,location,browser]
        public override function create():Node{
            return face;
    }

    thanks for your reply but I need more specific operation.
    maybe I am not very clear about the problem one. I mean when I run the code in standard mode, if I click the browse button, a window will pop out and I can choose a video file from my local harddisk. but if I run it in "web start execution" mode and "run in browser" mode. the browse button make no response when I click it.
    Edited by: Phoenix2006 on Feb 8, 2010 2:35 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:37 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:42 PM

  • Ipod 4th gen volume buttons not working. Volume bar not showing in music or video apps, not a speaker problem as this works fine when testing built in alarm tones???

    Ipod 4th gen volume buttons not working. Volume bar not showing in music or video apps, not a speaker problem as this works fine when testing built in alarm tones???

    Have you tried the standard fixes:
    - Reset:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Restore the iPod from backup via iTunes
    - Restore the iPod to factory defaults/new iPod.
    If still problem you likely have a hardware problem and an appointment at the Genus Bar of an Apple store is in order.

  • IPod touch 5th gen. Home button stuck and power button not working! Please help!

    I have an iPod 5th Generation and the home button is jammed down! It felt sticky earlier but now it's stuck down. I used it when the home button wasn't working and had to use my notifications to change from app to app (as I didn't know about assistive touch). I turned it off, but now the power button is no longer responsive! The button isn't stuck, but it doesn't work anymore. It was working fine before, but now it won't respond. Please help!

    Try:
    http://snapguide.com/guides/calibrate-your-home-button/?utm_expid=69945963-15
    fix for Home button
    iPhone Home Button Not Working or Unresponsive? Try This Fix
    - If you have iOS 5 and later you can turn on Assistive Touch it add the Home and other buttons to the iPods screen. Settings>General>Accessibility>Assistive Touch
    - If not under warranty Apple will exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    You can do it an an Apple store by:
    Apple Retail Store - Genius Bar
    or sent it in to Apple. See:
    Apple - Support - iPod - Service FAQ
    - There are third-party places like the following that will repair the Home button. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

Maybe you are looking for

  • Ftp error: directory not found

    Am getting the following error from the Filezilla server: +...+ +(000066)11/1/2010 23:39:54 PM - (not logged in) (127.0.0.1)> Connected, sending welcome message...+ +(000066)11/1/2010 23:39:54 PM - (not logged in) (127.0.0.1)> 220-FileZilla Server ve

  • Connect to other schma in same database ?

    Hi guy's , im in database AAA it has 3 schema's x , y, z , i loged in to x schema and querying the objects in same schema, i requried to query other schema objects in x schema itself, i do know the passwords of them . the table im querying is select

  • Attachment indicator in an FI document

    Hi, In my current project for every FI document created the end user needs to attach a scanned pdf document. My query is that they want a feature where in they can trace that every document cretated in the system has this attachment... Is there any s

  • Ipod nano in recovery mode?

    Hi I recently purchased an ipod nano (3rd generation), I downloaded itunes onto my pc using windows XP, when I connected my ipod to my pc to transfer songs, itunes came up with the following message: "itunes has detected an ipod in recovery mode. You

  • STO with delivery from multiple plant

    Hi, My client requirement is for many-to-one STO. e.g. Some material is sent from Plant A and plant C to plant B. All the plants are in same company code. 1. I have cretaed vendor VA (and assigned plant A to it in purchasing org data) and VC (and ass