HELP! got a question about v2.0.

okay, so i've been reading these threads, and have seen people talking about their iPod Touch being set back to factory settings after the download 2.0. (If this is true).. I have alot of info on my Touch and was wondering if there is a way i can save all my stuff from my Touch to my computer, so i can easily put all the files back my iPod after i finish the download process?

Is it done yet?? I am dying to do mine, but my concerns are the same and I would love to hear from someone who has finished it whether or not everything restores back happily.

Similar Messages

  • Hi everyone, I've got a question about Itunes. I've noticed that Itunes says to me how many time I've played a specific song since when I've put it on the library. I was wondering if there is a specific shuffle only for the new songs without creating a pl

    Hi everyone, I've got a question. I've noticed that Itunes says me exactly the number of times that I've listened a song since I've put it on the library. Well, I've just put on some new music and I was wondering if there is a way to reproduce only the songs that Itunes nerver played without creating a new playlist.
    Thank you
    Simone

    Welcome to the Apple Support Communities
    This isn't possible, but this is a great idea > http://www.apple.com/feedback

  • I got a question about search help comes from check table

    But it dosen't work because it always have its value from the  first criteria.
    And I don't want no values be added into the criteria.
    How can I solve this problem.

    Seems like an interview question, if not tell us the purpose and scenario you are working on.
    Regards
    Karthik D

  • Please, help a newbie:  Question about animating expanding containers

    Hi All,
    Short Version of my Question:
    I'm making a media player that needs to have an animation for panels sliding up and down and left and right, and the method I've been using to do this performs far slower than the speed I believe is possible, and required. What is a fast way to make a high performance animation for such an application?
    Details:
    So far, to do the animation, I've been using JSplitPanes and changing the position of the divider in a loop and calling paintImmediately or paintDirtyRegion like so:
    public void animateDividerLocation( JSplitPane j, int to, int direction) {
    for(int i=j.getDividerLocation(); i>=to; i-=JUMP_SIZE) {
    j.setDividerLocation(i);
    j.validate();
    j.paintImmediately(0, 0, j.getWidth(), j.getHeight());
    The validate and paintImmediately calls have been necessary to see any changes while the loop is going. I.e., if those calls are left out, the components appear to just skip right to where they were supposed to animate to, without having been animated at all.
    The animation requirement is pretty simple. Basically, the application looks like it has 3 panels. One on the right, one on the left, and a toolbar at the bottom. The animation just needs to make the panels expand and contract.
    Currenly, the animation only gets about, say, 4 frames a second on the 800 MHz Transmeta Crusoe processor, 114 MB Ram, Windows 2000 machine I must use (to approximate the performance of the processor I'll be using, which will run embedded Linux), even though I've taken most of the visible components out of the JPanels during the animation. I don't think this has to do with RAM reaching capacity, as the harddrive light does not light up often. Even if this were the case, the animation goes also goes slow (about 13 frames a second) on my 3 GHz P4 Windows XP if I keeps some JButtons, images etc., inside the JPanels. I get about 50 frames/sec on my 3 GHz P4, if I take most of the JButtons out, as I do for the 800 MHz processor. This is sufficient to animate the panels 400 pixels across the screen at 20 pixels per jump, but it isn't fast or smooth enough to animate across 400 pixels moving at 4 pixel jumps. I know 50 frames/sec is generally considered fast, but in this case, there is hardly anything changing on the screen (hardly any dirty pixels per new frame) and so I'd expect there to be some way to make the animation go much faster and smoother, since I've seen games and other application do much more much faster and much smoother.
    I'm hoping someone can suggest a different, faster way to do the animation I require. Perhaps using the JSplitPane trick is not a good idea in terms of performance. Perhaps there are some tricks I can apply to my JSplitPane trick?
    I haven't been using any fancy tricks - no double buffering, volatile images, canvas or other animation speed techniques. I haven't ever used any of those things as I'm fairly new to Swing and the 2D API. Actually I've read somewhere that Swing does double buffering without being told to, if I understood what I read. Is doing double buffering explicitly still required? And, if I do need to use double buffering or canvas or volatile images or anything else, I'm not sure how I would apply those techiniques to my problem, since I'm not animating a static image around the screen, but rather a set of containers (JSplitPanes and JPanels, mostly) and components (mostly JButtons) that often get re-adjusted or expanded as they are being animated. Do I need to get the Graphics object of the top container (would that contain the graphics objects for all the contained components?) and then double buffer, volatile image it, do the animation on a canvas, or something like that? Or what?
    Thanks you SO much for any help!
    Cortar
    Related Issues(?) (Secondary concerns):
    Although there are only three main panels, the actual number of GUI components I'm using, during the time of animation, is about 20 JPanels/JSplitPanes and 10 JButtons. Among the JPanels and the JSplitPanes, only a few JPanels are set to visible. I, for one, don't think this higher number of components is what is slowing me down, as I've tried taking out some components on my 3GHz machine and it didn't seem to affect performance much, if any. Am I wrong? Will minimizing components be among the necessary steps towards better performance?
    Anyhow, the total number of JContainers that the application creates (mostly JPanels) is perhaps less than 100, and the total number of JComponents created (mostly JButtons and ImageIcons) is less than 200. The application somehow manages to use up 50 MBs RAM. Why? Without looking at the code, can anyone offer a FAQ type of answer to this?

    You can comment out the lines that add buttons to the panels to see the behavior with empty panels.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.Timer;
    public class DancingPanels
        static GridBagLayout gridbag = new GridBagLayout();
        static Timer timer;
        static int delay = 40;
        static int weightInc = 50;
        static boolean goLeft = false;
        public static void main(String[] args)
            final GridBagConstraints gbc = new GridBagConstraints();
            gbc.weightx = 1.0;
            gbc.weighty = 1.0;
            gbc.fill = gbc.HORIZONTAL;
            final JPanel leftPanel = new JPanel(gridbag);
            leftPanel.setBackground(Color.blue);
            gbc.insets = new Insets(0,30,0,30);
            leftPanel.add(new JButton("1"), gbc);
            leftPanel.add(new JButton("2"), gbc);
            final JPanel rightPanel = new JPanel(gridbag);
            rightPanel.setBackground(Color.yellow);
            gbc.insets = new Insets(30,50,30,50);
            gbc.gridwidth = gbc.REMAINDER;
            rightPanel.add(new JButton("3"), gbc);
            rightPanel.add(new JButton("4"), gbc);
            final JPanel panel = new JPanel(gridbag);
            gbc.fill = gbc.BOTH;
            gbc.insets = new Insets(0,0,0,0);
            gbc.gridwidth = gbc.RELATIVE;
            panel.add(leftPanel, gbc);
            gbc.gridwidth = gbc.REMAINDER;
            panel.add(rightPanel, gbc);
            timer = new Timer(delay, new ActionListener()
                    gbc.fill = gbc.BOTH;
                    gbc.gridwidth = 1;
                public void actionPerformed(ActionEvent e)
                    double[] w = cycleWeights();
                    gbc.weightx = w[0];
                    gridbag.setConstraints(leftPanel, gbc);
                    gbc.weightx = w[1];
                    gridbag.setConstraints(rightPanel, gbc);
                    panel.revalidate();
                    panel.repaint();
            JFrame f = new JFrame("Dancing Panels");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(panel);
            f.setSize(400,300);
            f.setLocation(200,200);
            f.setVisible(true);
            timer.start();
        private static double[] cycleWeights()
            if(goLeft)
                weightInc--;
            else
                weightInc++;
            if(weightInc > 100)
                weightInc = 100;
                goLeft = true;
            if(weightInc < 0)
                weightInc = 0;
                goLeft = false;
            double wLeft = weightInc/ 100.0;
            double wRight = (100 - weightInc)/100.0;
            return new double[]{wLeft, wRight};
    }

  • Need help reinstalling Yosemite/Question about external hard drive

    I have an early MacBook Pro and I have to reinstall Yosemite because I've been getting nothing but spinning beach balls, slow loading, lag in type showing up, and wi-fi issues.  I took the laptop to the Genius Bar at the Apple store last week and they ran diagnostics on everything and all was perfectly OK.  No hardware issues, no memory issue and he said my laptop was very clean.  He saw the spinning beach ball many times while he was working on my laptop and suggested that I turn off File Vault as that could be causing the slowdown.  He said if that didn't work (it didn't) to buy an external hard drive (which I received today) and to back up everything through Time Machine then reinstall Yosemite.  I specifically bought an external HD that says "for Mac" and as soon as I connected it Time Machine opened and did the backup.
    Now these are my questions.  Are all my photos on iPhoto, and my Word for Mac documents backed up so that when I reinstall Yosemite, everything is going to be right where I left it?  Will I lose Word for Mac and have to reinstall it?  Isn't Word for Mac a one time use/install and will I have trouble and have to call Microsoft to input my authentication key in again and will they let me? I know silly questions but I'm really worried about losing stuff.
    Also step-by-step detailed instruction on how to reinstall Yosemite would really be appreciated.  Thank you!

    YoJoLo wrote:
    Are all my photos on iPhoto, and my Word for Mac documents backed up so that when I reinstall Yosemite, everything is going to be right where I left it? 
    If you have taken the backup using the Time machine then there is nothing to worry as all your photos from iPhotos and Word for mac documents are backup safely by your time machine.
    Only keep one thing in mind that the external HDD which you use for the time machine backup should have the capacity size of about 3-4 times that of your backup data size. Or else, the time machine external drive will start deleting the files if the external drive is about to be full.
    YoJoLo wrote:
    Will I lose Word for Mac and have to reinstall it?  Isn't Word for Mac a one time use/install and will I have trouble and have to call Microsoft to input my authentication key in again and will they let me?
    You absolutely don’t have to reinstall the Word for mac if its install in the first place because Time machine will backup the system installed files of your MS Word which you had installed.
    Word for mac is a one time install and you don’t have to call Microsoft for any authentication key after you have restored your Word backup files from the time machine drive. As I said before the time machine will backup your Word system installed files leaving you no chance to reinstall it again.
    YoJoLo wrote:
    Also step-by-step detailed instruction on how to reinstall Yosemite would really be appreciated.  Thank you!
    Here, Yosemite reinstall procedure......
    Important:    To reinstall OS X, you must be connected to the Internet. Make sure your power adapter is plugged in. Reinstall OS X using the built-in recovery disk.
    In the menu bar, choose Apple menu > Restart. Once your Mac restarts (and the gray screen appears), hold down the Command and R keys.
    Select Disk Utility, then click Continue.
    Select your startup disk on the left, then click the Erase tab.
    Choose Mac OS Extended (Journaled) from the Format menu, enter a name, then click Erase.
    Important:    Erasing the disk removes all the information from the disk. Be sure to back up the information you want to keep to an external device. 
    After the disk is erased, choose Disk Utility > Quit Disk Utility.
    Select Reinstall OS X, click Continue, then follow the onscreen instructions.
    Hope this helps.....

  • Got a question about warranty...

    hello, I've purchased an ipad 16G wifi about 10 months ago. I don't know why but now I see half of the screen in color changing lines. the touch works perfect in all of the screen. when I take a snapshot I can see the screen perfectly, w/o the colored lines on it, which means it's a screen problem (restoring didn't help).
    I've checked the serial and I still got warranty, but the problem is, I don't have the proof of purchase with me... can I get a copy of that from apple? on mail or fax?

    You don't need proof of purchase.
    An offical product with a recognised serial number IS proof of purchase.
    The owner of any Apple product within warranty (You) is entitled to warranty service on said product.
    End of story.
    They HAVE to accomodate you with or without proof of purchase.
    Call Apple support, request a repair.
    Quote the serial number.
    Describe the problem, and they will arrange a repair/replacement for you.
    Regards,
    John
    Message was edited by: JohnAlanWoods

  • I changed a password to an online account and I got a question about which account

    Hi There, someone seems to have gotten into my personal information somehow and I'm trying to figure out to what extent.
    I have changed passwords on everything from iTunes and email accounts and I was just going through online accounts. I was resetting my password on Acklands grander and I was posed with a question:
    "For Which Account"
    - [email protected]
    - Madness
    The myemail account is my account. What is this message about "Madness"?
    The browser I was using is Firefox and I certainly have never used that name in any way.
    Is this a hidden account on my computer, firefox, or the Acklands Granger Website?
    I could find no other evidence of this acccount anywhere I looked apart from that message.
    Help!
    Alex

    hello alex, this is certainly no hidden account by firefox but other than that i'm afraid we at the support for mozilla's firefox browser won't be able to help you any further with this question. please contact the webiste where you've tried to reset your password to inquire more about the account they have displayed during the procedure.
    <br>thank you for your understanding!

  • I've got some questions about Satellite Pro L300

    1.) How could I Update my Bios? I find the zip- File but no further Information how it works?
    2.) I want to update for more memory. 2GB are less for fast working. Where could I find Informations about the memory controller- e.g. Voltage, Timings... for pass new memory of 4GB.
    3.) My PSSD1E shows me in Windows7 - Systems Hardware one empty SATA- Controller.
    Is it possible to take it optional for an outgoing connection- eg SATA-OUT for extrenal device?
    Sorry for my worst english.

    Satellite Pro L300 is offered with several different hardware configurations. I dont know which one do you have and there is no sense to discuss about this without exact notebook info.
    If you want to have general conversation here than dont claim about this forum.
    To get some precise answers inform us about exact notebook model.
    One more time:
    1
    For all new notebook models Toshiba offers Win update only. That means BIOS update can be done under running operating system. For more details check Toshiba document.
    2
    What you need is just part number of compatible RAM modules. All other information is not so relevant for you. If you want to get this info post exact notebook model.
    You can test what you want but fact is that Toshiba offers list of compatible RAMs you can use with your notebook. All listed RAMs are tested. Other way you can visit KINGSTON page to check their list of compatible models for different Toshiba notebook models. Kingston offers high quality products and all listed RAMs are tested too.
    Who knows which RAMs you have used for your tests? Maybe some cheap no-name products. Many people have used such RAMs and at the end nothing worked.
    3
    Why you complicate the whole situation? For external devices you have available ports. For internal device you have ports on the motherboard. End of the story.
    And yes, visit your local dealer ant talk with him, especially about question number 3.

  • Where 2 go for help with some questions about a logo design?

    I'm an absolute novice Illustrator user (CS4). Im doing a web site for a mate and he's given me a logo that I have made a vector drawing of. It was black and white, and I made it coloured but I have discovered that colour gets difficult when you go for grayscale! You all knew that, didn't you?
    I'm not putting the logo up here because I don't want to ask a question that's too far off the purpose of the board. So, if I can't show it here can anyone suggest another forum where people do that kind of stuff and are kind to novices please?
    Many thanks
    Martin
    Well, having a look around I think I might not be going to far off by asking so...
    http://www.imagesandwords.org.uk/test/illylogo.html
    Anything really, but bear in mind It's very like the original except it had no style, no color and less er.. precision

    >How can I make the logo better for colour and B&W?
    As I understand it, you are troubled -- among many things -- by the lack of differentiation among the spheres when you convert to grayscale. Is that correct?
    If so, there are some things to consider. For example, the original uses only two attributes -- color and size -- to differentiate the spheres. Otherwise, you have the same shapes and the same gradient fills (other than base color).
    When you remove color from the equation, you're left with only one differentiating attribute: size. Not surprisingly, you find yourself facing a dull uniformity -- the monotonicity produces monotonousness. Now, the challenge is to add back some differentiating features.
    Not a whole lot of choices here. You can develop different gradient fills for a subtle effect, but you have to be careful: If the "lighting" changes dramatically among spheres, you'll end up with an unnatural look.
    You might consider forgetting about gradient fills altogether and go with solid or texture fills. Sometimes, simpler is better... especially with a logo.

  • Is anyone out there that can help me?  Questions about connecting to new PC

    I had to replace my PC & do not have a backup for my phone.  I have copied photos to flashdrive to put on new one, but not sure what to do about contacts.  I have looked around the discussions & did the transfer purchases from iphone, so hopefully that will take care of things bought on the phone.  Someone discussed how to create a backup, by right clicking under device.  If I do this to my phone before I sync with the new computer, will I be able to create a backup that I can use to salvage all the info on my phone that I can't drag & store on my own?  Or will this delete all of my phone information, just like syncing with the new computer will?  I appreciate all of the anticipated help, this is not my forte!
    I posted last night, but no help............hoping it was just bad timing......

    Okay!  I have been dipping in the pool a toe at a time.  I backed up the phone, never could find it in my files, but whatever.  I synced notes, calendar & contacts, one at a time & everything copied to my PC.  Now, I have to move on to the real world & get things done.  But will attempt later to salvage music & ringtones.  If you have any advice.....
    Thanks for all of your help & support!!

  • NEED HELP WITH A QUESTION ABOUT PURCHASING A NEW IPOD AFTER GIVING MY OLD

    IPOD TO MY SON. IT WAS FILLED WITH 3600 SONGS AND I STILL HAVE THOSE SONGS IN MY ITUNES LIBRARY. MY QUESTION IS CAN I BUY A NEW IPOD AND LOAD IT ON COMPUTER USING MY ITUNES LIBRARY--I MEAN WILL ITUNES AND MY COMPUTER RECOGNIZE THE NEW ONE. IF NOT, WHAT CAN I DO? JEFF

    You should be fine, just make sure the new one has the current firmware, dock it to the computer, & away you go.
    Please kill the "caps lock" key when posting, it's considered to be shouting & it's rude. Thanks.

  • Need help.. Question about connectivity of PS2 with Creative A2ZS Video Edit

    Hi everyone, i have question regarding creative A2ZS video editor.. please forgive me for my innocent question since im new here..
    I own a Play Station 2.. can this video editor allow me to connect my PS2 and show the display on the monitor so that i can play my PS2 game on the monitor? it's like functioning like a VGA box.. thanks!Message Edited by nicholas_23 on 05-9-200709:46 AM

    If you hook the standard analog video outputs of the PS2 (the ones that would go to the TV) into the Video Editor and get into the VidCap applet (free download from the Creative Website), drag the Preview window so its full screen, then you can use your laptop or desktop as a "TV".
    -Chrisi

  • Help with a question about making/running .jar files.

    First i have a question, can i make a .jar file that can run on a computer without JRE installed. And if i can, how do i make it. I have tried to make it on my computer, that has JRE but i keep getting the error when i run it: Exception in thread "main" java.lang.NoClassDefFoundError: Sample\FileSearchAnd im using the command:
    jar cvfm jarname.jar directory\manifest.txt directory\FileSearch.class directory\FileNode.classIt says it creates the .jar but is unable to run it.

    dford425 wrote:
    First i have a question, can i make a .jar file that can run on a computer without JRE installed. No, not unless you package the JRE with your dist. Hence the name JRE (Java Runtime Environment).
    And if i can, how do i make it. I have tried to make it on my computer, that has JRE but i keep getting the error when i run it: Exception in thread "main" java.lang.NoClassDefFoundError: Sample\FileSearch
    That simply means your not pointing the runtime to the classes. Set your CLASSPATH environment variable correctly and it will run (given you have a JRE which it appears you do).
    And im using the command:
    jar cvfm jarname.jar directory\manifest.txt directory\FileSearch.class directory\FileNode.classIt says it creates the .jar but is unable to run it.

  • Hi, i got some question about arrays.

    My question is how do i auto increase the array size for theList[0] to store the over time if the user enter more than 1 employee.
    static void showPayInfo(int num1 , int num2)
              for(int coloum = 1 ; coloum <= num2 ; coloum++)
                   System.out.print("Enter employee's over time  $: ");
                   ot = CspInput.readDouble();
                   Double = ot;
                   getDouble(Double);
    static double ot , Double;
         static void getDouble(double Double)
              double[] theList = new double[2];
              theList[0] = ot;
         public static void main(String[] args)
              int a;
              System.out.print("How many employees : " );
              a = CspInput.readInt();
              showPayInfo(1,a);
         }

    how to create the list?
    import java.util.ArrayList;
    class testArrayList {
       public static void main(String[] args) {
         ArrayList<String> list1 = new ArrayList<String>();
         // Populate list
         for (int i = 0; i < 5; i++) {
           list1.add("List item " + i);
         // Show list
         for (int i = 0; i < list1.size(); i++) {
           System.out.println(list1.get(i));
    }

  • Please help me:one question about Assest Depreciation.

    In T-CODE ABAON I fill all of the necessary fileds and click save but the sap raise some error message like below.So in T-CODE AO90,I select chart of account->account determ->Depreciation,and input my G/L Acct 5201 in the field of 'Acc.dep. accnt.for ordinary depreciation' and save.Then I exit and go to T-CODE ABAON and try again,but the error still exist.It seems not work to what I have done in T-CODE AO90.I don't know why and how to resolve this problem.So I need your help.Thank you so much.
    error message:
    Account 'Acc.dep. accnt.for ordinary depreciation' could not be found.
    Message no. AU133
    Diagnosis
    When creating the accounting document, the system could not find account 'Acc.dep. accnt.for ordinary depreciation' for company code HJW1.
    Procedure
    Enter this account in the account determination for Asset Accounting.
    Message was edited by:
            Melody  H.

    Hi,
    Check the following:
    1. In ur asset class check the Acct determination & for this acct detr check the gl account in AO90.
    2. check ur GL accounts.
    3. Or are u making the changes in the same client or other & have u transported the request or not?
    or sometimes it is necessary to terminate the session and relogin then check.
    Regards,
    Meenakshi

Maybe you are looking for