How to make a playlist loop

I just bought a 5G video iPod a couple of days ago; it's my first and I know almost nothing about using it. Everything is working and the sound is wonderful. The problem is that there are apparently fewer controls than I'd expected and I haven't been able to control what it plays to the extent that I'd expected.
The iPod is synched with my Mac and has what is supposed to be identical library and playlists. However, the Mac has lots of playlists set to loop (repeat), and the iPod doesn't seem to have that information: it isn't looping playlists that are set to loop on the Mac.
Is this normal? And, whether it is or isn't normal, is there still a way to instruct the iPod with its own controls to loop a playlist? Another question: is there a way to instruct the iPod to shuffle a particular playlist and to determine the way it shuffles (example, by album instead of by song name)?
The "Shuffle" menu item seems to apply only to the entire (very large) library. I don't see a way to apply its function to a particular playlist.
In reply, please don't assume that I know anything about iPods. I don't, though I've looked through the pdf manual. Does anyone happen to know of any more complete online resources than the Apple manual?
Thanks for any help,
Mary

Congratulations! Once you have gotten the hang of it, you will wonder how you ever lived without you new little friend!
Anyway, in answer to your questions:
The iPod is synched with my Mac and has what is
supposed to be identical library and playlists.
However, the Mac has lots of playlists set to loop
(repeat), and the iPod doesn't seem to have that
information: it isn't looping playlists that are set
to loop on the Mac.
Your iPod will loop a playlist, but you have to tell it to do that. This is done as follows:
1) Select SETTINGS from the Main Menu
2) Scroll down and click on REPEAT until you the option ALL displays to the right of REPEAT (ONE will only loop one song)
3) Click Menu to return to the Main Menu, and then select the playlist you want to listen to. Your iPod will continue to loop this playlist until you stop.
Infact, your iPod will continue to loop any play list (or Album) you select until you change that setting. Unfortunately, you can not set the iPod to only loop some playlists and not others - at least I haven't ever found a way to do that - But the REPEAT Setting should allow you to loop whey you want to.
Another question:
is there a way to instruct the iPod to shuffle a
particular playlist and to determine the way it
shuffles (example, by album instead of by song
name)?
Like the REPEAT Setting, there is no way to have the iPod shuffle some playlists a certain way, and others another way. However, you can use Settings to accomplish the same thing. Here's how:
1) Select SETTINGS from the Main Menu
2) Scroll down and click on SHUFFLE until the option YOU WANT displays to the right of SHUFFLE. Your options are to shuffle by SONG or ALBUM.
3) Click Menu to return to the Main Menu, and then select the playlist you want to listen to. Your iPod will continue to shuffle the songs or albums in whatever playlist you select until you go back into settings and select SHUFFLE >>> OFF.
The "Shuffle" menu item seems to apply only to the
entire (very large) library. I don't see a way to
apply its function to a particular playlist.
This is true. The SHUFFLE on the Main Menu only applies to the entire library. But if you change the settings, as explained above, and then select the playlist you want suffled, you should be good to go.
Hope that this helps!

