Cannot find setting 'speakers'

I cannot find the setting 'speakers' on my ipod nano 5th gen. I found it  a few days ago, but forgot.

iPod Nano 5th Gen. User Manual

Similar Messages

  • Trying to stream from itunes on mbpro to two airports and cannot find "multiple speakers" command.  Help?

    I have two airports on our bus.  I am set up to stream wireless to stereos but cannot find the "Multiple speakers" command.

    see your other post
    https://discussions.apple.com/thread/3099786?tstart=0

  • Cannot find Set Automatic Timezone on my iphone

    I cannot find the setting to turn on Automatic Timezone. Is this the difference between a 16GB and 32GB iphone?

    Settings>Mail, Contacts, Calendars>Time Zone Support>On/Off.

  • After upgrading to iOS7.0.2 I cannot find setting to only have 100 most emails in my inbox.   Prior version allowed me to do this

    Prior to upgrading to iOS 7 I was able to set email inbox to keep only 100 most recent emails.
      I tried iOS 7.0.2 and still cannot find setting

    Actually, don't use that link I posted, i didn't notice i'd pasted the wrong one
    http://www.apple.com/feedback/
    this is the right one. Sorry. Should have read closer.

  • Error : cannot find setter method....

    hi i am using Ant 1.6 and struts framework .....to run a simple program to print a name
    i have followed all the basic steps ....to create a struts application
    now the problem is
    when i am trying to acces the applicatin it is giving
    org.apache.jasper.JasperException: /index.jsp(9,2) Unable to find setter method for attribute: name
    the form tag in index.jsp is
    <html:form action="Name"name="nameForm" type="NameForm">
    the bean is
    package com;
    //import statements
    import javax.servlet.http.HttpServletRequest;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionMapping;
    public class NameForm extends ActionForm {
    String name = null;
    public String getName() {
        return name;
      public void setName(String name) {
        this.name = name;
      public void reset(ActionMapping mapping, HttpServletRequest request) {
        this.name = null;
    }  the struts-config.xml file...
    <?xml version="1.0" encoding="ISO-8859-1" ?>
        <!DOCTYPE struts-config PUBLIC
              "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
              "http://struts.apache.org/dtds/struts-config_1_3.dtd">
        <struts-config>
         <form-beans>
         <form-bean name="nameForm" type="com.NameForm"/>
         </form-beans>
         <action-mappings>
         <action path="/Name"
                   type="com.NameAction"
                   name="nameForm"
                   input="/index.jsp">
                   <forward name="success" path="/displayname.jsp"/>
                   <forward name="failure" path="/index.jsp"/>
         </action>
         </action-mappings>
        </struts-config>
       thanks....in advance

    Hal-.- wrote:
    I downloaded Lucene from its homepage, I have tried Lucene 2.3.0 and Lucene 2.2.0, but same errors occurs which is cannot find symbol method Text.
    I checked class Field under Lucene, it doesn't have Text function. Well there you go. You can't call methods that don't exist.
    What should I do to add two Fields "path" & "contents" into Document?It seems very likely that the object that represents an indexed document, has some way to express the concepts of "path" and "contents". You should probably just read the docs some more.
    But other than that I have no idea. Ask on a Lucene forum.

  • ITunes on  iMac cannot find remote speakers, but iTunes on MacBook can!!!

    I have a home wireless network provided by a third party ADSL modem, and an Airport Express connected to a stereo system. My MacBook has no problem playing iTunes music remotely through the AE/stereo system. The WEIRD thing is that my iMac Intel Core Duo is not able to establish a connection to the same AE/stereo system - even though the MacBook and iMac are located at almost the same spot, they are running the same version of OSX and iTunes (all my software is up to date on both computers), and both have no problems connecting to the internet through the wireless network.
    What could be wrong with my iMac, or with iTunes on the iMac?
    iMac Intel Core 2 Duo   Mac OS X (10.4.9)  

    I have the same problem. I have two Airport Express units. The base is connected to the Cable/Modem for internet use. I have a Bose surround sound system also plugged into that Express unit. The other Express was used for extending the range for my old Titanium Laptop that recently bit the dust. (Waiting for Leopard before I leap;)
    I was able to use iTunes music from my iMac by selecting the "speakers" I wanted. Either Express, I tried them both. I was quite successful in this remote streaming of my music library for a couple weeks. However, in the past 5 days I can not select the "speakers", they are no longer recognized by iTunes. I made sure the iTune preference to scan for wireless systems was checked. It was.
    The next option was to try to reconfigure using the program Airport Admin Utility. The AAU does not even find either Express unit. I did a factory reset on "extra" Express unit and connected it by my Ethernet LAN. Then the Express is detected.
    One would think that my iMac or Express did not function as a wireless system. However, I am sending this message from my iMac, through the base Express that is connected to the internet. That function thankfully does work.
    Can it be a corrupted Airport Admin Utility? I tried to find a download on the Apple site to no avail. I tried to find it on my Tiger install CD's.
    Any ideas?

  • Custom Tag: Cannot find setter method for attribute

    This has been working fine in appserver6.5.
    In the jsp:
    =======
    <display:table configFileDir="theDirectory"...>
    =======
    The tld entry:
    <tag>
    <name>table</name>
    <tagclass>org.apache.taglibs.display.TableTag</tagclass>
    <teiclass>org.apache.taglibs.display.TableTagExtraInfo</teiclass>
    <bodycontent>JSP</bodycontent>
    <attribute>
    <name>configFileDir</name>
    <required>false</required>
    <rtexprvalue>false</rtexprvalue>
    </attribute>
    =============
    In TableTag.java:
    =============
    private String configFileDir = null;
    public void setConfigFileDir( String v )
         v = v.trim();
    this.configFileDir = v;
    ============
    Help, I'm going nuts.

    Then you also need to create a UI element that extends HtmlPanelGrid
    that has a tModelKey member and getters/setters. That object will hold
    the information so that you can use it in your bean.Whoops... ignore that! Sorry. Attributes are simply stored in the component map component.getAttributes().
    Add to your Tag class:
    public void setProperties(UIComponent component) {
        super.setProperties(component);
        Tags.setString(component, "tModelKey", tModelKey);
    public void release() {
        // see above
    }Where Tags.java is:public class Tags {
        public static void setString(UIComponent component, String attributeName, String attributeValue) {
            if (attributeValue != null) {
                if (UIComponentTag.isValueReference(attributeValue)) {
                    setValueBinding(component, attributeName, attributeValue);
                } else {
                    component.getAttributes().put(attributeName, attributeValue);
        public static void setValueBinding(UIComponent component, String attributeName, String attributeValue) {
            FacesContext context = FacesContext.getCurrentInstance();
            Application app = context.getApplication();
            ValueBinding vb = app.createValueBinding(attributeValue);
            component.setValueBinding(attributeName, vb);
    }

  • Cannot find setting to 'manually manage' ipod

    I would like to connect my shuffle to a second computer, also running iTunes. I rang Apple Customer Support who advised I needed to plug in iPod on main pc and tick the 'Manually Manage Music' box on the Summary Page of Preferences and everything would work ok. The box is not there! Enable Disk Use is along with Open iTunes when this ipod is connected. I do not need to sync the iPod with the second computer. Thanks.

    I would like to connect my shuffle to a second computer, also running iTunes. I rang Apple Customer Support who advised I needed to plug in iPod on main pc and tick the 'Manually Manage Music' box on the Summary Page of Preferences and everything would work ok. The box is not there!
    The iPod shuffle doesn't have that capability; it can only contain content from a single iTunes library at a time.
    (46264)

  • When I open up my emails and close them, they disappear and I cannot find them.  Where are they going?  Is there a setting that I have to change?

    Once I open up my emails they disappear and I cannot find them anymore.  Is there a setting that I need to change to stop this from happening?

    Are you tapping any of the icons at the of the Mail app after opening them, or do they disappear without you doing anything ? And if you have more than one account on the iPad, does it happen on your other accounts as well ?

  • I received an Iphone 5 as a gift two days ago. The first thing I did was set up ICloud for photos. Itunes would not allow me to add songs to my new phone without restoring it, yet when I did this, it deleted all photos. And I cannot find them anywhere.

    I received an Iphone 5 as a gift two days ago. The first thing I did was set up ICloud for photos. Itunes would not allow me to add songs to my new phone without restoring it, yet when I did this, it deleted all 129 photos of my graduation and friends from the past two days. And I cannot find them anywhere, photo stream, ICloud, nothing. Where can I get back my memories?

    Were the photos taken by your new iPhone?  If so, did you not import them off your phone to your computer (as you would any other digital camera) before the restore?  If not, restoring wiped the data off the phone and your pictures are gone.
    Sounds like a good time to (re)read the User Guide.

  • Problems setting up my TC. Have just bought new iMac(OS 10.6.8) and  TC. I set it up. iMac cannot find it. I have tried direct connection with an ethernet cable to Mac or my wireless router but nothing. Just a flashing orange light. Help for a simpleton p

    Problems setting up my TC. Have just bought new iMac(OS 10.6.8) and  TC. I tried to set it up. iMac cannot find it. I have tried direct connection with an ethernet cable to Mac or direct to my wireless router but nothing. Just a flashing orange light. Help for a simpleton please. Have tried reseting TC, but to no avail.

    Just updated from 10.6.7 ---> 10.6.8 and had the same issue. Despite having done a clean install from 10.6 and got everything back off my TC, now Time Machine can't find it!
    Green light is on, ethernet cable conected, network CP says its conected but nothing. Airport Utility can't find it. Hit reset button, Orange flashing light but still no show in Airport Utility.
    But I know its there, as rebooting from 10.6 SL disk shows the backups are still ok?
    Hmm, ideas anyone?
    SBB

  • I actually need help but cannot find the answer. Please.......Lately when open a new tab it does not open with a blank page. I don't want to set my homepage as

    I actually need help but cannot find the answer.
    Please.......Lately when open a new tab it does not open with a blank page. I don't want to set my homepage as blank as when I first open Firefox, it automatically loads my hotmail page. But then if I open other pages I don't get a blank page. Help, please?
    Thank you.
    ''[Personal information removed by moderator. Please read [[Forum and chat rules and guidelines]], thanks.]''

    hello, please refer to [[New Tab Page – show, hide and customize top sites]] in order to switch the feature off.

  • I am trying to set up my apple tv on a sony KDL - 40xbr4. The remote is a sony RM-V302. I plugged it into the HDMI IN on the side of the TV but cannot find out how to get to that input. I am at a winter rental property and brought my Apple TV with me.

    I am trying to set up my apple tv on a sony KDL - 40xbr4. The remote is a sony RM-V302. I plugged it into the HDMI IN on the side of the TV but cannot find out how to get to that input. I am at a winter rental property and brought my Apple TV with me. I did check internet for solutions. The instructions I found said to use a "home button" on the remote.  There isn't one. I sure would appreciate help if someone knows a solution.  My first post - hope I did this right.

    if its anything like my Sony, theres a button top left corner that upon each press i get an audible bleep and the AV inputs come up on screen, i then cycle down to whichever input i wish to select!
    in case your remote is different, the button on my remote has a square with a slightly smaller square just overlapping the first square.
    hope that helps?
    rgds Lee.

  • My iPod Nano 6th generation iLive speaker system quit on me and now I cannot find a compatible speaker system.  I don't want tiny personal speakers, I use this for music in the family room.

    I have 2 iPod Nano 6th generation.  I had them setup with different music from iTunes and I had an iLive Bluetooth docking and speaker system that charged and played them with speakers spaced in the family room.  Not a little personal setup but for reasonably loud music for the whole room.  My iLive system died on me.  It had the 20 pin place to plug in the iPod nano and a clock and the two speakers that were bluetooth.  It was the perfect setup for me.  Now that model has been discontinued and I cannot find anything like it.  Does anyone know what a good option is?  These iPods are only a couple of years old and now obsolete because they don't make anything to play them on.  I don't use earbuds, it's not what I bought them for.  One has our jazz music collection, the other has Christmas music.  I want to hear it throughout the house.

    Sorry typo it had a 30 pin place to plug in the iPod Nano

  • I accidentally set up my new ipad in itunes under the name of my existing ipad and need to set it up as a new device. Help. I cannot find a way to start fresh.

    I accidentally set up my new ipad in itunes under the name of my existing ipad and need to set it up as a new device. Help. I cannot find a way to start fresh.

    That's probably not a good idea to try to share apps since you will have to switch ID's each time you update apps and sync apps from iTunes.
    And technically - according to Apple's terms - you cannot share apps using different ID's. You can actually lock yourself out of an ID for 90 days if you switch ID's and if you associate the iPad with another ID.
    The bold type is a copy and paste from the site that I referenced below.
    When you turn on iTunes Match or Automatic Downloads, or when you download past purchases on an iOS device or computer, that device or computer becomes associated with your Apple ID. This article describes how to manage these associations.
    http://support.apple.com/kb/ht4627

Maybe you are looking for