NEED HELP! Can't print song list...stops halfway!?

I can print a jewel-case insert and an album listing, but for some odd reason, whenever I try to print a song list (like a cd for example) it stops printing halfway! Can anyone help? I have tried saving it as a pdf file, still stops halfway. I have also tried restarting both my computer and printer.
Any suggestions are greatly appreciated!

The problem is that when I print a jewel case insert, the song list comes out all skrunched up. I notified Apple, they are aware of problem...as of 6 weeks ago. The problem was verified and duplicated by them. Just try printing a jewel case insert with the songs of one of your playlists....you'll see what it does! It started after the last up date for me. It was ok before that. I know because I did a system restore to a date before the update and it worked. Then I tried doing the update again and the problem started up again. If only I could resort to the version before the last!

Similar Messages

  • Can not print song lists for jewel case with windows

    I have PC with Windows 7 and have downloaded the latest version of I Tunes and still can not print out a list of songs that will fit into a jewel case.  The songs print all over one another in a garbled mess.  Any suggestions on how to fix this?  I have spoken to and emailed Apple Support but they can not offer assistance if I am not using an Apple device.  If I am purchasing music on ITunes it seems appropriate to have access to the same service as those who use MACS.  If I can not get this to work properly, I would like suggestions on how else to create my music CD's as easily as I can on ITunes.

    Aloha Mom,
    It is the same place it has always been:  with the playlist open, use the Print command under the File menu.
    The new thing is that the Menu bar is hidden by default.  So if you don't see the menu bar (File, Edit, View, etc), enable it by holding the CTRL key and pressing B.

  • Help - can't print linked list object

    Hi all,
    I've written a program that creates an Airplane object. I've added the Airplane object to a linked list. I am trying to test by printing the linked list..but I get the addresses of the airplane object instead of the integer variables that the Airplane object contains. How can I fix this? Here's my output showing what I am talking about:
    Airplane type: 2
    Airplane arrival time: 600
    Airplane cleaning time: 45
    Airplane take-off time: 645
    [Airplane@665753]
    Airplane type: 3
    Airplane arrival time: 1100
    Airplane cleaning time: 60
    Airplane take-off time: 1160
    [Airplane@665753, Airplane@ef22f8]
    Airplane type: 1
    Airplane arrival time: 900
    Airplane cleaning time: 30
    Airplane take-off time: 930
    [Airplane@665753, Airplane@ef22f8, Airplane@e0cf70]
    Airplane type: 1
    Airplane arrival time: 1100
    Airplane cleaning time: 30
    Airplane take-off time: 1130
    [Airplane@665753, Airplane@ef22f8, Airplane@e0cf70, Airplane@52fe85]
    Airplane type: 3
    Airplane arrival time: 1000
    Airplane cleaning time: 60
    Airplane take-off time: 1060
    [Airplane@665753, Airplane@ef22f8, Airplane@e0cf70, Airplane@52fe85, Airplane@c40c80]
    Airplane type: 2
    Airplane arrival time: 900
    Airplane cleaning time: 45
    Airplane take-off time: 945
    [Airplane@665753, Airplane@ef22f8, Airplane@e0cf70, Airplane@52fe85, Airplane@c40c80, Airplane@10d81b]
    Airplane type: 2
    Airplane arrival time: 900
    Airplane cleaning time: 45
    Airplane take-off time: 945
    [Airplane@665753, Airplane@ef22f8, Airplane@e0cf70, Airplane@52fe85, Airplane@c40c80, Airplane@10d81b, Airplane@dbe178]
    Airplane type: 3
    Airplane arrival time: 1000
    Airplane cleaning time: 60
    Airplane take-off time: 1060
    [Airplane@665753, Airplane@ef22f8, Airplane@e0cf70, Airplane@52fe85, Airplane@c40c80, Airplane@10d81b, Airplane@dbe178, Airplane@af9e22]
    Airplane type: 1
    Airplane arrival time: 900
    Airplane cleaning time: 30
    Airplane take-off time: 930
    [Airplane@665753, Airplane@ef22f8, Airplane@e0cf70, Airplane@52fe85, Airplane@c40c80, Airplane@10d81b, Airplane@dbe178, Airplane@af9e22, Airplane@b6ece5]
    Airplane type: 1
    Airplane arrival time: 700
    Airplane cleaning time: 30
    Airplane take-off time: 730
    [Airplane@665753, Airplane@ef22f8, Airplane@e0cf70, Airplane@52fe85, Airplane@c40c80, Airplane@10d81b, Airplane@dbe178, Airplane@af9e22, Airplane@b6ece5, Airplane@7ace8d]
    Airplane@665753
    import java.io.*;
    import java.util.*;
    public class AirPortSimulator {
         public static void main(String[] args) {
              LinkedList<Airplane> myEventList = new LinkedList();
                   //for loop to test random number generator for airplane type
              for( int i = 0; i < 10; i++){
                   int parOne = myNumber();
                   System.out.println("Airplane type: " + parOne);
                   int parTwo = myTime();
                   System.out.println("Airplane arrival time: " + parTwo);
                   int parThree = 0;
                   switch(parOne){
                   case 1: parThree = 30;break;
                   case 2: parThree = 45;break;
                   case 3: parThree = 60;break;
                   System.out.println("Airplane cleaning time: " + parThree);
                   int parFour=0;
                   switch(parOne){
                   case 1:     parFour = parTwo + 30;break;
                   case 2: parFour = parTwo + 45;break;
                   case 3: parFour = parTwo + 60;break;
                   System.out.println("Airplane take-off time: " + parFour);
                   System.out.println();
                   Airplane myAirplane = new Airplane(parOne, parTwo, parThree, parFour);
                   myEventList.addLast(myAirplane);
                   System.out.println(myEventList);
                   System.out.println();
         public static int myTime(){
              Random generator = new Random();
              int number = generator.nextInt(16)+1;
              number = number * 100;
              if (number < 600){
                   number = number + 600;
              return number;
         public static int myNumber(){
              Random generator = new Random();
              return generator.nextInt(3)+1;
    }

    I've written a method before that prints all the
    elements of a linked list..but that method onlyheld
    one integer or string...it was a "while (head !=
    null) loop that traversed the list and printed
    "head.info"
    But i'm confused with an object that has 4integers
    inside it...You don't have to write any kind of loop. The
    LinkedList implementation of toString does that for
    you. All you have to do is write a toString for
    Airplane that prints whatever you feel is important
    for a single Airplane object.
    But note that since the list uses commas to separate
    entries, your toString method will be clearer if you
    can write it in such a way that it doesn't use
    commas, or so that you can see where the output
    begins and ends. For example, maybe you can wrap the
    output with curly brackets.Thanks, I just had to understand what the toString method was and then how to override it. This works well:
    Thank you for pointing me in the right direction.
    aiki985
    public String toString(){
                  return "{" + airplaneType + ", " + arrivalTime + ", " +
                                  waitingTime + ", " + departureTime + "}";
              } // end toString method

  • Need Help: Can I get songs I bought off Itunes from a different Computer onto my new one?

    I do not have the old computer available to me anymore. But when I enter my Itunes Purchased History I see all the songs I bought on the old computer and I would really like to not have to buy those all again. I'm hoping there is a way I can simply download them onto this computer without re-purchasing. Please Let me know!

    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • In Ical, can you print a list view calendar without notes?

    In Ical, can you print a list view calendar without notes?

    cj,
    After selecting Calendar>File>Print...> I am presented with a Print selection pane which offers among other choices, a "List" selection:
    What do you see?

  • How can i print a list of bookmarks or extract bookmarks with number paper to print?

    How can i print a list of bookmarks or extract bookmarks with number paper to print?

    I have created a tool which can create a summary of the bookmarks structure of a file in either PDF format or as a plain text file, and you can also choose whether or not to include the matching page number for each bookmark. Have a look here: http://try67.blogspot.com/2008/11/acrobat-export-bookmarks-to-pdf-txt.html

  • Hello I Download Adobe Photoshop CC 2014 Last Night i INSTALLED it But it Crashes in 30-40 Sec After i Launch the Product Without Any Error Message I Need Help Can You Resolve This Problem i Tried Creative Cloud Sign Out Nd Sign iN But iT DidnT ReSolve My

    Hello I Download Adobe Photoshop CC 2014 Last Night
     i INSTALLED it But it Crashes in 30-40 Sec After i Launch the Product Without Any Error Message
    I Need Help Can You Resolve This Problem

    Lotfi are you receiving any error messages during the installation?  I would recommend reviewing your installation logs for errors.  Please see Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html for information on how to locate and interpret your installation log files.  You are welcome to post any specific errors you discover to this discussion.

  • HT3775 I get the following message when trying to open an .avi downloaded from my video cam, need help, can not find the codec, thank you.The document "IMAG0026.AVI" could not be opened. A required codec isn't available.

    I get the following message when trying to open an .avi downloaded from my video cam, need help, can not find the codec, thank you. This is for Quicktime Player.
    "The document “IMAG0026.AVI” could not be opened. A required codec isn't available."

    Try Perian.
    http://perian.org/

  • I need help getting my printer to work

    I need help getting my printer to work

    http://h30434.www3.hp.com/t5/Printer-Networking-and-Wireless/Want-Good-Answers-Ask-Good-Questions/td...
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • How can I print a list of my Contacts in alphabetical order from my iMac

    I know how to change the alphabetical sequence of my contacts by first name & last name , but i would like to know how I can easily PRINT a list of my contacts in alphabetical order.
    I know how to print a list but the names are in random order.
    My question is what should I do so the printed list is in alphabetical order?
    Thank you

    I just found a way to print contacts in ABC order.  I signed in to my iCloud account online, then went to Contacts. I selected the contact group I wanted to print on the left page (example Xmas card list).  On the right page at the bottom, I clicked on the gear symbol and clicked "select all", then clicked again on "print". When the print window appeared, I saved the file to PDF, just to see if the information was in ABC.  It was!
    It's not perfect but it works... you can also do the entire list this way also... no choices as to what appears but it is a beginning...

  • HT1296 I need help transfering my Outlook Contact list to my new iphone

    I need help transfering my Outlook Contact list to my new Iphone

    Open itunes, connect iphone, select what you want to sync, sync.
    Click Support at the top of the page then click manuals.

  • Need help getting new printer hp deskjet 3520 setup for eprint and wireless

    need help getting new printer hp deskjet 23520 stup for eprint and wireless

    Hi Pastorlee7,
    I see that you're having problems setting up your printer.  I would take a look at the document below.
    Hp deskjet 3520
    Let me know how it goes.  

  • Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.

    also say explorer not reading SWF files and I have to reload them? Not sure what that is either,
    Thanks
    Jim

    Hi Nancy
    Trying to update my site got to make some changes.  Do you work on sites via remote? I am on Cloud.
    : Nancy O. 
    Sent: Monday, September 01, 2014 3:47 PM
    To: James Neidner
    Subject:  Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.
    Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.
    created by Nancy O. <https://forums.adobe.com/people/Nancy+O.>  in Dreamweaver support forum - View the full discussion <https://forums.adobe.com/message/6692200#6692200>

  • I jailbroke my ipod and its in recovery mode i cant take it out of it and i cant restore becasue i changes host to sariks sever i need help can any one help me

    i cant take it out of it and i cant restore becasue i changes host to sariks sever i need help can any one help me please please i just got my ipod i realy need help

    Sorry, due to the Terms of Use, problems with jailbroken devices can't be discussed here.

  • Songs are stopping halfway and skipping to the next song

    I recently imported some new songs onto my itunes, and some songs are stopping halfway and skipping to the next song. This is happening both on my itunes on mac and on my ipod classic. I have already checked the ending time of the songs, and also checked the audio file to see if it was corrupted. I have also tried deleting the song and importing it on itunes again, but nothing changes. It's becoming quite annoying, and I would really like to fix the problem..

    I, too, am having this problem as of two updates ago. It' been like this for about two weeks now. Music stops, songs skip like I'm using an old CD player and went over a bump - just abruptly stopping/changing to the next song. I've also noticed VERY clear and sudden changes in song quality while streaming, it's a bit jarring.
    I have a Samsung Galaxy S4. I'm in the Phoenix, AZ area, and I'm using T-Mobile.
    I have tried the following:
    Restart phone 
    Clear data
    Uninstall and reinstall
    Lower streaming quality
    I've noticed this seems to only happen on streamed songs.. downloaded ones are OK. Everything was fine until the update that changed the 'Your Music' section :(
    Edit: Wifi works fine.. It seems to either be a) streaming over T-Mobile or b) how Spotify handles streaming/slow connections/whatever has changed in a recent update. Can past and future repliers include their mobile carrier to see if there's a trend?

Maybe you are looking for

  • How to chk a Material for which no open docs

    Hi experts, Need to identify a material for which there are no open documents, i.e., material is created but no PRs and POs are generated. This identification should be in material master not from tables. Please help Thanks  in Advance....

  • Web-application deployment problem (404 - File not found)

    Hello Does anyone have had the same problems like me on deploying java web-applications on iPlanet WS 6.0? I started with the HelloWorld.war example that came with the server and went through the manual but no luck so far. Heres what I did: 0. Checke

  • What is the best laptop to run Premiere Pro cc?

    Hi everyone, I've been having a lot of problems with Premiere cc since I downloaded it a few months ago and am now realising the problem is with my computer.  I have a late 2012 Macbook Pro, 2.5 ghz, 8gb Ram, intel hd 4000 processor which just doesn'

  • I purchased songs last night but I can't find them!??

    I apologize if the answer to this question is somewhere in here but I browsed quickly and couldn't find it. (Kind of in a hurry!) I bought about 20 songs on Itunes and I can't find them in my library or anywhere in my acct! I clicked "Check for Downl

  • Set label colour to files in loop.

    This Script works in part to open a folder select the image to create a text document of the files, at the same time I would like to label them as red. set myFile to (Macintosh HD:Users:Matt:Desktop: SelectedImages.txt") open for access file myFile w