Similar Messages

  • How to make in the loop codes?

    How to make in the loop codes to have like my output(below)?
    For example:
    I am trying to figure out how to make them correct the way I want to have the output.
    String start = "02-01-08";
    String end = "02-29-08";
    Calendar a = new GregorianCalendar();
    while( start <= end ) {
              a.add(Calendar.DAY_OF_WEEK, 7);
              Date d = a.getTime();
              DateFormat df = new SimpleDateFormat("yyyy-MM-dd");
              String ss = df.format(d);
              System.out.println(ss);
    }The output:
    +02-01-08+
    +02-08-08+
    +02-15-08+
    +02-22-08+
    +02-29-08+
    Anybody know how to make it correct?

    artist_tech07 wrote:
    I am confused where is the answer in the doc that you gave me?Read my first reply and read the docs. Then read them again.
    And then re-read this
    To do what you want you need a start and end Dates. These you can compare in one numeric form or the other. For example by using getTime.
    Then during each loop iteration you will need to add *1 day (using the Calendar)* to the start date.
    I am telling you what methods to use. I have told you were you can find those methods. I have given you a link to the Calendar class API. All you have to do is put 2 and 2 together. Or at the very least make an attempt to do so.

  • How to make each playlist for each movie songs ? when i tried to add songs all movie songs comes in row , its very difficult to find which movie song belongs?

    how to make each playlist for each movie songs ? when i tried to add songs all movie songs comes in row , its very difficult to find which movie song belongs?

    Thank you! I put some self help hypnosis tracks to listen to on my iPod. I did not want to go to the next track automatically, I wanted to listen to them individually, one at a time. (If I fell asleep, I did not want to 'wake up' in the middle of a different track.) Your information helps me understand that I need to re-load this playlist onto my iPod from my  Mac computer, only first, I need to UNCHECK the boxes in front of each track so the iPod will STOP each time after playing the selected track. It is too bad that so many functions are not availabvle within the iPod, but that is probably why they can make it so compact.

  • How to make a switch loop? ( Read inside for more info.)

    I'm working on a project using switch and I want to know how to make it loop/ or is it possible to do so with for or while. If anyone could help me I'd be very thankfull.
    Since my switch is too long I'll make an example:
    System.out.println();
    System.out.println();
    System.out.println("Zgjedhni operacionin: ");
    System.out.println("1. Mbledhja A + B\n");
    System.out.println("2. Zbritja A - B\n");
    optionNumber = sc.nextInt();
    switch ( optionNumber ) {               
                        case 1: System.out.println("\nMbledhja A + B: ");
                              s11 = (a11+b11);
                              s12 = (a12+b12);
                              s13 = (a13+b13);
                              s21 = (a21+b21);
                              s22 = (a22+b22);
                              s23 = (a23+b23);
                              s31 = (a31+b31);
                              s32 = (a32+b32);
                              s33 = (a33+b33);
                              System.out.println( s11 + " - " + s12 + " - " + s13 );
                              System.out.println( s21 + " - " + s22 + " - " + s23 );
                              System.out.println( s31 + " - " + s32 + " - " + s33 );
                              break;
                        case 2: System.out.println("\nZbritja A - B: ");
                              s11 = (a11-b11);
                              s12 = (a12-b12);
                              s13 = (a13-b13);
                              s21 = (a21-b21);
                              s22 = (a22-b22);
                              s23 = (a23-b23);
                              s31 = (a31-b31);
                              s32 = (a32-b32);
                              s33 = (a33-b33);
                              System.out.println( s11 + " - " + s12 + " - " + s13 );
                              System.out.println( s21 + " - " + s22 + " - " + s23 );
                              System.out.println( s31 + " - " + s32 + " - " + s33 );
                              break;I've got the variables declared of course :P so now what I want after doing case 1 or case 2 or any other cases ( 9 in my program) I want to make a question if I want to do another operation and start again from beginning :$/

    Solved it.
    do {
    System.out.println();
    System.out.println();
    System.out.println("Zgjedhni operacionin: ");
    System.out.println("1. Mbledhja A + B\n");
    System.out.println("2. Zbritja A - B\n");
    optionNumber = sc.nextInt();
    switch ( optionNumber ) {               
                        case 1: System.out.println("\nMbledhja A + B: ");
                              s11 = (a11+b11);
                              s12 = (a12+b12);
                              s13 = (a13+b13);
                              s21 = (a21+b21);
                              s22 = (a22+b22);
                              s23 = (a23+b23);
                              s31 = (a31+b31);
                              s32 = (a32+b32);
                              s33 = (a33+b33);
                              System.out.println( s11 + " - " + s12 + " - " + s13 );
                              System.out.println( s21 + " - " + s22 + " - " + s23 );
                              System.out.println( s31 + " - " + s32 + " - " + s33 );
                              break;
                        case 2: System.out.println("\nZbritja A - B: ");
                              s11 = (a11-b11);
                              s12 = (a12-b12);
                              s13 = (a13-b13);
                              s21 = (a21-b21);
                              s22 = (a22-b22);
                              s23 = (a23-b23);
                              s31 = (a31-b31);
                              s32 = (a32-b32);
                              s33 = (a33-b33);
                              System.out.println( s11 + " - " + s12 + " - " + s13 );
                              System.out.println( s21 + " - " + s22 + " - " + s23 );
                              System.out.println( s31 + " - " + s32 + " - " + s33 );
                              break;
    System.out.println("Doni te beni edhe nje operacion?: ");
    vazhdo = sc.next().equalsIgnoreCase("PO");
    while ( vazhdo == true);Sorry for double posting can't see an edit button :$

  • How to make a Thread loop?

    Hi, I was wondering how to make a thread start over again from the beginning once it finishes, if it hasn't been stopped already.

    package src.Utility;
    public class ThreaTest extends Thread{
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              ThreaTest threaTest= new ThreaTest();
              while(true){
                   try{
                   if (!threaTest.isAlive()){
                        threaTest= new ThreaTest();
                        threaTest.start();
                   }//else{
                        //System.out.println("");
                   }catch (Exception e) {
                        e.printStackTrace();
         public void run(){
              System.out.println("-----11---------");
    }try the above code and then tell me if this loop works for you???

  • I don't know how to make a playlist in Zen Micro!! lol Help P

    Lol, ok so this may sound very bad but, i just dont know what to do to make a playlist with ALL the song in it.
    There was a song playing, i am in the "Now Playing" screen, i save it as a playlist, now how do i add more songs to the same playlist? That is where im stuck!
    Sorry if this is very stupid, but i've tried everything and somehow i got another song added to it, but i dont know how i did it....

    make a playlist of ALL the songs you have? just why would anyone want that?
    anyways... go tothe all tracks section onthe main menu and play a song. then tap the lower right icon on the player then select "Save as Playlist". rename the playlist and there you have it. if you wantto add a song to a playlist of ALL your song (again, why would anyone do something like this?), go to your playlist, play a song, then go back to the all tracks section on the main menu, choose the song you want to add on the playlist, then tap either the verical touchpad or the lower right icon then choose "add to selected". Choose as many sons you like. then go back to the "Now Playing" section (tap the vertical touch pad to see that the added song/s will be on the bottom list). then just rename your playlist and there you have it-- a playlist of all your songs PLUS the added songs that had been added before
    to each his own i guess... enjoy

  • HT1711 How to make a playlist?

    What's the best way to make a playlist?

    Hi there!
    If you are on your computer, click File >> New >> Playlist, and then add the songs of your choosing.  If you are on an iOS device tap your Music icon >> Playlists (at the bottom of the screen) >> Add Playlist, and from here you can add the songs of your choosing.
    I hope this helps!  Best wishes and good luck!

  • Help on how to make an infinite loop with the same space on all images

    HI:
    I made a movie clip with infinite  loop in which there are images that move from right to left something simple like a marquee, and each image has a blank space between  them, but between last and first image there is a more space, how I can do to  make all images have an equal space between each one and that the motion never stops.

    Thanks for your time and answers my friend, but I'm still not be able to achieve what I want, I forgot to tell that I'm doing this by layers, let's say, I have 5 images, (in fact I have like 50 images converted to movie clip symbols) each image has it's own layer, layer 1, layer 2, layer 3, layer 4, layer 5, then I put a 200 frame motion tween on all layers at 30 fps, then I arranged layer 1 on the first frame to the frame 200, the second layer from frame 50 to frame 250, third layer from frame 100 to frame 300, fourth layer from frame 150 to frame 350, and fifth layer from frame 200 to frame 400, by this I mean I put a 50 frame of space on each image but if you can see, the last image has a duration from frame 200 to frame 400, and there's nothing on frame 250 where it is supposed to be another image to match the same blank space of all the others, the movie clip restarts on the frame 400, and there's a 150 frames of blank space between the last image and the first image, I put the gotoandplay on the frame 250, but it abruptly restarts the movie.
    Is there another way to do this ?
    Am I doing something wrong ?
    Please I really really need help on this.
    Thanks

  • How to make / edit playlists by genre..ex. country.. rap..r

    how do i edit a playlist on my zen micro? when i create a playlist it just pulls all of my songs into that playlist , i can't put indivual songs into different playlists, so i have big playlist.... HELPDG

    DG2392322: There's a thread here on how to create and edit playlists on the player, but player based editing is not particularly easy.
    You are better to use the PC, and as Jake has said Notmad Explorer offers some of the best editing features. You can still use the software that came with the player though, like MediaSource and Zen Micro Media Explorer.

  • How to make exclusive playlist?

    I want to download a few songs and put them in a specific playlist especially for working out, however I don't want them to play in my overall library. Is there a way to make an exclusive playlist so that they only play when I have that playlist selected?
    I have considered the option of making a separate playlist for my work-out music and then one for the rest of my music, but this is not the ideal solution.

    I have considered the option of making a separate playlist for my work-out music and then one for the rest of my music, but this is not the ideal solution.
    For what you want to do, yes it is the ideal solution.
    You can make the second playlist automatically, by means of a Smart Playlist with a rule "Playlist" "is not" "<name of workout playlist>".  This will keep itself updated as you add or move music.

  • How to make a Video loop with FCP Express?

    Hi everybody. I need to make a lot of shorts videos with jpgs extracted from a main video. But those jpgs videos must be done as a loop that will returns and plays again forever (the videos will be placed in a web site) Is that possible, and if it is, what I need to do to obtain that loop?.
    Best Regards.
    Julian Laffont.

    Hi Tom. It's not for my web site. Is for someone else . I don't know what to do or say. Should I make a video with the jpgs and tell them that they need to use the looping application of their web site? (I don't know if they have that application) Also Will be good to know if there is a specific format of video that loops in the web sites?. Wich one will be.QTM, WMV I don't know.
    Thanks.

  • How to make the playlist with all purchased songs

    I accidentally deleted the puchased playlist. How do I get it back?
    Thanks,
    Austin

    Hey OscarDeLaGrouch,
    Thanks for the question. You stated that you wish to play all of your songs at random. Shuffling might be the tool you are looking for:
    iTunes 11 for Windows: Ways to play songs
    http://support.apple.com/kb/PH12331
    Shuffle or repeat songs
    Do any of the following:
    - Turn shuffle on or off: Click the Shuffle button
    Shuffle is on when the arrows are blue
    Thanks,
    Matt M.

  • How to make my animation loop 3 times ?

    Hi Adobe,
    I have made a animation and want to loop it 3 times!
    Can you help my with that ? ;-)
    Best,
    Jesper

    Hi,
    Well, it's very easy.
    1) You create an index: sym.setVariable("loop", 1); This is scripted within the compositionReady panel.
    2) You script an increment (+1) and a conditional statement (if) within the complete panel.
    sym.setVariable("loop", sym.getVariable("loop")+1);
    if (sym.getVariable("loop") < 4) sym.play(0);
    Here is a demo file to download: looping.zip - Box

  • How to make smart playlist that randomizes songs?

    I want to have a playlist with 5 songs in it. The songs have to have a play count of zero, and I want them to be random every time I select the playlist. Is this possible? Basically I just want to listen to songs I've never listened to before and thought this would be an easy way.

    Yes, just use a single rule "Playcount is 0," limit it to 5 items selected at random, and use live updating. Once a song is played it will fly off the list (since its playcount is no longer 0) and immediately be replaced.
    If you ever want to "refresh" the list, i.e. get 5 new songs, then open the playlist, Edit > Select All (so they all get highlighted) and then Delete. Those 5 will be removed and new ones will appear momentarily.

  • How to make a closed loop wait?

    My current script is:
    do shell script "open '/Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app'"
    delay 5
    do shell script "killall 'Adobe Photoshop CS6'"
    do shell script "killall 'PDApp'"
    Right now it is a timed wait, but if one time Photoshop doesn't open before 5 seconds, it screws the program. I also don't want to put a long timed wait either. Is there a way to trigger the quit Photoshop and Adobe Application Manager once the program is done loading and open?

    Try this:
    tell application "Adobe Photoshop CS6"
      activate
              try
                        name of window 1
              end try
      delay 5
      quit
    end tell
    the request for name of window 1 (or any other simple applescript command) can't be processed until photoshop is fully loaded, and the script won't move on until that value is returned. (it's in a try block so that you don't get an error if there's no window).

Maybe you are looking for

  • How do I connect my iPad to a windows network to see and work w files

    I am in sales and trying to leave the windows laptop at home and just take the ipad 2.I have used several apps including mobile me and airsharing but they all require me to copy and paste which is redundant and in most cases very time consuming. Is t

  • JInititiator 1.3.1.22 and Internet Explorer 7.0 in HTTPS Mode Not Working

    Anyone else having problems running Jinitiator 1.3.1.22 in Internet Explorer 7.0 in HTTPS mode? I'm getting the usual unhelpful java.lang.ClassNotFoundException:oracle.forms.engine.Main error. Works okay in HTTP mode. Confirmed that JInititiator and

  • Stat Delivery Date in PO

    Hello, When I am creating PO system is not populating stat delivery date ? Even I tried to change the Delivery date and still I couldn't see Stat delivery date pouplated.Am I missing something ? Thanks

  • Google searches not showing in history

    This was a problem long ago that seemed to go away, but it's happening again.  Not every time, but often when I perform a Google search from the URL "smart" field, that search doesn't show up in my browsing history.  No idea when or why this happens.

  • Changing Appointment STOP Time From One Hour to Half-Hour.

    On my desktop and on my Centro, appointment "stop" times always default to one hour from the "start" time. I would like to change this so the default is to a half-hour interval. However, I cannot find a setting for this, either on my desktop or on th