Please help dont know what to do send it or keep it

guys i need help when ever i turn on and off my ipod i always hear a popping sound in my head phones i tried other headphones but same problem and then suddenly the volume of the headphone that came with my ipod suddenly changed like the volume isnt equal other one is louder than other one. what should i do?

For one thing I always hear I little popping sound when I turn my iPod off or on and thats normal, but if it's big and the volume is messing up then try taking a fine Q-Tip and cleaning the headphone jack hole with it. Hope that works.

Similar Messages

  • I download a file in the torrent site which is MP4 but unfortunately i tried to delete it but i can not. but all the files that i have is easily to delete only MP4 files i can't delete in the download foldeer please try to help dont know what to do please

    i download a file in the torrent site which is MP4 but unfortunately i tried to delete it but i can not. but all the files that i have is easily to delete only MP4 files i can't delete in the download foldeer please try to help dont know what to do please

    Well you can sync your iPod/iPhone to yur computer or laptop then take the photos off of your iPod like taking photos of of a SD card (from a normal camera) or off of a USB..! Good Luck. plz tick this saying This solved my question if it helps you.

  • HELP dont know what to do!!

    Hi, Just wondering if anyone can help! I really dont know what to do! I am trying to restore my ipod and it says when i click retore 'firm wire disk write error' i really dont know what do about that just wondering if anyone knows here?? Thanks

    The thing is, that you must try the suggestions in that article. There are other things that you can try in this post also.
    http://discussions.apple.com/message.jspa?messageID=1533747#1533747
    They're not easy to follow if you're not computer savvy. Do you have someone at home who can assist and take you through the steps?
    There is also a simple thing you can try such as trying another port on your computer. Some ports are not connected direct to the motherboard and do not recognize the iPod as well as those that are. Reset the iPod each time you connect it to another port.
    The error means that the computer is having a hard time writing data to the iPod's hard drive, and there could be many reasons for this.
    How about taking the iPod to an Apple store? Isn't there one at the Trafford centre?

  • Help Dont know what this code is doing ?????

    i dont know what this code is doing from the for part can some one explain it for me
    i am confused starting at the for statement thanks for the help
    public class LeastToGreatestPlaceHolder {
      public static void main(String []args) {
         int [] myArray;
         myArray = new int[3];
         myArray[0] = 6;
         myArray[1] = 7;
         myArray[2] = 9;
        for (int i = 0; i < 2 ; i++){     // confused here
         for(int j = 1; j < 3; j++) {
           int placeholder = myArray[j];
           if (myArray[i] > myArray[j]) {
             myArray[j] = myArray;
    myArray[i] = placeholder;
    System.out.print(myArray[0]);
    System.out.print(myArray[1]);
    System.out.print(myArray[2]);

    Have you tried running the program and seeing what it outputs?
    Have you considered writing out the state of the array and running through the code by hand?
    I'll give you a [head start|http://java.sun.com/docs/books/tutorial/java/nutsandbolts/for.html].

  • Need help; dont know what this feature is called

    I once read about this feature in Dreamweaver where you could send an editable version of a web page (or pages) to a client to edit. They could make the revisions and send them back to you... and I dont think the client has to have Dreamweaver installed to make the edits. Does this sound like anything that Dreamweaver has?
    Thanks.

    If you build the site to include some form of Content Management System (CMS), client could log-in to the site and make limited changes to text and images from their web browser.   I don't know if that is what you're looking for...
    Some popular CMSs:
    Cushy CMS
    Content Seed
    WordPress
    Drupal
    Joomla
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Array help, dont know what im doing

    All i am trying to do is read in one line of test from an input file and then tokenizer the fist line and place each string char into an index in list format into an array
    Ex, TFTFTFTFT
    Array =
    T
    F
    T
    F
    T
    F
    T
    F
    T
    So later i can make another array and then compare the two , please dont use super complex code still learning , thanks
    import java.io.*;
    import java.util.*;
    public class History
         public static void getAnswers(BufferedReader inp, String[] answers) throws IOException
              int i;
              StringTokenizer token;
              String str;
              str = inp.readLine();
              token = new StringTokenizer(str);
              for(i = 0; i < answers.length; i++)
                   answers[i] = token.nextToken();
         public static void printArray(String[] answers)
              int index;
              for(index = 0; index < answers.length; index++)
                   System.out.println(answers[index] + " ");
    import java.io.*;
    import java.util.*;
    public class HistoryTest
         public static void main(String[] args)throws FileNotFoundException,IOException
               BufferedReader inp = new BufferedReader(new FileReader("a:\\Input.txt"));
             PrintWriter outfile = new PrintWriter(new FileWriter("a:\\outfile.out"));
             History hs = new History();
              String[] answers = new String[20];
              hs.getAnswers(inp, answers);
              hs.printArray(answers);

    is this allowed, My answer array prints out fine my other two arrays do not, this is input file
    TFFTFFTTTTFFTFTFTFTF
    ABC276 TTFFTFTFTFTTFFTTFFTF
    HTYD22 TTFFFTFTFTFFFFTFTFTF
    HDHJHH TTTTTTTTTTTTTTTTTTTT
    FHSDYG FFFFFFFFFFFFFFFFFFFF
    import java.io.*;
    import java.util.*;
    public class History
         public static void getAnswers(BufferedReader inp, int[] answers) throws IOException
              String str;
              int i;
              for(int g = 0; g < answers.length; g++)
                   answers[g] = inp.read();
         public static void printArray(int[] x)
              int index;
              for(index = 0; index < x.length ; index++)
                   System.out.println(x[index] + " ");
         public static void getRestofInfo(BufferedReader inp, String[] student, int[] responces) throws IOException
              StringTokenizer tokenizer;
              String strstudent;
              strstudent = inp.readLine();
              tokenizer = new StringTokenizer(strstudent);
              //can use student.length for both array termination varible since student # must == responces
              for(int i = 0; i < student.length; i++)
              {     student[i] = tokenizer.nextToken();
                   responces[i] = Integer.parseInt(tokenizer.nextToken());
    } import java.io.*;
    import java.util.*;
    public class HistoryTest
         public static void main(String[] args)throws FileNotFoundException,IOException
               BufferedReader inp = new BufferedReader(new FileReader("a:\\Input.txt"));
             PrintWriter outfile = new PrintWriter(new FileWriter("a:\\outfile.out"));
             History hs = new History();
              int[] answers = new int[20];
              int[] responces = new int[20];
              String[] student = new String[20];
              hs.getAnswers(inp, answers);
              hs.printArray(answers);
              System.out.println();
    } 84
    70
    70
    84
    70
    70
    84
    84
    84
    84
    70
    70
    84
    70
    84
    70
    84
    70
    84
    70
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    Press any key to continue . . .

  • Device will not connect to Itunes.  Please help if know what to do.

    I have 3, 4th generation Itouches and 1 of them will not connect to itunes and reconize the device on the left side of screen.  The other 2 I have doesn't have any problems doing it. I have tried everthing from updates installed, resetting itouch, going threw all the check points and diagnostics and nothing is working. Anyone has any suggestions on how to fix this problem I would appreciate it.
    thanks!

    Try another computer to eliminate a hardware issue.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • Help! I was downloading apps and my 4th generation froze, so I turned it off and restarted it twice. And it is just on the screen with the apple i dont know what to do. Please help!

    I was downloading apps that i deleted and my 4th generation froze. So i turned it off and restarted it and nothing happened. It is just showing me the apple screen after you restart it. I dont know what to do please help!

    Try:
    - iOS: Not responding or does not turn on
    - If not successful and you can't fully turn the iPod fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • SOME PLEASE HELP ME I DONT KNOW WHAT TO DO.....(M-audio)

    SOME PLEASE HELP ME I DONT KNOW WHAT TO DO..... SO I RECIEVED MY M-AUDIO MOBILEPRE SOUNDCARD. I CONNECTED THE USB TO MY MACBOOK (2009-2010) AND I CAN CHANGE MY COMPUTERS OUTPUT TO THE M-AUDIO MOBILEPRE... SO IT SHOWS ITS CONNECTED. NEXT I DOWNLOAD THE M-AUDIO MOBILEPRE DRIVER IT CAME WITH IN THE BOX AFTER THAT IT SHOWS ITS CONNECTED ALL GOOD....BUT WHEN I DOWNLOAD THE DRIVER "M-AUDIO MOBILE PRE USB" I PLUG IN MY SPEAKERS AND IT SAYS "UNABLE TO CONNECT TO M-AUDIO MOBILEPRE. IS IT TURNED ON?" AND ITS OBVIOUSLY TURNED ON AND CONNECTED......SO MY COMPUTER READS THE SOUNDCARD BUT IT WONT LET ME CONFIGURE THE SOUND SETTINGS IN THE "M-AUDIO MOBILEPRE USB" DRIVER ....WTH IS M-AUDIO MOBILEPRE THE SAME THING AS M-AUDIO MOBILEPRE USB???? IF SO HOW DO I CONFIGURE THE SOUND SETTINGS IN MY COMPUTER!!!

    Contact M-Audio support, I suspect they will have further information that you need rather than this forum.

  • Everytime i try to download itunes it says rolling back action and error . i dont know what to do please help . P.S. i have windows 8

    everytime i try to download itunes it says rolling back action and error . i dont know what to do please help . P.S. i have windows 8

    Hello there Unicornbarf534,
    Thank you for using Apple Support Communities.
    It sounds like you are unable to successfully install iTunes. I recommend the troubleshooting instructions in this article named:
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Here is a general outline of where the troubleshooting will take you:
    General installation troubleshooting
    1. Empty your Temp directory and restart
    2. Completely remove iTunes and related components
    3. Install the latest version of iTunes
    Additional troubleshooting
    After performing each of the steps below, you will need to completely remove iTunes and related components and then install iTunes again to determine whether the issue is resolved.
    1. Make sure you have administrator account access
    2. Make sure your folder names don't contain strange characters
    3. Get the latest Windows updates
    4. Disable other conflicting software
    Additional Information
    If you only need to install QuickTime, or if iTunes installs but QuickTime installation did not complete
    Try downloading and installing the standalone version of QuickTime from http://www.apple.com/quicktime/download/. Be sure you download the version that does not include iTunes.
    If the steps outlined in this article don't help, you may be able to find a solution to your issue by searching the Microsoft support website.
    All the best,
    Sterling

  • My macbook is blocked by pin code, please help, I dont know what to do!

    My macbook is blocked by pin code, please help, I dont know what to do!

    When you enter iTunes on the PC and the iPod icon pops up, right click on it and select "Options". Then click on the Music tab. Once you're in the Music tab check the box that says "Enable Disc Use". This means that you've just turned your iPod into a portable hard drive. Click "Ok" and move your iPod from the PC to the Mac. From there, your iPod should show up on the Mac's desktop right under the Hard Drive icon. Click "File" at the top of the screen and select "Add to Library". Find the iPod hard drive in the selection screen and choose the music folder that's on it. Then just click Ok and all your music will be downloaded. That should do the trick, but you might want to do a Google search on the subject to get a second opinion. Best wishes!

  • HT5313 why i cant update it ... always saying NO PERMISSION please help me dont know what to do wifi connect also is down and slow

    please help me since i update my os snow leopard to os lion its seem to be nice and operation is very well ... after a month its gives trouble i cant update it and cant watch video from youtube , cant attach any files wifi is up and down with my airport express? dont know what to do now ... please help me and advise pls

    Read here  >   iOS: Understanding the SIM PIN

  • My ipod wont play music on my ihome and I know it is not the ihome because I put my brothers ipod on it and it worked I dont know what is going on please help me

    my ipod wont play music on my ihome and I know it is not the ihome because I put my brothers ipod on it and it worked I dont know what is going on please help me

    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings

  • I bought an iphone 5 from one of my friends and unluckily I had yet lost his contact, I had update this iphone to IOs 7 and now it's be locked at iCloud because there was no password . Actually I dont know what I must do for its. Experts, please help me!

    I bought an iphone 5 from one of my friends and unluckily I had yet lost his contact, I had update this iphone to IOs 7 and now it's be locked at iCloud because there was no password . Actually I dont know what I must do for its. Experts, please help me!

    The friend who sold it to you needed to clear his Apple ID off the phone before he sold it to you. Of course if it wasn't his phone in the first place then he could not do so. He is your friend but you don't know where he is?
    There is nothing that will help you short of getting the password for the Apple ID from your friend. If you cannot obtain that there is no workaround.

  • HT4623 i was upgrading my ipad, for atleast 4 hours.. the screen remains itunes.. and i dont know what to do.. please help me

    i was upgrading my ipad, for atleast 4 hours.. the screen remains itunes.. and i dont know what to do.. please help me

    If you have an iPad 1, the max iOS is 5.1.1. For newer iPads, the current iOS is 6.1. The Settings>General>Software Update only appears if you have iOS 5.0 or higher currently installed.
    iOS 4: Updating your device to iOS 5 or Later
    http://support.apple.com/kb/HT4972
    How to install iOS 6
    http://www.macworld.com/article/2010061/hands-on-with-ios-6-installation.html
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
    If you are currently running an iOS lower than 5.0, connect the iPad to the computer, open iTunes. Then select the iPad under the Devices heading on the left, click on the Summary tab and then click on Check for Update.
    Tip - If connected to your computer, you may need to disable your firewall and anitvirus software temporarily.  Then download and install the iOS update. Be sure and backup your iPad before the iOS update. After you update an iPad (except iPad 1) to iOS 6.x, the next update can be installed via wifi (i.e., not connected to your computer).
     Cheers, Tom

Maybe you are looking for