HT3302 I just need to know how to replace a cracked screen with out a warrenty?

I just need to know how to replace the screen on an Ipod touch that is not under warrenty.. Can anyone help?

From the article you linked:
http://www.apple.com/support/ipod/service/faq/

Similar Messages

  • I just need to know how you get an iTunes library off the original hard drive of a mac and onto an external hard drive and still have it work normally?

    I just need to know how you get an iTunes library off the original hard drive of an imac and onto an external hard drive and still have it work as it normally would?

    http://support.apple.com/kb/HT1449

  • Hi, just need to know how to get my music, video, pictures and apps form my iPhone to my new laptop as the old computer, which I used before was stolen. I only have my phone left and if I try to conect it to my new laptop it's trying to delete everything.

    Hi, just need to know how to get my music, video, pictures and apps form my iPhone to my new laptop as the old computer, which I used before was stolen. I only have my phone left and if I try to conect it to my new laptop it's trying to delete everything.

    I have also noticed all my settings won't stay set, example....I removed the check mark from "third party cookies", the when I close Firefox and reopen the check mark is back, also my tool bar has screwed up....can't reset, been having trouble the up grade.

  • I had purchased an audio book from itunes on my iPad and when I synced my iPad with my computer, my audiobook disappeared. I have already purchased this audiobook, so now I just need to know how to get it back because it is not on iPad anymore.

    I had purchased an audio book from itunes on my iPad and when I synced my iPad with my computer, my audiobook disappeared. I have already purchased this audiobook, so now I just need to know how to get it back because it is not on iPad anymore. I don't think the audiobook was backed up to icloud but I have the receipt to prove I purchased it. Is there anyway I can get it back?

    "If I purchase an audio book in iTunes on my iPad why can't I listen to it on my Mac? "
    You can.  Why do you think you cannot?
    If you purchased it on your ipad, then you would have to transfer it to your computer. File>Devices>Transfer Purchases.
    You can then listen to it on your computer.

  • Hi I just need to know how I can upload folders of photos to icloud and send a link to clients as in Mobile Me, I'm a professional photographer so it needs to be as good as the mobile me. I've been looking at alternatives but need to be able to send links

    Hi I just need to know how to upload folders of images to iCloud and send links to clients from my iphone when on location as was simple with MobileMe. I'm a professional photographer so it needs to be as easy as it was under Mobile Me. I've looked at several alternatives but they don't seem to give the same facilities of uploading folders from the Mac then sending the link from the iphone. It seems that the iCloud does n't offer this facility so any ideas would be appreciated.
    Thanks

    Welcome to the Apple community.
    If you are doing this from your phone (as you mention) then you can use the new iPhoto Photo Journal feature to do this.
    Unfortunately, iCloud does not offer equivalents to Mobile Me’s iDisk, Gallery or Web Hosting services. You will need to find a third party solution to replace these services. You might consider DropBox, SugarSync, MediaFire or any other service that offers online storage.

  • HT1338 I made a movie in iMovie and want to make copies.  I lost the iMovie file, I just need to know how to copy a disk.  HELP!

    I made a movie in iMovie and want to make copies.  I lost the iMovie file, I just need to know how to copy a disk.  HELP!

    Not sure if you really mean disk (HD) or disc (CD/DVD).  Check out this YouTube video

  • I had to wipe out my laptop, I am waiting to get my serial number back. I need to know how I download Logic Pro 9 with the codes I already have.

    I had to wipe out my laptop, I am waiting to get my serial number back. I need to know how I download Logic Pro 9 with the codes I already have.

    If you bought the boxed set of Logic Studio 2.0  which includes LP9, then you cannot  download it. You must use the disks that came as part of the boxed set... to install from.
    If you bought the App Store version of Logic Pro 9 then go to the Mac App Store App,  Sign into the Store using the same Apple ID you used to purchase LP originally, look under the Purchase Tab and you shouldl find LP9 ready and waiting for you to download and install.

  • I need to know how many conections can i have with a license of adobe medie server proffesional

    i need to know how many conections can i have with a license of adobe medie server proffesional
    i need some help. thanks

    I don't have apps on my phone so i can;t do anything

  • I just need to know how to "close" firefox.

    I am hitting the red X in the upper right hand corner of my screen and although it seems to close everything, when i go to reopen firefox, it says its already open. I need to know how to close the firefox out completely....I dont want to delete it, just close.

    The X on the title bar just closes that one window as it does not close the Firefox browser unless that was the only window for anything Firefox related open.
    To close Firefox completely go to "File->Exit" if Menu bar is visible or by orange Firefox button -> Exit.

  • HT3302 i just want to know how much is going to cost me to repair the screen

    i just want to know how much is going to cost me to repair the screen

    Type "ipod repair prices" into the google search bar and look for yourself.

  • Just need to know how to move contents of a folder PLEASE :)

    Hi all Need to know something?.
    I want to move the contents of a folder to another.
    I am using this code to move a file to another but how do I move the whole contents to another.
    public void moveBack() {
        try {
          selectedFileName = (String) OrdersUploadFileNameHashtable.get(
              (String) jOrdersUploadList1.getSelectedValue());
          ShortFileName = (String) jOrdersUploadList1.getSelectedValue();
          if (!jOrdersUploadList1.getSelectedValue().equals(null)) {
            File w = new File(EpodConstants.ORDERS_TO_UPLOAD_DIR, selectedFileName);
            File f = new File(EpodConstants.ORDERS_PENDING_DIR, selectedFileName);
            if (w.renameTo(f))
              System.out.println("ok");
            else {
              JOptionPane.showMessageDialog(null,
                                            "No Order Selected",
                                            "You must Select a Order to Move",
                                            JOptionPane.INFORMATION_MESSAGE);
        }

    here's my solution:
          * Copy a file. The destination file name can be different from the source file name. Rules:
         * <ul>
         * <li>If destination is an existing directory, <i>source</i> is copied to this directory
         * <li>If destination is an existing file, this file is overwritten.
         * <li>If destination is a file name with leading path, leading path is created.
         * <li>If destination is just a file name, path of <i>source</i> is used as destination.
         * <li>If destination ends with a File.separatorChar, it is created as the destination directory.
         * </ul>
          * @param source Name of file (incl. path) to copy.
          * @param destination Name of destination file to copy to.
         * @throws IOException
         * @see <a href="http://java.sun.com/docs/books/performance/1st_edition/html/JPIOPerformance.fm.html">I/O Performance</a>
        public static void copyFile(String source, String destination) throws IOException {
            if (source != null && destination != null) {
                File sourceFile = new File(source);
                if (sourceFile.exists() && sourceFile.isFile()) { //no directory?
                    File destFile = new File(destination);
                    if (destFile.exists()) {
                        if (destFile.isDirectory()) { //1. existing destination directory
                            destFile = new File(destination + File.separatorChar + sourceFile.getName());
                        } else { //2. existing destination file
                            //ignore, overwrite existing destination file
                    } else { //destination does not exist
                        int index = destination.lastIndexOf(File.separator);
                        if (index > -1) { //3. file has leading directory path or is directory
                            if (index == (destination.length() - 1)) { //destination is directory?
                                File destDir = new File(destination);
                                destDir.mkdirs();
                                destFile = new File(destDir + sourceFile.getName());
                            } else { //destination is directory + file
                                String destDir = destination.substring(0, index + 1);
                                File destDirFile = new File(destDir);
                                if (!destDirFile.exists()) {
                                    destDirFile.mkdirs(); //create destination directory tree
                        } else { //4. file has no leading directory path
                            destFile = new File(sourceFile.getParent() + File.separatorChar + destination);
                    BufferedInputStream in = null;
                    BufferedOutputStream out = null;
                    try {
                        in = new BufferedInputStream(new FileInputStream(sourceFile));
                        out = new BufferedOutputStream(new FileOutputStream(destFile));
                        int c;
                        while ((c = in.read()) != -1) { //read next byte of data until end of stream is reached
                            out.write(c);
                        out.flush();
                    } finally {
                        if (in != null) { in.close(); }
                        if (out != null) { out.close(); }
                }//else: source file does not exist or is a directory
            }//else: no input values available
        }//copyFile()
          * Copy all files of a directory to a destination directory. If the destination file does not exist, it
         * is created. If copy of one file throws an exception, copy of remaining files continue, so that at least
         * all files without exceptions get copied.
          * @param sourceDir Source directory to copy all files from.
          * @param targetDir Destination directory to copy all files to.
         * @throws IOException
        public static void copyFiles(String sourceDir, String targetDir) throws IOException {
            IOException exception = null;
            if (sourceDir != null && targetDir != null) {
                File sourceFile = new File(sourceDir);
                if (sourceFile.exists() && sourceFile.isDirectory()) {
                    File targetFile = new File(targetDir);
                    if (!targetFile.exists()) {
                        targetFile.mkdirs();
                    //for all files of source dir do:
                    String[] filesToCopy = sourceFile.list();
                    int count = filesToCopy.length;
                    for (int i = 0; i < count; i++) { //for each source file do
                        String fileName = filesToCopy;
    File file = new File(sourceDir + File.separatorChar + fileName);
    if (file.isFile()) {
    try {
    copyFile(sourceDir + File.separatorChar + fileName, targetDir);
    } catch (IOException ioe) {
    exception = ioe;
    } else { //file is directory
    try {
    copyFiles(sourceDir + File.separatorChar + fileName, targetDir + File.separatorChar + fileName);
    } catch (IOException ioe) {
    exception = ioe;
    }//next file
    }//else: source directory does not exist
    }//else: input values not available
    if (exception != null) {
    throw exception;
    }//copyFiles()

  • Pictures that I have stored on my laptop are fine but all of the pictures online are blurry and I just need to know how to fix this problem?

    This has just started happening recently but all the pictures online look very pixely. I've started to notice this on facebook and other websites like Bing.com. I can't figure out what the problem is and have tried messing with my screen resolution but nothing seems to be working.

    I am having the same problem after ugrading to Mountain Lion 10.8.4.
    I found on the net a guy who says to do the following "log in as root and trash the old user icon images file. Then copy the folder froma ML factory disk image and restart". I can't get back to the original post-- tried buy it no longer seems to be there.
    OK-- I don't understand how to do any of that.  I need to know: 1.  what is the name of the folder I am supposed to trash what is the path to get to it. 2. Where do I get the new folder to replace it with and where do I put it.  
    I would really appreciate help. Thank you.

  • I need help! how can i use my phone with out sim

    how could I manage the fact my iPhone 5s wont activate with out sim card? I just want to use it as a ipod!

    You can use old iPhone as iPod, but first you need SIM card to activate it.
    Insert a SIM card into the phone and connect it your computer with iTunes open and follow the activation assistant to activate the iPhone. Once the iPhone have been activated, remove the SIM card.
    Know more at:
    Using an iPhone without a wireless service plan - Apple Support
    <Edited by Host>

  • I have lost my toolbar and task bar. I have tried all the sugestions on this site to no avail. I don't know how to try a system restore with out them.

    I was enlarging pictures on Facebook to full screen. When i went to move on. All my tool bars and my task bar have disappeared. I have tried all the suggestions on this site to no avail. I don't know how to do a system restore without my task bar, and don't want to lose my book marks. Please help, i can't grt to my important favorite sites.

    Can you launch a new window (Ctrl+n for a normal window, Ctrl+Shift+p for a private window) that has the usual complement of toolbars? If a new window also is missing bars, try using the View menu > Toolbars list to restore them. If the classic menu bar is not displayed, usually tapping the Alt key or the F10 key will show it temporarily.

  • I just need to know how to make a multi page document from scans!  :(

    I have 4 scanned, pre-cropped pages from a recent graduation ceremony ready to go.  Acobat will let me scan them in but makes them 4 separate PDF documents.  Once I go into any of those I can see no way to add pages or combine the 4 PDFs into one big four page PDF.  I searched these forums... but all the questions I have found have been from more experienced users asking more advanced questions.
    Sorry to ask such a beginner question here. 

    Well actually my adobe reader gave me the option File>Create Adobe PDF Using Acrobat.com but the website doesn't seem to allow for anything other than the most basic PDF construction/conversion unless you upgrade to Acrobat.com Premium.  It will be cheaper in the long run for me to just buy the standalone version of Acrobat since I don't need the features like Shared Workspace, etc.  But yeah, I follwed a link from reader and that's how I got this far. 

Maybe you are looking for