Nano touch...songs only repeat...how do I get this feature to turn off?

MY new nano repeats whatever song I select forever, even if within an album.  I assume that once I select an album, it should play all the songs. 

It sounds like the repeat setting has been abled.See the section entitled "Controlling Playback" on page 28 of your iPod's User Guide to learn how to turn this setting off.
http://manuals.info.apple.com/en_US/iPod_nano_6thgen_User_Guide.pdf
B-rock

Similar Messages

  • My 6th gen nano will go to sleep after 1min. if I don't keep touching the sceen or pushing the buttons. How can I get this function to turn off?

    I can't relax and listen to music as my nano will go to sleep after just one minute of not touching it. This is really irritating and needs to get fixed. Can anyone help? I've read the manual and it doesn't say anything about my problem.

    Your nano is pausing playback when the screen goes dark. The reason for this is that it is not detecting your headset. You may be able to hear music, but the headset jack is not inserted enough for the nano to detect that it is there (or something is blocking the connection). Here are your three options:
    Insert the headset jack harder. Most folks find that this solves their problem. If you can see ANY of the silver of the plug when it is inserted, it is NOT fully inserted. You should feel and hear a click" when it is fully inserted.
    Clean out the crud in the headset port. If you have tried #1 and it just won't insert all the way, it is likely that you have crud in your headset jack. Shine a light in there. The entire inside of the jack is white, so if it looks dark down at the bottom, there is probably crud down there. You can try blowing it out or using canned air. Just understand that shoving anything else in there to clean it out will be taking your warranty into your own hands! However, I have cleaned mine out using whatever was handy and small enough to fit in there and so far so good. Your results may vary!
    Take it to the Apple store. If you have really tried with 1 and 2 and it is still happening, then there might just be something up with your headset port or your headset jack. If it is the headset jack, you can look closely at that and be pretty sure if that is the problem. Try another headset to make sure. If you have worked all the way through to this point and it is still happening, it is time to take it to the Apple store.
    i
    PS: For more on this, with pictures, see this post: https://discussions.apple.com/thread/2765444?start=30&tstart=0

  • How do I get my 4S to turn off?  The on/off button seems to be frozen.  Help?

    How do I get my 4S to turn off?  The on/off button seems to be frozen in the down position.

    Make a Genius Bar appointment. In the meantime go Settings > General > Accessabilty > Assistive Touch.
    There's a lock screen option for aid when hardware fails.

  • After downloading the ios7 to my iPhone 4s, the keyboard does not have the microphone so I can't speak to text.  How do I get this feature back?

    After downloading the ios7 to my iPhone 4s, the keyboard does not have the microphone so I can't speak to text.  How do I get this feature back?

    Go to Settings > General > Siri and turn Siri on. Once you turn it on, you will have the microphone key back on the keyboard

  • The message suggestions that pop up while typing have disappeared. How do I get this feature back?

    I recently upgraded to ios 8.0.2 on the iPhone 5. One new feature I noticed was a grey box that listed word suggestions to add to a text as it was being typed (not to be confused with the auto correct or original word bubble that pops up for autocomplete). It disappeared and I am not sure why or how I can get this feature back.

    If there is a thin gray bar with a white dash in the middle immediately above the keyboard, you can reopen the suggestions by placing a finger on the white dash and dragging up.
    You can turn the suggestions on/off by going to Settings > General > Keyboard > Predictives

  • How can I get dock connector to turn off on air play. There is no longer a choice for sound to be displayed on iPad. I do not own outside speakers. Have already reset. Thanks

    How can I get dock connector to turn off on air play. There is no longer a choice for sound to be displayed on iPad. I do not own outside speakers. Have already reset. Thanks

    Slow, intermittent.  Sometimes bootable sometime not. Odd behavior.
    Sounds to me like a classic case of your HD failing.
    Your SMART status may still show verified, with no errors on the Apple Hardware Test, Disk Utility shows no problems on Disk Repair-  this is of no help.
    I trust you have a good back-up and a bootable clone.
    http://eshop.macsales.com/shop/hard-drives/2.5-Notebook/

  • After I download an attachment I have to go to the download window and manually open it, my laptop use to download then automatically open the file, how do I get this feature turned back on?

    After I download an attachment from my webmail I have to go to the download window and manually open it, my laptop use to download then automatically open the file, how do I get this feature turned back on?

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

  • How can I get this function to fire off last?

    In the following code, there are two buttons on the stage- "button1" and "button2". 
    I want to get the buttons to change frames and THEN have the "playerChange" function fire off.
    Currently, the "playerChange" function fires first. Moving the function  either renders the code inoperable or
    returns error messages.
    function buttonChange (e:MouseEvent)
    {if    
                    (e.target.currentFrame == "frame1" )
             if (e.target==button1) (playerChange)
                     (e.target.gotoAndStop(player.currentFrame + 1)) 
               else{player.gotoAndStop(player.currentFrame)
              if (e.target==button2)  (playerChange) 
                    (e.target.gotoAndStop(player.currentFrame + 1))
              else{player2.gotoAndStop(player2.currentFrame)
    button1.addEventListener(MouseEvent.CLICK,buttonChange );
    button2.addEventListener(MouseEvent.CLICK,buttonChange);
    Note:this is an abridged version of the code. The code I'm actually using uses 20 buttons and about 8 conditionals for each button, so e.target is more convenient than writing a command for each button.

A: How can I get this function to fire off last?

the code is very hard to understand
it's badly formatted
{}'s don't match
you aren't calling a playerChange function
this is my guess at something that might work for you
function buttonChange (e:MouseEvent)
          if(e.target.currentFrame == "frame1" )
                    if (e.target == button1)
                              e.target.gotoAndStop(player.currentFrame + 1);
                              playerChange();
                    else
                              player.gotoAndStop(player.currentFrame);
                              if (e.target == button2)
                                        e.target.gotoAndStop(player.currentFrame + 1);
                                        playerChange();
                              else
                                        player2.gotoAndStop(player2.currentFrame)
button1.addEventListener(MouseEvent.CLICK,buttonChange );
button2.addEventListener(MouseEvent.CLICK, buttonChange);

the code is very hard to understand
it's badly formatted
{}'s don't match
you aren't calling a playerChange function
this is my guess at something that might work for you
function buttonChange (e:MouseEvent)
          if(e.target.currentFrame == "frame1" )
                    if (e.target == button1)
                              e.target.gotoAndStop(player.currentFrame + 1);
                              playerChange();
                    else
                              player.gotoAndStop(player.currentFrame);
                              if (e.target == button2)
                                        e.target.gotoAndStop(player.currentFrame + 1);
                                        playerChange();
                              else
                                        player2.gotoAndStop(player2.currentFrame)
button1.addEventListener(MouseEvent.CLICK,buttonChange );
button2.addEventListener(MouseEvent.CLICK, buttonChange);

  • How come I get 3G when I turn off my LTE?

    How come I get 3G when I turn off my LTE but when my friends turn their LTE off they get 4G? I have Verizon as my phone's carrier.

    Because you have a Verizon iPhone and when you turn off LTE it falls back to their EVDO network and correctly shows 3G. Your friends either have a T-Mobile or AT&T iPhone and they refer to HSPA+ as "4G".
    A Sprint iPhone will behave exactly like yours.

  • How do I get this STUPID U2 music off my phone?  It's not showing in my profile to allow me to disable it.

    How do I get this STUPID U2 music off my phone?  It's not showing in my profile to allow me to disable it.

    https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/offerOptOut

  • How do I get this stupid U2 album off of my IPhone?

    This has got to be the most idiotic marketing stunt ever.  Shame on Apple for burning $100MM of shareholder money to do it. I have spent the last half hour trying to get this stupid U2 album off of my IPhone.  I tried doing it from my laptop and hid it in the ITunes Store there, but it is still showing up on my IPhone "in the cloud" ... any idea how I get it out of the cloud ... or will I just have to hate Apple forever for messing with my IPhone without my permission?

    What an odd reaction to a free gift.
    If your parents or children gave you a gift that you do not like, would you react this way?
    Have you taken leave of all reason?
    You have been given a free gift.  You can choose not to listen to it.  You can delete it from your library.
    iCloud will allow you to redownload it in the future, should you choose to do so.  You can also choose to never download it again.
    It seems as if you are greatly over reacting to a free gift.
    How dare Apple and U2 give you something for free against your will.  The nerve.

  • How do I get my display to turn off during playback?

    Ever since I updated my iPod Touch to version 5.1.1, my display won't turn off while I am listening to music. I hadn't changed any settings, but I did check them just to make sure, and my auto-lock is still set to 1 minute.
    I don't like my screen to be wasting my battery while I'm listening to music for an hour or two. Also it's annoying when I take my iPod out of my pocket and inadvertently skip tracks because of touching the screen that is still on. The display turns off normally when I'm on my home screen. How can I fix this?

    So the screen stays illuminated and doesn't go to sleep even after the 1 minute marker is up?  Have you verified that by watching the display for that minute?
    Have you tried a hard reset to see if that makes a difference? To do this, press and hold both the Sleep/Wake and Home buttons together long enough for the Apple logo to appear.
    It might be also worth trying a reset of all settings. This does not erase any of your stored content.  Head to Settings -> General -> Reset and tap Reset All Settings.
    B-rock

  • How do I get my monitor to turn off after use?

    For some reason my monitor will not turn off.I have gone to setting to correct this,but that doesn't work either.

    Next try
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:       
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • I have an Iphone5 .. thought reported asked for help to find to find my iphone.  this deactived my phone.  how do i get the deactivate 'beacon' turned off?

    I have an Iphone 5.  I thouht I'd lost I phone in an Wal-Mart.   A Wal-Mart clerk was trying to be helpful and got her Iphone and reported it lost and deactivated.
    Eventually, I found the phone.  It was completely cleared and the phone had a message to take it to my service provider.  I spent 2.5 hours at the Sprint office.  The Sprint Tech was finally told to contact an Apple Tech who said to downloand a I tunes account accout and then the phone would work .. it didn't.
    There seems to be some sort of program that needs to be done to the phone itself to turn off the deactivation beacon to the phone .. help .. does anyone know how to help me???
    thanks!!

    To be honest it sounds like phone is locked to disabled screen and needs to be DFUed and restored in itunes.
    Go to youtube and type in DFU. Watch movie and do the same and then restore in itunes. That part should not be a problem for Sprint tech if he knows anything. Or for you if you follow instructions here.
    http://support.apple.com/kb/ht1414
    After that Sprint may need to undo whatever they have done to blacklist.

  • I can only go back one page at a time because the drop-down jump back multiple pages feature is missing; how do I get this feature back?

    On Firefox 3.6 the back and forward buttons also had a drop-down menu to enable me to jump back to one of the last, say, 10 pages I had viewed rather than only go back one at a time. Also, the reload button appears to be missing and I can't figure out how to bring these back. Otherwise, an awesome upgrade; thanks for all your hard work on this fantastic product.

    You can right-click either Back or Forward button to open the tab history list.

  • Maybe you are looking for

    • Objective Setting & Appraisals - Status Flow

      Hello, I'm working on OSA module. When i configure the status flow, i have two options regarding the state of the appraisal after status change: - Save and Change to Display Mode - Save and Exit Appraisal Document. My requirement is that the appraisa

    • Web Service Error in SSIS

      Dear All,      I have a web service, which is used to convert one currency type to another currency. With help of web service task calling that web service in SSIS package.  After configuration I tested connection and downloaded WSDL file General Tab

    • Import mailboxes in Lion is creating a mailbox with a number

      Sorry for my English first, It is not my language. I had a problem after changing the name of a folder in Mail.app, some mails diseppear. So I decide to reimport the mailbox still present inside user/library/Mail. My emails were correctly imported bu

    • BPM Admin center automatic startup

      Hi is there any way that weblogic startup automatically the bpm admin center so I only write the url of the bpm workspace??? I understand there's a way to do it automatically How do I make the "install as service" in unix thanks Edited by: Diego Guil

    • "Can Repair Permissions: no". Why?

      Hello, My computer's hard disk has 5 partitions (except Recovery HDs), whose 4 have valid Mac OS system installed (10.6, 10.5, 10.8 and 10.7). I'm running 10.6 generally. When I launch Disk Utility, I can verify and repair 3 partitions: 10.6, 10.7 an