PLEASE HELP WITH SIMPLE RESET QUESTION!!!

This is probably extremely simple to resolve...my Nano is not syncing with my computer any more. I thought I should try resetting it. I looked at the manual and pressed MENU and the CENTRE BUTTON at the same time and waited for the Apple logo to appear. I tried several times but it did not work!
WHAT AM I DOING WRONG, PLEASE??

When you restore the ipod, you need to press the menu and select (centre) button together for about 6 seconds. Try to be sure that your finger on the centre button does not touch the wheel part, and that the one on the menu button is closer to the outside edge.
This page has more information http://support.apple.com/kb/HT1320

Similar Messages

  • Please help with simple Drag N Drop

    I’m desperate and need some help with this simple drag
    and drop. Here is the scenario…this animation is for a
    kindergarten course. I have 6 different colored teddy bears on the
    floor and the bears are to be placed on the middle shelf in the
    room, in no particular order. I have the code in place to drag the
    bears, and they return to their original location if dropped in the
    wrong area. Everything works, except I can’t make the bears
    stick to the target area. The target area has to be the same for
    all 6 bears. Can someone help me out with this?
    I have a feeling that the problem has something to do with my
    instance names, but I have tried everything I can think of and
    cannot get it to work. Is there some way I can post, send, or
    attach my .fla file for someone to look at? I’m desperate.
    PLEASE HELP!

    var startX3:Number;
    var startY3:Number;
    var counter3:Number=0;
    vf_A.addEventListener(MouseEvent.MOUSE_DOWN, pickUp3);
    vf_A.addEventListener(MouseEvent.MOUSE_UP, dropIt3);
    vf_E.addEventListener(MouseEvent.MOUSE_DOWN, pickUp3);
    vf_E.addEventListener(MouseEvent.MOUSE_UP, dropIt3);
    vf_I.addEventListener(MouseEvent.MOUSE_DOWN, pickUp3);
    vf_I.addEventListener(MouseEvent.MOUSE_UP, dropIt3);
    vf_O.addEventListener(MouseEvent.MOUSE_DOWN, pickUp3);
    vf_O.addEventListener(MouseEvent.MOUSE_UP, dropIt3);
    vf_U.addEventListener(MouseEvent.MOUSE_DOWN, pickUp3);
    vf_U.addEventListener(MouseEvent.MOUSE_UP, dropIt3);
    function pickUp3(event:MouseEvent):void {
    event.target.startDrag(true);
    reply2_txt.text="";
    event.target.parent.addChild(event.target);
    startX2=event.target.x;
    startY2=event.target.y;
    function dropIt3(event:MouseEvent):void {
    event.target.stopDrag();
    var myTargetName:String="target"+event.target.name;
    var myTarget:DisplayObject=getChildByName(myTargetName);
    if (event.target.dropTarget != null &&
    event.target.dropTarget.name == "instance112") {
    reply2_txt.text="Good Job!";
    event.target.removeEventListener(MouseEvent.MOUSE_DOWN,
    pickUp3);
    event.target.removeEventListener(MouseEvent.MOUSE_UP,
    dropIt3);
    event.target.buttonMode=false;
    event.target.x=myTarget.x;
    event.target.y=myTarget.y;
    var mySound:Sound = new vowels_NAR_goodjob();
    mySound.play();
    counter3++;
    } else {
    reply2_txt.text="Try Again!";
    event.target.x=startX2;
    event.target.y=startY2;
    var mySound2:Sound = new vowel_NAR_nopetryagain();
    mySound2.play();
    if (counter2==5) {
    reply2_txt.text="Great Job! You did it!";
    gotoAndPlay(3300);
    vf_A.buttonMode=true;
    vf_E.buttonMode=true;
    vf_I.buttonMode=true;
    vf_O.buttonMode=true;
    vf_U.buttonMode=true;

  • Please help with simple esle code

    Hi all
    Please can someone tell what I am doing Wrong with tis code.
    I just can not see it
    Please Help Me
    Craig
    void ShippAddressjCheckBox_actionPerformed(ActionEvent e) {
    if (ShippAddressjCheckBox.setSelected(true ));
    CopyAddress1();
    else (ShippAddressjCheckBox.setSelected(false ));
    ClearShippingAddress();
    }

    Thanks for that
    this is what I have done
    void ShippAddressjCheckBox_actionPerformed(ActionEvent e) {
    if (ShippAddressjCheckBox.setSelected(true ))
    CopyAddress1();
    else if (ShippAddressjCheckBox.setSelected(false)) {
    ClearShippingAddress();
    I can seam to get it to work
    Thanks

  • URL: newbie needs help with simple programming question!

    Hi everyone,
    Please direct me to a FAQ or other resource, or help me with this problem:
    I want to create a text field (or similar container) that contains both ordinary text AND a URL/hyperlink in it. For example, the following text might appear in the text field:
    "I have many _pictures_ from my vacation"
    where the word "pictures" is actually a hyperlink to a web site, and the other portions of the string are simple text.
    All advice and help is appreciated!
    -Dennis Reda
    [email protected]

    Well here is one way you code do it but if you do alittle research on them links above it will explain how this code works.Well it will explain how jeditorpane and hyperlinklistener work
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.event.*;
    import java.net.*;
    public class b extends javax.swing.JApplet implements HyperlinkListener  {
       JEditorPane field = new JEditorPane();
      public b() {
        Container pane = getContentPane();
        FlowLayout flo = new FlowLayout();
        pane.setLayout(flo);
        field.setPreferredSize(new Dimension(200, 25));
        field.setEditable(false);
        pane.add(field);
        setContentPane(pane);
         String gg1 = "<html><body>I have many_<a    href='http://www.home.com'>pictures</a>_from my vacation</body></html>";
         field.addHyperlinkListener(this);
         field.setContentType("text/html");
         field.setText(gg1);
      public void hyperlinkUpdate(HyperlinkEvent e) {
         if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
          try{
            URL url = new URL("http://www.msn.com");
            getAppletContext().showDocument(url,"_self"); 
            }catch(Exception r) {};
      public void init()  {
         b c = new b();
    ps hope this helped                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Please help with simple Classes understanding

    Working further to understand Class formation, and basics.
    At the Java Threads Tutorial site:
    http://java.sun.com/docs/books/tutorial/essential/threads/timer.html
    Goal:
    1)To take the following code, and make it into 2 seperate files.
    Reminder.java
    RemindTask.java
    2)Error Free
    Here is the original, functioning code:
    import java.util.Timer;
    import java.util.TimerTask;
    * Simple demo that uses java.util.Timer to schedule a task
    * to execute once 5 seconds have passed.
    * http://java.sun.com/docs/books/tutorial/essential/threads/timer.html
    public class Reminder {
        Timer timer;
        public Reminder(int seconds) {
            timer = new Timer();
            timer.schedule(new RemindTask(), seconds*1000);
        class RemindTask extends TimerTask {
            public void run() {
                System.out.println("Time's up!");
                timer.cancel(); //Terminate the timer thread
        public static void main(String args[]) {
            new Reminder(5);
            System.out.println("Task scheduled.");
    }Here is what I tried to 2 so far, seperate into 2 seperate files:
    Reminder.java
    package threadspack;    //added this
    import java.util.Timer;
    import java.util.TimerTask;
    * Simple demo that uses java.util.Timer to schedule a task
    * to execute once 5 seconds have passed.
    * http://java.sun.com/docs/books/tutorial/essential/threads/timer.html
    public class Reminder {
        Timer timer;
        public Reminder(int seconds) {
            timer = new Timer();
            timer.schedule(new RemindTask(), seconds*1000);
        public static void main(String args[]) {
            new Reminder(5);
            System.out.println("Task scheduled.");
    }and into
    RemindTask.java
    package threadspack;  //added this
    import java.util.Timer;
    import java.util.TimerTask;
    import threadspack.Reminder; //added this
    * http://java.sun.com/docs/books/tutorial/essential/threads/timer.html
    public class RemindTask extends TimerTask
    Timer timer; /**here, I added this, because got a
    "cannot resolve symbol" error if try to compile w/out it
    but I thought using packages would have negated the need to do this....?*/
         public void run() {
                System.out.println("Time's up!");
                timer.cancel(); //Terminate the timer thread
    }After executing Reminder, the program does perform, even does the timing, however, a NullPointerException error is thrown in the RemindTask class because of this line:
    timer.cancel(); //Terminate the timer thread
    I am not sure of:
    If I have packages/import statements setup correctly
    If I have the "Timer" variable setup incorrectly/wrong spot.
    ...how to fix the problem(s)
    Thank you!

    Hi there!
    I understand that somehow the original "Timer" must
    be referenced.
    This is a major point of confusion for me....I
    thought that when importing
    Classes from the same package/other packages, you
    would have directly
    access to the variables within the imported Classes.I think you have one of the basic points of confussion. You are mixing up the concept of a "Class" with the concept of an "Object".
    Now, first of all, you do not need packages at all for what you are trying to do, so my advice is you completely forget about packages for the moment, they will only mess you up more. Simply place both .class files (compiled .java files) in the same directory. Your program is executing fine, so that indicates that the directory in which you have your main class file is being included in your classpath, so the JVM will find any class file you place there.
    As for Classes/Objects, think of the Class as the map in which the structure of a building is designed, and think of the Object as the building itself. Using the same technical map the architect defines, you could build as many buildings as you wanted. They could each have different colors, different types of doors, different window decorations, etc... but they would all have the same basic structure: the one defined in the technical map. So, the technical map is the Class, and each of the buildings is an object. In Java terminology, you would say that each of the buildings is an "Instance" of the Class.
    Lets take a simpler example with a class representing icecreams. Imagine you code the following class:
    public class Icecream{
         String flavor;
         boolean hasChocoChips;
    }Ok, with this code, what you're doing is defining the "structure" of an icecream. You can see that we have two variables in our class: a String variable with the description of the icecream's flavor, and a boolean variable indicating whether or not the icecream has chocolate chips. However, with that code you are not actually CREATING those variables (that is, allocating memory space for that data). All you are doing is saying that EACH icecream which is created will have those two variables. As I mentioned before, in Java terminology, creating an icecream would be instantiating an Icrecream object from the Icecream class.
    Ok, so lets make icrecream!!!
    Ummm... Why would we want to make several icecreams? Well, lets assume we have an icecream store:
    public class IcecreamStore{
    }Now, we want to sell icecreams, so lets put icecreams in our icecream store:
    public class IcecreamStore{
         Icecream strawberryIcecream = new Icecream(); //This is an object, it's an instance of Class Icecream
         Icecream lemonIcecream = new Icecream(); //This is another object, it's an instance of Class Icecream
    }By creating the two Icecream objects you have actually created (allocated memory space) the String and boolean variable for EACH of those icecreams. So you have actually created two String variables and two boolean variables.
    And how do we reference variables, objects, etc...?
    Well, we're selling icecreams, so lets create an icecream salesman:
    public class IcecreamSalesMan{
    }Our icecream salesman wants to sell icecreams, so lets give him a store. Lets say that each icecream store can only hold 3 icecreams. We could then define the IcecreamStore class as follows:
    public class IcecreamStore{
         Icecream icecream1;
         Icecream icecream2;
         Icecream icecream3;
    }Now lets modify our IcecreamSalesMan class to give the guy an icecream store:
    public class IcecreamSalesMan{
         IcecreamStore store = new IcecreamStore();
    }Ok, so now we have within our IcecreamSalesMan class a variable, called "store" which is itself an object (an instance) of the calss IcecreamStore.
    Now, as defined above, our IcecreamStore class will have three Icecream objects. Indirectly, our icecream salesman has now three icecreams, since he has an IcecreamStore object which in turn holds three Icecream objects.
    On the other hand, our good old salesman wants the three icecreams in his store to be chocolate, strawberry, and orange flavored. And he wants the two first icecreams to have chocolate chips, but not the third one. Well, here's the whole thing in java language:
    public class Icecream{ //define the Icecream class
         String flavor;
         boolean hasChocoChips;
    public class IcecreamStore{ //define the IcecreamStore class
         //Each icecream store will have three icecreams
         Icecream icecream1 = new Icecream(); //Create an Icecream object
         Icecream icecream2 = new Icecream(); //Create another Icecream object
         Icecream icecream3 = new Icecream(); //Create another Icecream object
    public class IcecreamSalesMan{ //this is our main (executable) class
         IcecreamStore store; //Our class has a variable which is an IcecreamStore object
         public void main(String args[]){
              store = new IcecreamStore(); //Create the store object (which itself will have 3 Icecream objects)
              /*Put the flavors and chocolate chips:*/
              store.icecream1.flavor = "Chocolate"; //Variable "flavor" of variable "icecream1" of variable "store"
              store.icecream2.flavor = "Strawberry"; //Variable "flavor" of variable "icecream2" of variable "store"
              store.icecream3.flavor = "Orange";
              store.icecream1.hasChocoChips = true;
              store.icecream2.hasChocoChips = true;
              store.icecream3.hasChocoChips = false;
    }And, retaking your original question, each of these three classes (Icecream, IcecreamStore, and IcecreamSalesMan) could be in a different .java file, and the program would work just fine. No need for packages!
    I'm sorry if you already knew all this and I just gave you a stupid lecture, but from your post I got the impression that you didn't have these concepts very clear. Otherwise, if you got the point, I'll let your extrapolate it to your own code. Should be a pice of cake!

  • Please help with graphics2d shape question

    I have the following code that is supposed to be used to create "dog" objects for use in other graphics applets. However, there seems to be a problem with my setLocation method. My code is this:
    import java.awt.*;
    import java.awt.geom.*;
    import java.applet.*;
    public class Dog {
         Shape body;
         Shape tail1;
         public Dog() {
              body = new Ellipse2D.Double(0,0,100,50);
              tail1 = new Arc2D.Double(0,0,75,60,50,250,0);
         public void display(Graphics g) {
              Graphics2D g2 = (Graphics2D)g;
              g2.setColor(Color.blue);
              g2.draw(body);
              g2.draw(tail1);
         public void setLocation(double x, double y) {
              double bodyWidth = body.getWidth();
              double bodyHeight = body.getHeight();
              body.setFrame(x,y,bodyWidth,bodyHeight);
    }When i try to compile it, i get the following errors:
    E:\Java\Applets\Dog>javac dog.java
    dog.java:32: cannot resolve symbol
    symbol : method getWidth ()
    location: interface java.awt.Shape
    double bodyWidth = body.getWidth();
    ^
    dog.java:33: cannot resolve symbol
    symbol : method getHeight ()
    location: interface java.awt.Shape
    double bodyHeight = body.getHeight();
    ^
    dog.java:34: cannot resolve symbol
    symbol : method setFrame (double,double,double,double)
    location: interface java.awt.Shape
    body.setFrame(x,y,bodyWidth,bodyHeight);
    ^
    3 errors
    It acts as thougth those methods don't exist, but I have the api specification right in front of me that says setFrame is a valid method for class Ellipse2D.Double. Can anyone tell me what the problem is? Thanks for your time and help.
    Tom

    it acts as thougth those methods don't exist, Well, there is no getWidth() or getHeight() method for a Shape. These methods do exist for a Rectangle2D which you can create by using the getBounds method of Shape. For example:
    Rectangle2D rect=body.getBounds();
    double bodyWidth=rect.getWidth();
    double bodyHeight=rect.getHeight();;o)
    V.V.

  • Please help with a compatibiility question...

    Hi Folks-
    I wonder if anyone has a thought on this...I would like to record my band. I have a G4iBook, 1.42GHz with 512MB RAM. It's running OS 10.4.11. I have GarageBand 3.0.4. I want to get an Alesis MultiMix 12 Firewire. My plan is to go to our rehearsal studio and mic up the drums (kick, snare, 2 OH condensers), Bass DI, stereo keys DI, and 2 guitars DI. I would do this all in one pass. Then I would take everything home, do vocals and some guitar overdubs, then mix. My real question is- can the iBook and GarageBand handle all the data coming in without coughing up a lung? Also, does the Alesis work OK with GarageBand? It seems like an awful lot of mixer for the price.
    Thanks for any insight you can give!
    Mike

    Ummm, I THINK I only have 1 expansion slot, so that the machine only handles 1.5GB RAM. Will that be enough?
    Thanks again!
    Mike

  • Please help with a storage question for Ideapad S 10-2

    Hello everyone, my name is Orela and I'm from Croatia.  Last year i bought Lenovo S 10-2 and was happy with it but recently it broke down and wouldn't start. I have a warranty and would like to send it to be repared.
    I have credit card information, personal e mail exchanges as well as family photos on the computer however and would rather repairmen couldn't go through my content. 
    My friend took out the hard disk but I remember that Windows 7 was on separate "unit". 
    Does S 10-2 have one 160 GB hard disk that contains 2 partitions (one for storage and other for Windows 7) or does it have one 160 GB hard disk + separate storage medium for Windows 7?
    Thans for your help,
    Orela

    Here's some help:
    File Sharing on Macs
    Mac 101- File sharing
    You have a home network setup so everything you need is in place. Also select Mac Help from the Finder's Help menu and search for "file sharing."

  • Please help. Simple Socket Question

    Hi. I am writing the basics for a game. Simple. I have a few classes, 1 of which is for connecting and another in which each user inherits a new copy as they join, it contains all their personal variables.
    By having their socket address, how can I access a specific instance of that file?
    Thanks for any help.

    Hi. I am writing the basics for a game. Simple. I
    have a few classes, 1 of which is for connecting and
    another in which each user inherits a new copy as
    they join, it contains all their personal variables.
    By having their socket address, how can I access a
    specific instance of that file?Specific instance of what file? Sockets connect processes to other processes, not to files.

  • Please Help with Simple Conversion

    I cannot figure out how to convert a String containing XML into a javax.xml.soap.SOAPElement. Could someone please advise?
    Thank you in advance.

         * Get SOAPMessage object from an InputStream and closes this stream.
         * @param soapStream InputStream with SOAP content.
         * @return SOAPMessage or null if failed.
         * @throws SOAPException
        public static SOAPMessage getMessage(InputStream soapStream) throws SOAPException {
            SOAPMessage result = null;
            if (soapStream != null) {
                StreamSource ss = null;
                try {
                    SOAPMessage message = SOAPUtils.createMessage();
                    SOAPPart part = message.getSOAPPart();
                    ss = new StreamSource(soapStream);
                    part.setContent(ss);
                    result = message;
                } finally {
                    try {soapStream.close(); } catch (IOException ioe) { ioe.printStackTrace(System.err); }
            return result;
        }//getMessage()
         * Convert a SOAPMessage in string format to a SOAPMessage object.
         * @param string String with SOAP content.
         * @return SOAPMessage or null if failed.
         * @throws Exception
        public static SOAPMessage toMessage(String string) throws SOAPException {
            SOAPMessage result = null;
            if (string != null) {
                result = getMessage(new ByteArrayInputStream(string.getBytes()));
            return result;
        }//toMessage()

  • Please help with a stupid question on networing 2 macs

    I have a MacPro and a MAC book pro with and airport n base station. In the past, the books for my G4 and G5 told me how to network the macs with peer to peer so I can access any drive of one machine from the other.
    I can't find out how to do that. Can you send me to a white paper. I don't have the G4 and G5 anymore, and can see the drop boxes on both new macs but I can't access them. I don't have permission. Have the setup procedures changed?
    I also want to be able to connect my same MPB to a Power Mac at work.
    I know this is rudimentary, but in Snow Leopard I am having trouble finding how to do it. I didn't spend a lot of time on leopard, but spent three years on tiger.
    Cheers.

    Here's some help:
    File Sharing on Macs
    Mac 101- File sharing
    You have a home network setup so everything you need is in place. Also select Mac Help from the Finder's Help menu and search for "file sharing."

  • NEWBIE: help with simple JSF question

    Hi, I'm having trouble wrapping my head around how JSF is supposed to be used for something.
    Let's say I have a list of people on the left, and I want to show the selected person in an editor on the right (so you can change the name and phone number and click 'save changes', for example).
    So I have a <h:selectOneListbox> with a <f:valueChangeListener>. Something like this:
    <h:selectOneListbox value="#{personController.selectedPerson}">
    <f:selectItems value="#{personController.listOfPersons}" />
    <f:valueChangeListener type="PersonSelectionListener" />
    </h:selectOneListbox>
    So in Java I have 2 objects.
    1. PersonController which maintains the list of persons and the selected person and is identified as a session bean in the faces-config.xml
    2. PersonSelectionListener which listens for selection changes and does something with the selection, let's say it writes the selected person's name to a log file just for sake of example.
    My question is, when the PersonSelectionListener detects that a selection change has occurred, how should I get the selected person from the person controller so I can, say, write the name to a log file?
    (Note: I'm pretty sure I can make the PersonController and the PersonSelectionListener the same object and just reference the selectedPerson member variable -- but I'm trying to wrap my head around how objects are supposed to interact in a JSF application, so let's assume they have have to be separate objects.)
    Any information is greatly appreciated. Thanks!

    Normally I would tell you to inject the PersonController bean into the PersonSelectionListener bean as a managed property. Then drill into the bean to get the data you need.
    However, in this case you are dealing with a value change listener. Value change events are fired at the end of the Process Validations phase, before the Update Model Values phase. So in this case, the PersonController bean will not contain the selected person from the request. This is not a problem however, since the new value is passed via the ValueChangeEvent object.

  • Please help with these indesign Questions:))

    1. What happens if you hold down the shift key while creating an object using a frame tool?
    2. List 3 ways to add new pages to a document.
    3. List three ways to navigate a document
    4. How do you apply a master page to a document page?
    5. How do you set a vertical guide and a horizontal guide on a page?

    There's something screwy going on with Adobe's server. The OP's time
    stamp shows here (on NNTP) as 6:10 PM 10/1/08, which is correct as far
    as I can tell. Last night when I first responded it was 6:43 pm. My post
    shows up (again, on NNTP) as 10/2/08, 1:43 am, at which time I'm pretty
    sure I was peacefully snoring.
    7 hours ex post facto.
    Kenneth Benson
    Pegasus Type, Inc.
    www.pegtype.com

  • Please, help with simple modal progress dialog

    Progress dialog will create a reader thread and block user input to main form until read is completed. It will have only a number of bytes received text message and one cancel button. It will be closed when user presses the button or thread is done with reading.
    I understand the principles of IO and thread communication very well. I'm asking for modal dialog candidate. Should I override JDialog or it is possible to use JOptionPane or something else? The modal dialog should be able to register some listener to get progress messages from the reader thread.

    JOptionPane should be really easy way to go, since you can pass in an Object, and that object
    could be a JPanel containing your JProgressBar and any other components/layout you want.

  • Please help me to reset my sequerity question. Which is I completely forget

    Please help me to reset my sequerity question. Which is I completely forget

    Click here for information. If the option to have the answers emailed to you isn't available or doesn't work(the email may take a few hours to arrive), contact the iTunes Store staff via the link in the 'Additional Information' section of that article.
    Without a rescue email address, you can't reset them yourself. Nobody on these boards can reset them for you.
    (93702)

Maybe you are looking for

  • Burning slideshows to DVD

    Is it possible to burn saved slideshows to DVD that was created in Lr5

  • "dbstart" error in oracle 10g database in LINUX

    Hi, i have oracle 10g database in LINUXwhen i give "dbstart" command under oracle database bin folder, i get following error "Failed to auto-start Oracle Net Listene using /ade/vikrkuma_new/oracle/bin/tnslsnr" how can i fix this error. i want to make

  • Another question related to using to_char(d_date, IW)

    dear all; I posted a similar problem a while back but I would like to see if I can get help on this particular problem I have the following sample data create table table_one v_id varchar2(60), close_date date insert into table_one   (v_id, close_dat

  • Mavericks AND Epson Stylus Photo R280-driver?

    I just removed one EPSON Stylus Photo R280 and plugged in another one of the same model. Can't find the printer when I send something to print, so I deleted the printer from my printer list and then added it back. It wants to go to the Apple server a

  • [SOLVED] EVE Online won't start after Crucible 1.5 update

    Before i start, i'm aware that this would be better off at WineHQ, but i'm technically not asking for help. I'm just wondering if any of you have gotten it running since the update. I already googled the issue and same thing for me as for every other