Dont know what is wrong

I connect my ipod nano to my laptop and it charges. But it is not being updated in itunes. None of the new songs that I put on itunes are being updated onto my ipod. Itunes is not recognizing the ipod. I used to plug in my ipod and itunes would pop up and it would update automaticly but now I have to click on itunes to get it started. What can I do?

See if any of these articles help.
Windows XP cannot detect an iPod.
USB drivers are not installed properly or are out of date.
iTunes 7 doesn't recognize the iPod.
iPod not recognized on a Windows laptop.

Similar Messages

  • My ipad automatically jumps from one app to other. it automatically types things randomly. i dont know what it wrong. Have shown it in a service center. they have done factory reset but problem still persist.

    my ipad automatically jumps from one app to other. it automatically types things randomly. i dont know what it wrong. Have shown it in a service center. they have done factory reset but problem still persist.

    Likley a defective touchscreen.

  • Errors dont know what is wrong!

    Errors dont know what is wrong!
    import java.awt.*;
    import javax.swing.*;
    import java.awt.geom.*;
    import java.awt.event.MouseListener;
    import java.awt.event.*;
    public class SquareShape extends Piece
    {private Rectangle2D.Double _square1, _square2, _square3, _square4;
    private int xLoc=80, yLoc=0, size=19, space=1;
    private smallPiece [][] rectangle;
    public SquareShape(smallPiece[][] rect)
    {super(Color.red);
    _square1 = new Rectangle2D.Double(xLoc,yLoc,size,size);
    _square2 = new Rectangle2D.Double(xLoc,yLoc+size+space,size,size);
    _square3 = new Rectangle2D.Double(xLoc+size+space,yLoc,size,size);
    _square4 = new Rectangle2D.Double(xLoc+size+space,yLoc+size+space,size,size);
    rectangle= rect;}
    public void setXLocation(int x)
    {_square1.setFrame(xLoc+x,yLoc,size,size);
    _square2.setFrame(xLoc+x,yLoc+size+space,size,size);
    _square3.setFrame(xLoc+size+space+x,yLoc,size,size);
    _square4.setFrame(xLoc+size+space+x,yLoc+size+space,size,size);
    xLoc=xLoc+x;}
    public void setYLocation(int y)
    {_square1.setFrame(xLoc,yLoc+y,size,size);
    _square2.setFrame(xLoc,yLoc+size+space+y,size,size);
    _square3.setFrame(xLoc+size+space,yLoc+y,size,size);
    _square4.setFrame(xLoc+size+space,yLoc+size+space+y,size,size);
    yLoc=yLoc+y;}
    public boolean moveOneStep()
    {if(_square2.getY()+size>=440||_square4.getY()>=440)
    return false;
    else
    if(rectangle[21-((int)(_square2.getY()+1))/20][9-((int)(_square2.getX()+1))/20]!=null || rectangle[21-((int)(_square4.getY()+1))/20][9-((int)(_square4.getX()+1))/20]!=null)
    {return false;}
    else
    {setYLocation(20);
    return true;}}
    public int[][] getLocs()
    {int[][] locs= new int[4][2];
    locs[0][0]= ((int)(_square1.getY()+1))/20;
    locs[0][1]= ((int)(_square1.getX()+1))/20;
    locs[1][0]= ((int)(_square2.getY()+1))/20;
    locs[1][1]= ((int)(_square2.getX()+1))/20;
    locs[2][0]= ((int)(_square3.getY()+1))/20;
    locs[2][1]= ((int)(_square3.getX()+1))/20;
    locs[3][0]= ((int)(_square4.getY()+1))/20;
    locs[3][1]= ((int)(_square4.getX()+1))/20;
    System.out.println(locs[0][0]+" "+locs[0][1]+" "+locs[1][0]+" "+locs[1][1]+" "+locs[2][0]+" "+locs[2][1]+ " "+locs[3][0]+" "+locs[3][1]);
    return locs;}
    public boolean contains(int x, int y)
    {if(_square3.contains(x,y)||_square4.contains(x,y))
    return true;
    else
    return false;}
    public void fill(Graphics2D g2)
    super.fill(g2);
    g2.fill(_square1);
    g2.fill(_square2);
    g2.fill(_square3);
    g2.fill(_square4);}
    import java.awt.geom.*;
    import java.awt.*;
    import javax.swing.JPanel;
    import javax.swing.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyEvent;
    import java.awt.event.*;
    public class TetrisPanel extends JPanel
    {private Factory _pieceFact;
    private Piece currentPiece;
    private Timer _timer;
    private int Interval =500;
    private smallPiece [][] locationArray;
    public TetrisPanel()
    {setBackground(Color.white);
    locationArray = new smallPiece[22][10];
    _pieceFact = new Factory(locationArray);
    currentPiece = _pieceFact.newPiece();
    _timer = new Timer(Interval, new TimerListener());
    _timer.start();
    public void paintComponent(Graphics g)
    {super.paintComponent(g);
    Graphics2D g2 = (Graphics2D)g;
    currentPiece.fill(g2);
    for(int row =0; row<22; row++)
    for(int col =0; col<10; col++)
    if(locationArray[row][col]!=null)
    {locationArray[row][col].fill(g2);}}
    public void createPiece()
    {currentPiece =_pieceFact.newPiece();
    repaint();}
    public class TimerListener implements ActionListener{
    public void actionPerformed(ActionEvent e)
    if(currentPiece.moveOneStep()==true)
    {repaint();
    currentPiece.getLocs();}
    else
    {int[][]ar = currentPiece.getLocs();
    for(int rows=0; rows<ar.length; rows++)
    {locationArray[22-ar[rows][0]][10-ar[rows][1]] = new smallPiece(ar[rows][1]*20,ar[rows][0]*20, currentPiece.getColor());}
    createPiece();
    repaint();}
    }the error
    Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 22
         at TetrisPanel$TimerListener.actionPerformed(TetrisPanel.java:51)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 22
         at SquareShape.moveOneStep(SquareShape.java:38)
         at TetrisPanel$TimerListener.actionPerformed(TetrisPanel.java:45)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

    Errors dont know what is wrong!You read the stack trace from the top down, looking out for the first line that refers to your code.
    java.lang.ArrayIndexOutOfBoundsException: 22This means that you are using something as an array index (some variable, perhaps) and it has a value of 22, but the array itself is not that big.
    at TetrisPanel$TimerListener.actionPerformed(TetrisPanel.java:51This tells you exactly where the bad array access is taking place. Only you know which line 51 is - and it's good form to tell the rest of us when you post - but, at a wild guess, I'd say it was that line within the for loop that assigns new values to the locationArray.
    Use System.out.println() to check the values of the variables (or expressions) you use to access the array. Also check the length of the various arrays involved.
    (If I were you, I'd consider using a bit more indentation in your code. Especially where constructs are nested.)

  • I just installed photoshop but I dont know what is wrong it keep shutdown itself.

    dunno whats wrong. keep shutdown itself.

    Due to the current unavailability of clairvoyants and mind-readers in the forum, we respectfully request you supply sensible, complete details.
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • HT5569 hi my question is about my iphone 5 is not working properly i have installed iso 7 latest version but dont know what is wrong with it?

    my starts siri by it self and when i desable siri so voice control starts talking even i didn't touch my fone its operating by its self in the middle of talking on fone or not using it. sometimes the home key is not working at all. it stuck and i have to rebot or restart it again. i don't know its technical problem or software problem. i bought this iphone 5 on applestore.com in january 2013. this problem was started in may 2013 but was not so often and from september upto now its irrateting me so badly. sometimes it doesn't work at all and sometimes it didnt recognize my apple ID to sign in app store or itunes.
    how fix this problem any one can tell me plzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
    thank you

    Hi Karneet,
    Thanks for visiting Apple Support Communities.
    See this articles for some troubleshooting help, if your iPhone isn't detected by iTunes or Windows:
    iPod: Appears in Windows but not in iTunes
    http://support.apple.com/kb/ts1363
    iPod not recognized in 'My Computer' and in iTunes for Windows
    http://support.apple.com/kb/ts1369
    Best,
    Jeremy

  • I Dont Know What's Wrong .

    Ok , so I got my iPhone 5 about a week ago . And my friend has had her iPod touch 4th generation for a while . So she told me to use iMessage . She helped me turn it on and everything . And also told me what should happen like how the "SEND" button should be the color Blue when I use iMessage . So I turned it on and got it set . But the "SEND" button doesnt turn Blue . And she cant send messages to my email address . What Can I Do ?

    http://support.apple.com/kb/HT5538
    http://support.apple.com/kb/TS4268
    Check those.

  • Oh man i dont know whats wrong.... plz help urgent...

    i dont know whats wrong with my n900.... a couple of weeks before i tried to install nitroid gingerbread on my n900.... i did exactly what it said it was almost complete but the last step didnt complete so i left it like that..... i was using my mobile fine until one day i restarted my phone... when  it started it showed me 2 options (dont remember what the options were) although the 2nd one was power kernel something like that.... i chose 1st option after that it turned off when i startit again only nokia logo comes and it turns off by himself.... i thinki bricked my fone... but y didnt it happen when i was trying to install nitroid... plz help any way to fix it....
    P.S. I cant flash it either.. it doesnt go to usb mode anymore neither does it charge....
    Solved!
    Go to Solution.

    you could try to do the commands in flasher, connect the device while it is off and holding the U button down and see if the flasher will see it.

  • My computer keeps freezing and i dont know whats wrong, or why it keeps freezing

    my computer keeps freezing and i dont know whats wrong, or why it keeps freezing

    It's happening on FIrefox too.  It's not a browser issue!  I have tried all, Chrome, FIrefox and IE and it freezes after about 5 minutes sometimes sooner, sometimes you get a little longer, but not much.

  • My iphone isnt turning on or charging i dont know whats wrong with it, can anyone help me?!?!

    i dont know whats wrong with my iphone it wont turn on or charge i dont now what i did wrong please help

    Charge for 15 minutes with the wall or mains adapter. Then hold the HOME and SLEEP buttons until an Apple logo appears. If something other than an Apple logo appears follow the instructions on the screen. If nothing happens after holding for 30 seconds you have a hardware problem.

  • I keep trying to install apps in app store and to buy an in app purchase and i keep getting "AN UNKNOWN ERROR HAS OCCURRED" its happenned since lastnight i dont know whaTS WRONG

    SICE LAST NIGHT I CANT GET ANYTHNG OFF THE APP STORE, MY PHONE HAS 4.3.3 AND IS JAILBROKEN I CONNETED TO AN OPEN WIFI LAST NIGHT BUT I DONT KNOW WHAT HAS BEEN MY DOWNFALL!

    First, turn off your CAPS lock.  Typing in all CAPS is considered screaming/yelling and many will simply ignore your posting.
    Are you currently having issues?  Is it when trying to purchase only on the device?  Are you able to complete purchases via iTunes on your computer?

  • HT201441 the apple ID that i was signed into was deleted and i erased my phone, it says that the apple ID id wrong and now i dont know what to do.

    so i have erased my phone and the apple id i had was with other people and now the apple id was canceled and now it wouldnt let me sign into my phone. I dont know what to do from here?

    http://support.apple.com/kb/PH13695
    http://support.apple.com/kb/ht5818
    http://support.apple.com/kb/ts4515

  • I dont know whats wrong.

    One day my ipod 30g Video stopped working now everytime i plug it into the computer, it wont read the ipod and neither will Itunes, when i plug it in it will either come up with no backlight and it will be a black background with the white apple in the middle or, the white background with a black and white battery with a lightning bolt beside it. I dont know what to do HELP!

    Have you tried to Reset it?
    1. Toggle the Hold switch on and off. (Slide it to Hold, then turn it off again.)
    2. Press and hold the Menu and Select buttons until the Apple logo appears, about 6 to 10 seconds. You may need to repeat this step.
    Tip: If you are having difficulty resetting your iPod, set it on a flat surface. Make sure the finger pressing the Select button is not touching any part of the click wheel. Also make sure that you are pressing the Menu button toward the outside of the click wheel, and not near the center.
    If the above steps did not work, try connecting iPod to a power adapter and plug the power adapter into an electrical outlet, or connect iPod to your computer. Make sure the computer is turned on and isn't set to go to sleep.
    Diane Wordsmith

  • So I have a file on my desktop and I cannot open it, move it to a folder, or delete it from my mac. I dont know what it has in it, and that makes me suspicious. What can I do to remove this unremovable file from my computer? Is it a virus?

    So I have a file on my desktop and I cannot open it, move it to a folder, or delete it from my mac. I dont know what it has in it, and that makes me suspicious. What can I do to remove this unremovable file from my computer? Is it a virus?

    First, I would recommend repairing the hard drive with Disk Utility.
    If that doesn't fix the problem, there's a very dangerous command you can execute in the Terminal.  This is very hazardous, because a simple typo can result in very drastic consequences.  I have seen people erase their entire hard drive by putting a space in the wrong place!  So, please follow the directions I'm going to give you very carefully!
    Open the Terminal, which is found in the Utilities folder in the Applications folder.  In the Terminal, enter the following:
    sudo rm -f
    Make sure to put a space after the "-f"!  Then, drag the troublesome file from the Finder and drop it on the Terminal window.  That should insert the path to the file in the command.  Then go back to the Terminal and press return.  You will be asked for your password, and when you type it, nothing will be shown as a security measure.  Press return again after entering your password.  The file should be deleted.

  • Dont understand what is wrong in code

    Task of my code that movieclip added on stage, change its size - height when change size of browsers(player) window thus height movieclip = height rowsers(player) window.
    That is my code:
    package
    import flash.display.*;
    import flash.display.Sprite;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    import flash.events.Event;
    public class ZhMenu extends Sprite
    public var menubg:MovieClip;
    public function ZhMenu()
    var menubg:  = new menuGrad();
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    stage.addEventListener(Event.RESIZE, onResize);
    this.addChild (menubg);
    menubg.x=0;
    menubg.width = 150;
    menubg.height = stage.stageHeight;
    public function onResize (event:Event):void
    var sh:Number = stage.stageHeight;
    menubg.x=0;
    menubg.width=150;
    menubg.height=sh;
    In the issue MovieClip menubg added on stage but when i change size of window i get error:
    TypeError: Error #1009: It is not possible to cause property or a method referring to object "null".
    at ZhMenu/onResize()
    And menubg dont change its size of course.
    I dont understand what is wrong.
    Plize help me if u know Action Script 3.0 better.

    Because you do not have an instance of the object... open a new fla and try these lines...
    // this will fail
    var menubg:MovieClip;
    menubg.x = 0;
    // this will not fail
    var menubg2:MovieClip = new MovieClip();
    menubg2.x = 0;

  • My ipod is disabled and it says to connect to itunes and i dont know what to do

    my 4 gen. i pod touch say disabled to connect to itunes and i am on itunes and i have logged in and i dont know what to do next

    Connect the iPod to yur computer and restore via iTunes. For how to restore see:
    iTunes: Backing up, updating, and restoring iOS software
    Place the iPod in Recovery mode if necessary to allow the restore.
    For more info see:
    iOS: Wrong passcode results in red disabled screen

Maybe you are looking for

  • Blue screen, impossible to detect, update and restore

    This is basically what happened a wekk ago before my holiday. * tried to update songs, iTunes did not recognize my iPod * got a message in a yellow balloon at the start bar with a HDD error and that I needed to preform CHKDSK (check disk for errors)

  • Purchase order item - avoid delete

    Hi Expert, I have to make a control to avoid the deletion of an item of purchase order. In other word, when the user press the delete button in the item of purchase order, I have to check variable A. If A = 'X' --> avoid delete item, and pop for info

  • Selection Screen Disable fields

    Hi, I have a selection screen with 2 radio buttons and 4 fields.When I select the 2nd radio button the 2nd field gets disabled.If I select the first radio button the 2nd field gets enabled only when I press ENTER.Is it possible that the  field gets a

  • Question on compatibility for replacing top case

    Hi, I'm replacing the top case on my mid-2007 MBP because the trackpad and keyboard have stopped working. I would just replace the cable, but the case has also suffered some serious cosmetic damage which now prevents the laptop from shutting properly

  • If Firefox is active on another user on my desktop, it will not connect with a website for a second user. What is wrong?

    The only other thing I can tell you is that I have brought up a website with firefox on both user accounts on my desktop computer on which the operating system is Windows 7, and I cannot get to a website on the second user account. Also this is a pro