I have a question: Wheres the Repeat function

how can i get a album to be on repeat like on the other ipods? Is this function missing from the touch?

a simple look in the manual would have revealed the answer:
tap the album cover in while-playing-screen and the music playback controls appear.

Similar Messages

  • I have a question about the Siri function.

    Here in Belgium, we speak Dutch and also French and English. But I think when you use the Siri function it is always easier to use it with your own language ( Dutch). 28th October, the iphone4S will be launched here in Belgium, but only with a Englisch version of the Siri function. So my question is that you have any idea when te Dutch version will be available in Belgium, or when i buy an iphone 4S with English version that I can update it to a Dutch version when it will be launched..
    Thank you for helping
    Dylan

    Nobody here can tell you anything more about Apple's plans than what they have already publicly stated, which is that more languages were promised for later (including Japanese, Chinese, Korean, Italian, and Spanish in 2012).

  • Where is the REPEAT Function on the New Nano?

    Can someone from Apple please explain to me why in the world would your techs have forgotten to incorporate the REPEAT function into the new Nano (7th Gen). I know that I can SHUFFLE my music, but I rarely ever use that option.
    What I want is to be able to REPEAT a playlist (or album) over and over and over again. Why can we no longer do this?

    Tap the screen while a song is playing and then tap the repeat icon.

  • Hello, I have a question regarding the sharing/exporting on imovie. Whenever I click the share button all the normal options pop up, but when I actually click where I want to share it to nothing happens.  If you know what's wrong please let me know.

    Hello,  I have a question regarding the sharing on iMovie.  I have just recently purchased an Elgato Gaming Capture HD and I then finished my recording with that and put it into imovie.  I worked long and hard on the project and when I go click the share feature on iMovie all the noral options pop up and when I actually click where I want to share it to nothing at all happens.  If you know what is wrong/ what I am doing wrong please let me know.
    Thank you.
    PS:  I am using iMovie 10.0.6.

    /*line 957 error */
         public void select()
              for (count = 0; count <= p; count ++ )
                   if(P[count] != null){ /* validation */
                   m = (int)(P[count].getX());
                   n = (int)(P[count].getY());
                   if (Math.pow(-1, m + n) == 1)
                        piece[m][n].setBackground(wselect);
                   else
                        piece[m][n].setBackground(bselect);
              step = 2;
         }

  • First question - I have Acrobat 9 on my desktop and the license seems to have been messed up.  I tried to download and fis but I asked me for a disk.  I don't have any idea where the "disk" is.  Can I get the license update without that disk?

    First question - I have Acrobat 9 on my desktop and the license seems to have been messed up.  I tried to download and fis but I asked me for a disk.  I don't have any idea where the "disk" is.  Can I get the license update without that disk?
    Second question - In anticipation of not being able to do that, I bought (at University bookstore) Acrobat XI Pro - do I need to uninstall the 9.0 Pro version before I try to install the XI version?

    If you still have your serial number for Acrobat Pro there is a link to the installer here:  Download Acrobat products | 9, 8

  • I hava a class where the printout is in dos.....

    I hava a class where the printout is in dos now I want it to print out itin a Gui application or applet instead how do I do.
    Here is the class file:
    import filenet.vw.api.*;
    public class QueueSample extends Object
    public QueueSample(VWSession vwSession, Logger logger, String queueName)
    QueueHelper queueHelper = null;
    VWQueue vwQueue = null;
    try
    logger.logAndDisplay("\n~ Starting QueueSample execution.");
    queueHelper = new QueueHelper(vwSession, logger);
    if (queueName != null)
    vwQueue = vwSession.getQueue(queueName);
    else
    String[] queueNames = queueHelper.getQueueNames(false);
    if (queueNames == null || queueNames.length == 0)
    logger.log("No queues found.");
    return;
    else
    // iteratively get queues until first one with available elements is found.
    for (int i = 0; i < queueNames.length; i++)
    vwQueue = vwSession.getQueue(queueNames);
    if (vwQueue != null)
    if (vwQueue.fetchCount() > 0)
    break;
    // clear our reference
    vwQueue = null;
    if (vwQueue == null)
    logger.log("Unable to retrieve a queue!");
    return;
    else
    // display the contents of the queue
    queueHelper.displayQueueContents(vwQueue);
    catch (Exception ex)
    if (logger != null)
    logger.log(ex);
    else
    ex.printStackTrace();
    finally
    if (logger != null)
    logger.logAndDisplay("~ QueueSample execution complete.\n");
    //{{INIT_CONTROLS
    public static void main(String args[])
    String queueName = null;
    String fileName = null;
    Logger logger = null;
    SessionHelper sessionHelper = null;
    VWSession vwSession = null;
    QueueSample sampleClass = null;
    try
    // did the user supply enough arguments?
    if (args.length < 3 || (args.length > 0 && args[0].compareTo("?") == 0))
    System.out.println("Usage: QueueSample username password router_URL [queue_name] [output_file]");
    System.exit(1);
    // the queue name is optional
    if (args.length > 3)
    queueName = args[3];
    // the file name (for output) is optional
    if (args.length > 4)
    fileName = args[4];
    else
    fileName = new String("QueueSample.out");
    // create and initialize the logger
    logger = new Logger(fileName);
    // create the session and log in
    sessionHelper = new SessionHelper(args[0], args[1], args[2], logger);
    vwSession = sessionHelper.logon();
    if (vwSession != null)
    // create the sample class
    sampleClass = new QueueSample(vwSession, logger, queueName);
    catch (Exception ex)
    if (logger != null)
    logger.log(ex);
    else
    ex.printStackTrace();
    finally
    // logoff
    if (sessionHelper != null)
    sessionHelper.logoff();
    }

    I just created this "remote debugger" last week because I wanted to get runtime output from my servlets without having to resort to finding the server logs...scanning them...etc. It can also be used to log info locally. Here is the code for the screen logger:
    package com.mycode.remotedebugger.applet;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.*;
    public class CRemoteDebugger extends JApplet implements Runnable{
       boolean isStandalone         = false;
       static ServerSocket m_socket = null;
       JScrollPane jScrollPane1     = new JScrollPane();
       static Thread runner         = null;
       static Socket connection     = null;
       BorderLayout borderLayout1   = new BorderLayout();
       JTextArea jTextArea1         = new JTextArea();
        * Constructs a new instance.
        * getParameter
        * @param key
        * @param def
        * @return java.lang.String
       public String getParameter(String key, String def) {
          if (isStandalone) {
             return System.getProperty(key, def);
          if (getParameter(key) != null) {
             return getParameter(key);
          return def;
       public CRemoteDebugger() {
        * Initializes the state of this instance.
        * init
       public void init() {
          try  {
             jbInit();
          catch (Exception e) {
             e.printStackTrace();
       public boolean isConnected()
          return m_socket != null;
       private void jbInit() throws Exception
          this.setSize(new Dimension(400, 400));
          this.getContentPane().add(jScrollPane1, BorderLayout.CENTER);
          jScrollPane1.getViewport().add(jTextArea1, null);
          runner = new Thread(this);
          runner.start();
       public void run()
          try {
             m_socket = new ServerSocket(6666);
             while(true)  {
                InetAddress ia = InetAddress.getLocalHost();
                connection = m_socket.accept();
                InputStream is = connection.getInputStream();
                BufferedReader br = new BufferedReader(new InputStreamReader(is));
                String strLine = br.readLine();
                while(strLine != null)  {
                   jTextArea1.append(strLine + "\n");
                   jTextArea1.setCaretPosition(jTextArea1.getDocument().getLength());
                   strLine = br.readLine();
          } catch(Exception e)  {
        * start
       public void start() {
         setLookAndFeel();
        * stop
       public void stop() {
        * destroy
       public void destroy() {
        if(m_socket != null)  {
          try  {
             m_socket.close();
          } catch (IOException ioe)  {
          m_socket = null;
        if(runner != null)
          runner = null;
        if(connection != null)  {
          try {
             connection.close();
          } catch(IOException ioe)  {
          connection = null;
        * getAppletInfo
        * @return java.lang.String
       public String getAppletInfo() {
          return "Applet Information";
        * getParameterInfo
        * @return java.lang.String[][]
       public String[][] getParameterInfo() {
          return null;
        * main
        * @param args
       public static void main(String[] args) {
          CRemoteDebugger applet = new CRemoteDebugger();
          applet.isStandalone = true;
          JFrame frame = new JFrame();
          frame.setTitle("Remote Debugging");
          frame.getContentPane().add(applet, BorderLayout.CENTER);
          applet.init();
          applet.start();
          frame.setSize(400, 420);
          Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
          frame.setLocation((d.width - frame.getSize().width) / 2, (d.height - frame.getSize().height) / 2);
          frame.setVisible(true);
          frame.addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
              if(m_socket != null)  {
                 try  {
                    m_socket.close();
                 } catch (IOException ioe)  {
                 m_socket = null;
              if(runner != null)
                runner = null;
              if(connection != null)  {
                 try {
                   connection.close();
              } catch(IOException ioe)  {
              connection = null;
               System.exit(0);
       void setLookAndFeel(){
          try {
             UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
          catch(Exception e) {
             e.printStackTrace();
    }I compiled this and put it into a jar file for easy running via a shortcut on my desktop.
    Here is the static function you would put either in your application/applet or perhaps in some utility class that you import:
    package com.mycode.common.utilities;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.*;
    public class RemoteDebugMessage
       static Socket m_socket            = null;
       static PrintWriter serverOutput   = null;
        * Constructor
       public static void Print(String strClient, int nPort, String strMessage)
          try {
             m_socket = new Socket(strClient,nPort);
             if(m_socket != null)  {
                OutputStream os = m_socket.getOutputStream();
                if(os != null)  {
                   serverOutput = new PrintWriter(new BufferedOutputStream(m_socket.getOutputStream()),true);
                   if(serverOutput != null)  {
                      serverOutput.println(strMessage);
          } catch(IOException ioe)  {
          try {
             m_socket.close();
             m_socket = null;
             serverOutput = null;
          } catch(IOException ioe)  {
    }The "server" side listens on port 6666 (you can always change to whatever port you like and recompile) Then, in your code where you wish to watch messages in realtime, you call the static function above:
    RemoteDebugMessage.Print("MachineName",6666,"This is my message!");

  • I'm having trouble with the repeat function on iTunes 11.

    I'm having trouble with the repeat function on iTunes 11.  The buttons are there but will not allow me to repeat an album when selected under artist from remote app on iPhone.  I have downloaded the update for the remote app but the repeat function now repeats all albums under that artist name.  Selecting the album directly under albums works but is not as easly to access.  Any thoughts?

    Sorry, downgrading is not supported.

  • I have 2 questions regarding the iphone 5. 1 How do i get my yahoo mail set up. I tried the setting it up as both a yahoo mail and other mail. 2. I seem to have lost my notes on my iphone 5 but I have them on my ipad. How can I use cloud to sync my notes?

    I have 2 questions regarding the iphone 5. 1 How do i get my yahoo mail set up. I tried the setting it up as both a yahoo mail and other mail. 2. I seem to have lost my notes on my iphone 5 but I have them on my ipad. How can I use cloud to sync my notes?

    I will address your second question.
    First, make sure your iPhone and iPad have absolutely identical Apple IDs.  If they do, use that Apple ID in Settings > iCloud on your iPhone to select the "Notes" option.  Lo and behold, all your iCloud notes should appear on your iPhone.

  • Some question about the renegotiation function in SRM Contract (GOA)

    Hi All Expert,
    We are on SRM 5/4.6,  there is a question about the renegotiation function in SRM GOA.
    Can we renegotiate the price for some parts in the GOA items with this function ( e.g. Only renegotiate one item in the contract) ?
    Will the item price updated automatically after the renegotiation?
    Many thanks in advance!!!
        Wendrin

    Hi Sanjeev,
    Many thanks for your help.
    One more question, if I add a new item when we renegotiation, will it be transfered to contract and create a new item after that?
    Thanks and best regards
    Wendrin

  • Hallo! I have a question to the following problem.

    Hallo! I have a question to the following problem. I have to compare data. I get every 10 ms 3 data from a sensor. I must save the last 5 measurements. Compare the data and then I have to make a decision. Can I save the last 5 measurements with a shift register?? How can I save it, because I get continuously the data in the shift register. How can I compare the data when I put them in a cluster, save a cluster every 10ms and the I want to compare them with each other.
    I thank you very much for your help!
    thomas

    If I understand you correctly, you need to operate on the last five data sets from your three sensors.
    Simply expand the right shift register to store the data from the last few iterations (see attached image). Since I don't know how you need to compare the data, I have just placed a generic VI that operates on the history data.
    (Please attach your VI if you want me to give you a more specific solution.)
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    processing.gif ‏4 KB

  • I have to guess where the comma is the @ sign is and various signals now tell what am i doing wrong on the apple usb keyboard

    I have to guess where the comma is the @ sign is and various signals now tell what am i doing wrong on the apple usb keyboard

    Hello
    This can be verry usefull
    http://support.apple.com/kb/HT2841?locale=en_US
    How to identify keyboard localizations
    HTH
    Pierre

  • I have a situation where the administrator password is rejected when attempting a software update. I think this happened because of syncing a iPad to the iMac.  How can I reset the Software Update back to the administrator password?

    I have a situation where the administrator password is rejected when attempting a software update. I think this happened because of syncing an iPad to the iMac.  How can I reset the Software Update back to the administrator password?

    You can reset the password with the install disk.

  • I have a question for the Adobe customer service dept., not for the "community" as a whole!

    I have a question for the Adobe Customer Serice Dept., not the "community" as a whole. And I expect an answer! I want to know why I am expected to sign up for another service package when I just paid $25+ yesterday to be able to convert files back and forth from a PDF to a Word file and then back to a PDF. What kind of rip-off is this?

    Hi,
    I am very sorry that you had unpleasant experiences with our customer service.
    If you would like to export your PDF files to MS Word files then ExportPDF tool will do the job.
    If you would like to convert MS Word files to PDF then ConvertPDF tool will the the job.
    If you would like to export your PDF files to Word file then convert the Word files back to PDF then PDF Pack service is required which includes ExportPDF/Convert to PDF/Combine Files tools.
    Please let me know if you have any questions/issues.
    Thank you.
    Hisami

  • Can I turn off the repeat function in podcasts in my 7th Gen iPod, so I can listen to only one podcast?

    In my 4th Gen iPod, podcasts would not repeat unless I went to settings and clicked on the repeat function.  My 7th Gen iPod repeats all podcasts automatically, which I find annoying, and I want to play podcasts one at a time.  Is there a way to turn off the automatic repeat function?

    Thanks alot!

  • Hello my company Favorites I would like to first thank you for this wonderful program I have a question about the program. How can I Arabization program In your response to the spread accept me thanks and respect

    Hello my company Favorites I would like to first thank you for this wonderful program I have a question about the program. How can I Arabization program In your response to the spread accept me thanks and respect

    Hi ,
    You might want to refer the following link to find your serial number and activate your software .
    Here is the link for the same.
    https://helpx.adobe.com/x-productkb/global/find-serial-number.html
    Let us know how it goes .We'll do the best possible to get your issue fixed.
    Regards
    Sukrit Dhingra

Maybe you are looking for

  • Printing the form using output type and Standard program

    Hi all,    I am a beginner on SAP.Now i get a doc for smartforms.    It need to print a form.And need to create a output.I don't know how to create it and how to use it.    And how to use the standard program to print the smartfroms.    Can you give

  • SQL Developer 1.5 doesnot show SubPartitions

    I am not able to see the SubPartitions in the RHS window for a partitioned table. There is only Partitions TAB bot not SubPartitions TAB. My SQLD - 1.5.0.53 on windows XP Database Oracle 10.2.0.3 - Jayant

  • How to remove/remap keyboard shortcut mapping in firefox ?

    I have a text editor that uses CTRL-SHIFT+P for macro playback and pressing the sequence in my text editor is always launching an instance of firefox. How can I remove/remap this kb shortcut in firefox ?

  • BUS_TRANS_MSG:Technical error Could not determine module name

    Hi, 1) Sales documents were not replicating to R/3 system,bdocs failed with the following Techical error. Could not determine module name: BUS_TRANSACTION_MESSAGE GENKEY: REP_GET_RECIPIENT Service that caused the error: SMOH_REPLICATION_WRAPPER_MSG.

  • Salutation in Portal Welcome Area

    Hello, we have an integrated BI Portal 7.0 on BI 7.0. Our problem is the salutation inside the welcome are. As our UME is the SAP locale we can change the language of the user with transaction su3. Unfortunately changing the language does not have ef