HT1660 I am new to itunes and have no idea how to create an itunes library to down load to my ipod shuffle?

Can anyone help?

Might have helped if you had mentioned what you have managed to do so far.
Have you:
Read any of the basic "I've just bought an iPod" instructions yet?
Installed iTunes on your computer?
Added any music to your iTunes Library? If not, how do you intend to obtain your music, is it from your CDs, or are you buying music, either from the iTunes Store or from any other MP3 retailer?
Do you already have any music on your computer, and if so, what format is it in? Are they MP3 files?
for starters...

Similar Messages

  • Hi.. I have a new apple computer and have no idea how to find stuff on here... Can someone tell me how to find my search history? Thanks

    Hi.. I have a new apple computer and have no idea how to find stuff on here... Can someone tell me how to find my search history? Thanks

    In addition to Japib's suggestion check out
    OS X Yosemite: See your files in the Finder
    OS X Yosemite: Finder preferences
    OS X Yosemite: Ways to quickly see and open items
    OS X Yosemite: Search with Spotlight
    OS X Yosemite: Rename files, folders, and disks
    OS X Yosemite: Folder basics
    OS X Yosemite: Ways to organize files on your desktop
    One more thing:
    Search history is a term generally referring to what sites you have visited via your browser (e.g. Safari)
    To see your Safari search history just open Safari and go to the top menu and select from Show History from the History
    See two pics below

  • I need help I can't remember my iTunes Security Questions and have no idea how to change them just used a $20 gift card

    I need help I can't remember my iTunes Security Questions and have no idea how to change them just used a $20 gift card

    If you have a rescue email address (which is not the same thing as an alternate email address) on your account then you can use that to reset them : http://support.apple.com/kb/HT6170
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will have to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    If your country isn't on that page then try this form and explain and see what they reply with : https://ssl.apple.com/emea/support/itunes/contact.html
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps on this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5620
    Or, if it's available in your country, you could change to 2-step verification : http://support.apple.com/kb/HT5570

  • Help I am a student and have no idea how to sort this program by Product

    First class:
    // CheckPoint: Inventory Program Part 1
    // Display product information
    public class Product1 //declare class
    //declare instance variables
    private int productNumber,
    inStock;
    private String productName; // List of instance variables unique to object
    private double unitPrice;
    //constructor to handle no input and set defaults
    public Product1()
    //constructor to handle input parameters
    public Product1( int number, String name, int stock, double perPrice )
    productNumber = number;
    productName = name;
    inStock = stock;
    unitPrice = perPrice;
    public void setProductNumber( int number ) //stores product number
    productNumber = number;
    public void setProductName( String name ) //stores product name
    productName = name;
    public void setInStock( int stock ) //stores amount of product in stock
    inStock = stock;
    public void setUnitPrice( double perPrice ) //stores the unit price of product
    unitPrice = perPrice;
    public int getProductNumber() //allows a call to retrieve product number
    return productNumber;
    public String getProductName() //allows a call to retrieve the product name
    return productName;
    public int getInStock() //allows a call to retrieve stock info
    return inStock;
    public double getUnitPrice() //allows a call to retrieve unit price
    return unitPrice;
    public double getInventoryValue()
    return ( (double)inStock * unitPrice );
    public String toString()
    return productName + " - " + unitPrice;
    Second Class:
    import java.text.DecimalFormat;
    public class Inventory1
    private final int maxInventory = 30;
    private Product1 items[] = new Product1[ maxInventory ];
    DecimalFormat formatter = new DecimalFormat( "$##,###.00" );
    public void addProduct( Product1 item )
    for ( int i = 0; i < maxInventory; i++ )
    if (items[i] == null)
    items[i] = item;
    return;
    public double getTotalInventoryValue()
    double sum = 0.0;
    for ( Product1 item : items )
    if ( item != null )
    sum += item.getInventoryValue();
    return sum;
    public void displayInventory()
    boolean hasItems = false;
    for ( Product1 item : items )
    if ( item != null)
    hasItems = true;
    System.out.printf( "%8d%12s%11d%13.2f%14.2f", item.getProductNumber() , item.getProductName(), item.getInStock(), item.getUnitPrice(), item.getInventoryValue() );
    System.out.println( "" ); // display space
    System.out.println("");
    Part 3:
    import java.text.DecimalFormat;
    public class InventoryTest1
    static DecimalFormat formatter = new DecimalFormat( "$##,###.00" );
    public static void main( String args[] )
    Product1 item1 = new Product1( 001, "Staples", 5, 2.99 );
    Product1 item2 = new Product1( 002, "Books", 10, 15.00 );
    Product1 item3 = new Product1( 003, "Printers", 20, 55.00 );
    Inventory1 myInventory1 = new Inventory1();
    System.out.println("");
    System.out.printf( "%s%12s%11s%13s%14s", "Product#", "Name", "In Stock", "Unit Price", "Stock Value" );
    System.out.println("");
    System.out.println("");
    myInventory1.displayInventory();
    myInventory1.addProduct( item1 );
    myInventory1.addProduct( item2 );
    myInventory1.addProduct( item3 );
    myInventory1.displayInventory();
    System.out.println( "" ); // display space
    System.out.println("");
    System.out.println( "Total value of inventory is: " );
    System.out.println ( formatter.format(myInventory1.getTotalInventoryValue() ) );
    I have no idea where to put the sort statement and how to implement it.

    Sorry about that. Before i proceed with the code I will say that I need help trying to determine where to put a sort statement and what sort statement should I use. I have three classes and have no idea how to sort the items by Product name. For instance, I have staples, books, and printers in my code. How do I get it to display these names and all of the corresponding information in alphabetical order. So with that said, here is the code.
    First program:
    // CheckPoint: Inventory Program Part 1
    // Display product information
    public class Product1 //declare class
    //declare instance variables
    private int productNumber,
    inStock;
    private String productName; // List of instance variables unique to object
    private double unitPrice;
    //constructor to handle no input and set defaults
    public Product1()
    //constructor to handle input parameters
    public Product1( int number, String name, int stock, double perPrice )
    productNumber = number;
    productName = name;
    inStock = stock;
    unitPrice = perPrice;
    public void setProductNumber( int number ) //stores product number
    productNumber = number;
    public void setProductName( String name ) //stores product name
    productName = name;
    public void setInStock( int stock ) //stores amount of product in stock
    inStock = stock;
    public void setUnitPrice( double perPrice ) //stores the unit price of product
    unitPrice = perPrice;
    public int getProductNumber() //allows a call to retrieve product number
    return productNumber;
    public String getProductName() //allows a call to retrieve the product name
    return productName;
    public int getInStock() //allows a call to retrieve stock info
    return inStock;
    public double getUnitPrice() //allows a call to retrieve unit price
    return unitPrice;
    public double getInventoryValue()
    return ( (double)inStock * unitPrice );
    }

  • HT1459 My Itunes library has 700 songs.  The Ipod Shuffle is 2 GB.  How many songs will that hold aproximately.

    My Itunes library has 700 songs.  The Ipod Shuffle is 2 GB.  How many songs can I get on the Shuffle...aproximately?

    To see the exact size of your library, simply look at the status bar at the bottom.  If you don't have a status bar, enable by going to View > Show Status Bar.
    If you want to fit more on the iPod, use the capability to "Convert higher bit rate songs..." as shown below.  If you set this to 128, you can fit around 500 4-minute songs in 2GB.

  • Help! I am trying to load my itunes on my husbands laptop and have no idea how to do this. Does anyone know?

    I never transferred my old itunes account to my laptop. It's my husband's laptop and he had his itunes on it. We have just deauthorized his account but HAVE NO IDEA how to load my account on it. Please give me any tips you have. Thanks! Carmen

    Try the instructions mentioned here: How to set up an iTunes Store account and this one about authorizing : About iTunes Store authorization and deauthorization

  • I have this account but do not have itunes visible on my laptop and have no idea how to back up my iphone

    i have set up an itunes account but have no idea how i now connect my iphone to it as i cannot see it on my laptop?

    i never use itunes and have been offered a samsung galaxy s3 as a swap so i need to save all my data as i di not wish to lose it all, if saved will i then be able to transfer it to the S3?

  • I want to cancel my i web site and have no idea how to. can anyone tell me?

    I want to cancel my Iweb pages and sign up with another site, however I have no idea how to cancel. I do not want to affect my mobile me ( if it might)
    Thanks if anyone can tell me ow to do this
    Jane

    nothing moves AT ALL
    Galileo said otherwise a few hundred years ago.
    Anyway, one more try.
    Go here and login : https://www.me.com/idisk/
    Click the gear icon and pull down the menu and select preferences. Procede as in the image earlier :
    Navigate to the Web > Sites folder until you see the folder with your sitename.
    Then select the folder/files you want to delete and click the trash icon.
    If that's impossible to do, then wait for MobileMe to delete everything for you next year.

  • Firefox crashes before it can be open, just started today and have no idea how to fix it.

    I was using Firefox when it first crashed, now when I try to restart it the Motzilla Crash Reporter window opens. I have no idea how to fix this. I tried to follow directions on-line (I'm not very computer savvy) but my signature/ID what ever is c27da8ef-4370-4963-9c18-cb5d52100726
    == Crash ID(s) ==
    c27da8ef-4370-4963-9c18-cb5d52100726
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; InfoPath.2; .NET4.0C; .NET CLR 1.1.4322)

    Run Software Update. Install all the recommended updates. Read: http://support.apple.com/kb/HT5244

  • I have a game on my xbox one that is telling me I need to open ports in order to play it I am not all that tech savvy and have no idea how to do this

    I have an airport extreme and I am trying to play a new game on my xbox one and it keeps kicking me I have comcast internet that is more than fast enough so I went to the games site and it says I need to either create a static ip or to open ports no idea how to do either of these or what that does any help would be appreciated.

    There are heaps of posts here about how to open ports on apple routers specifically for xboxes.
    AirPort Extreme and xbox 360

  • I keep getting the OSMF playback error when I am at the site opss.tv and have no idea how to fix it

    Please help

    Windows 7 Home Premium 64 bit OS, service pack 1
    Chrome version 29.0.1547 66m
    Flash Player (2 files) Flash version 11,8,80,97
    Shockwave version 11,8 r800
    Porblem encounter when I went to this site:www.opss.tv/video/play_5172.html and got the OSMF playback error. It also happens to all other play_xxxxhtmls so it it not isolated to this specific one only. This happened just a few weeks ago and I have no idea whether it is related to Microsoft's security update. Tried uninstalling all the updates since the error message occurred but did not solve the problem.

  • HT4759 i need to update my ipad and have no idea how to begin this

    I need help updating my ipad i am working with 4.3.5

    Connect your iPad to your computer and launch iTunes. You'll most likely be prompted to update. If not click the "check for update" button on the summary tab for the device in iTunes. For more information and full details, see the section titled "Update your device using iTunes" in this support article:
    http://support.apple.com/kb/HT4623
    You should read this article as well:
    http://support.apple.com/kb/HT4972
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • HT201210 help i have got message error 40 and have no idea how to resolve ?

    please help am now just about to throw ipod out of window x

    Try:
    Errors related to third-party security software
    Error 2, 4 (or -4), 6, 40, 1000, 9006
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    There may be third-party software that modifies your default packet size in Windows by inserting a TcpWindowSize entry into your registry. Your default packet size being set incorrectly can cause these errors. Contact the manufacturer of the software that installed the packet size modification for assistance or follow this article by Microsoft: How to reset Internet Protocol (TCP/IP).
    Verify that access to ports 80 and 443 are allowed on your network.
    Verify that communication to albert.apple.com or photos.apple.com is not blocked by a firewall, or other Internet security setting.
    Discard the .ipsw file, open iTunes and attempt to download the update again. See the steps underAdvanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations.
    Restore your device while connected to a different network.
    Restore using a different computer.

  • I just got my iphone yesterday and have no idea how to work it since it doesn't come with an owners manuel. I was wondering if there were any way of saving the audio attachments from multimedia messages or text messages as ring tones??

    Is there any way to save audio attachments from multimedia messages or text messages as ringtones so I can set them to specific contacts on the iphone 3gs??

    You have to create iphone ringtones.
    There are many free ways to do this.  Google will find them.
    Click Support and the top of this page, then Manuals, then iphone user guide to find the manual, or look at your bookmarks on the iphone.

  • I want to move my downloads from the downloads page to a folder and have no idea how to do it.

    I use Firefox to do all my downloads. To retrieve them I go to Tools and use the drop down list - downloads. I can't figure out where, on my computer they are so that I can email them as attachments or put them in folders. Would someone help me with this?

    In the [[Downloads window]], right-click on one of the files and choose "Open containing folder", this will open Windows Explorer (or your default file manager) in the location where the file has been downloaded.
    You can also open the Options dialog (in the Tools menu select Option), then go to the General panel for the settings concerning where files are downloaded to.

Maybe you are looking for