I am wanting to put the new firmware on to my iPhone 4 and am wondering if I do this from another computer will I loose all my data - i.e music

I am wanting to put the new firmware on to my iPhone 4 and am wondering if I do this from another computer will I loose all my data - i.e music

No you will not lose any data. However a pop up will come up telling you if you want to sync with this computer, and that if you do, that it will erase the data. Just click "No" and you can still update your phone. I've done this a few times.

Similar Messages

  • I am thinking of updating to the newest version for my Mac Laptop. I have the 10.6.8 should I update to the Mountain Lion OS X? If I update will I loose all my data, like documents, music, pictures?

    Wondering if I should update my Mac Notebook which is a 10.6.8 versions to the newest Mountain Lion version? What are the positive and negatives about the new version? Also if I update will I loose all the date on my computer like documents, music, pictures etc..? 

    First check the Compatibility of your Mac...
    Upgrade to Mountain Lion
    Then... Before attempting any Major Upgrade... get yourself an External Hard Drive... and create a Bootable Clone Backup of your current Hard Drive...
    By far the easiest way to make such a Backup, is to use something like
    SuperDuper  http://www.shirt-pocket.com/
    or CCC  http://www.bombich.com/
    That way, should anything untoward happen during the Upgrade,
    you will NOT LOSE ANYTHING.
    (Get an EHD that is at least equal to your current Drive...)
    Also, Check here for compatibility of 3rd party Software you may be using...
    http://roaringapps.com/apps:table

  • I was wondering if I import my bookmarks from another computer will this overwrite the bookmarks I already have?

    I was wondering if I import bookmarks from another computer will they overwrite bookmarks I already have? Is there a way to prevent this?

    It depends upon the method used to import the bookmarks.
    Firefox can import from two formats, if you import the JSON format it will overwrite the bookmarks that already exist. If you import from the HTML format it will add the bookmarks that are imported to those that already exist.
    To use the HTML format see the following links.
    * https://support.mozilla.com/kb/Exporting+bookmarks+to+an+HTML+file
    * https://support.mozilla.com/kb/Importing+Bookmarks+from+an+HTML+File

  • Why so I keep getting 'blocked-plug in' message!   Very frustrating.  Never happened before.   related to Adobe Flash Player for videos.   Have deleted Adobe and put the new Adobe on, but still get message.   Seems others have had this same problem.

    Why so I keep getting 'blocked-plug in' message!   Very frustrating.  Never happened before.   related to Adobe Flash Player for videos.   Have deleted Adobe and put the new Adobe on, but still get message.   Seems others have had this same problem.

    What is your current Flash Player version: http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html ?
    What is your display adapter, driver version & date?  See http://forums.adobe.com/thread/945765

  • Want to buy the new MacBook Air 13in i5 processor, but I have to know if this will run RuneScape on high quality SMOOTHLY. Thank you

    Want to buy the new MacBook Air 13in i5 processor, but I have to know if this will run RuneScape on high quality SMOOTHLY. Thank you

    I can say World of Warcraft runs smooth.

  • I want to use the new graphics declarations to draw a bunch of 5px wide circles onto this canvas

    I'm learning this FB 2 IDE.
    Could someone help me out here for a project I want to do.
    Basically what I have is this
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                    xmlns:mx="library://ns.adobe.com/flex/halo" layout="absolute" minWidth="1024" minHeight="768" width="432" height="382">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <mx:Canvas width="100%" height="100%" backgroundColor="#FFFFFF">
        </mx:Canvas>
    </mx:Application>
    I want to use the new graphics declarations to draw a bunch of 5px wide circles onto this canvas but I don't know how. I want to evalve this into a strategy game
    Any code tips would be appreciated
    Is Canvas the best choice to draw stuff onto?
    looking forward to your input and help as this app grows

    Thanks very much so far, awesome code:)
    I now have added some animation and logic.
    If compile this and press start animation you will see what I mean
    I would now like to draw a line from every gray ellipse to every blue ellipse but am not sure of the best way to do this using fxg.(connecting centers and behind the ellipsis)
    Would love some expert advice
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/halo">
        <s:creationComplete>
            <![CDATA[
            setupScene();
            ]]>
        </s:creationComplete>
        <s:controlBarContent>
            <s:Button label="start Animation"
                      buttonDown="startAnimation();" />
            <s:Button label="stop Animation"
                      buttonDown="stopAnimation();" />
        </s:controlBarContent>
        <fx:Script>
            <![CDATA[
                import mx.collections.ArrayCollection;
                import mx.core.IVisualElement;
                import mx.graphics.SolidColor;
                private var FPS:uint = 20;
                private var delay:uint = 1000/ FPS;
                private var repeat:uint = 100;
                private var myTimer:Timer = new Timer(delay, repeat);
                private var blueTeam:ArrayCollection =  new ArrayCollection();
                private var blueLeaders:ArrayCollection =  new ArrayCollection();
                private function startAnimation():void{
                    myTimer.addEventListener("timer", updateState);
                    myTimer.start();
                private function stopAnimation():void{
                    myTimer.stop();
                protected function setupScene():void {
                    for (var i :int = 0;i< 8;i++){
                        var c:bCirc = new bCirc();
                        c.x = uint(Math.random() * 400); // random X position
                        c.y = uint(Math.random() * 300); // random Y position
                        blueTeam.addItem(c);
                    for (i = 0;i< 2;i++){
                        var c2:bLeader = new bLeader();
                        c2.x = uint(Math.random() * 400); // random X position
                        c2.y = uint(Math.random() * 300); // random Y position
                        blueTeam.addItem(c2);
                private function updateState(event:Event):void{
                    for each (var o:IVisualElement  in blueTeam ){
                        o.x ++;
                    for each (o  in blueLeaders ){
                        o.x ++;
                    render();
                private function render():void{
                    //clear all items from displaylist
                    removeAllElements();
                    for each (var o:IVisualElement in blueTeam ){
                        addElement(o );
            ]]>
        </fx:Script>
        <fx:Declarations>
            <fx:Component className="bCirc">
                <s:Ellipse width="30" height="30" alpha="0.8">
                    <s:fill>
                        <s:SolidColor color="0x0000ff" />
                    </s:fill>
                </s:Ellipse>
            </fx:Component>
            <fx:Component className="bLeader">
                <s:Ellipse x="0" y="0" width="30" height="30">
                    <s:fill>
                        <s:LinearGradient x="0" y="0" rotation="90">
                            <s:entries>
                                <s:GradientEntry color="#FFFFFF" ratio="0" alpha="1" />
                                <s:GradientEntry color="#000000" ratio="1" alpha="1" />
                            </s:entries>
                        </s:LinearGradient>
                    </s:fill>
                </s:Ellipse>
            </fx:Component>
            <fx:Component className="RCirc">
                <s:Ellipse width="30" height="30" alpha="0.8">
                    <s:fill>
                        <s:SolidColor color="0xff0000" />
                    </s:fill>
                </s:Ellipse>
            </fx:Component>
        </fx:Declarations>
    </s:Application>

  • I have a new computer, and want to put the new music from there to my existing ipod (which has an existing library that I don't want to erase)

    I have a new computer, with some new music on it in my Itunes Library.  How do I put that new music from here onto my existing ipod (which has a ~1500 song library from an old computer which is no longer accesible, and which music I do not want to erase)? 

    I'm not trying to put the music from my old ipod onto my new computer!!!! I don't really want to do that!
    I would like simply to see if there is a way to put the new music from my new computer onto my old ipod without erasing all my existing music that I have on there.

  • If I sync my iPod to a new computer will I loose all my music?

    Will I loose all the stuff on my iPod if I sync it to a new computer?

    You will lose some but not all infor/media. To not lose anything:
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • Whem i'm doing the backup it automaticaly saves contacts.....because i've synced with another computer anf it deleted all my contacts...and i really need them!!!!!

    Whem i'm doing the backup it automaticaly saves contacts.....because i've synced with another computer and it deleted all my contacts...and i really need them!!!!!

    If you haven't been using your phone as recommended, then you've lost all your contacts.  Contacts should be synched to your computer (Address Book, Outlook) or a cloud service (MobileMe, Google) for safekeeping.  The iPhone was never intended to be a storage device.
    If you haven't been using your phone as recommended and synching your contacts as above, frankly, you've no one to blame for your loss of data but yourself. 
    On that topic, are you making regular backups of your computer's data as well?  Hard drives WILL fail.

  • I have 1 old coputer and 1 new 2 different versions of itunes. can they work together. ie can I use the new one to update our iphones and such and if so will our older itunes version8.2 get changed or lost?

    We have two computers. One is older and one is newer. The older has itunes on it (version 8.2) and can no onger update. We want to install itunes on our newer computer to allow us to update our iphones. Can we install 10.2 on the newer computer and use it for updates and such without affecting the older computer? Will my wife be able to still play her music from her older computer and if we buy new music will it upload to both computers.
    Example if she buys ten more songs on her computer(older one) will it automatically upload them to the newer computer when we turn it on? And if I buy a song on the newer computer would it show up on her older version of itunes or not?

    Have a look here...
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l

  • After I update my calendar on my PC how do I get the new version to load to iphone and ipad and over ride the info on them?

    After I update my calendar on my PC how do I get the new version on my iphone and ipad and not the version currently there?

    Hi Kirbs13,
    Thanks for using Apple Support Communities.  Your calendar should automatically update if you're using iCloud.  If it is not, see this article for troubleshooting steps:
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/ts3999
    Cheers,
    - Ari

  • Syncing iPhone to a new computer, will it transfer all my data?

    I currently have an HP with Windows Vista. I'm getting a new computer and need to know what will happen when I connect my iPhone to the new computer. Will it sync with the new computer and transfer all the information to the computer? If not is there anything I can do. I won't have access to the old computer anymore.

    All the iTunes media content will be deleted from the iPhone. You should copy the iTunes library from the old computer to the new computer (with an external hard drive, DVDs, etc.). Calendar/contacts can be transferred from the phone to the new computer, but you must have at least one new contact and event on the new computer, then you'll be prompted to Merge the data (choose that option).

  • I have an iPhone 3 and i have two iTunes accounts and one of them I don't know the pass code and I want to put the new one on my phone please tell me how to do this

    I have a iPhone 3and i have to accounts with iTunes attached to it and I forgot the pass word on the phone so i opened another one and now i want that one on my phone but don't know how to do it. Pease help

    Recovery Mode
    1. Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.
    3. While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    4. Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears, release the Home button.
    5. iTunes should alert you that it has detected a device in recovery mode. Click OK, and then click Restore to restore the device.
    Note: You need to be patient and repeat the above many times to recover your iPad. Data will be lost.

  • Heya.. i cant put the songs i purchased off my iphone on to my laptop.. it keeps saying my computer isnt authorised.. what can i do?

    i need help..
    my laptop wont let me put songs i bought off my phone onto my computer? its saying its unauthorised
    what do i do?

    If you're using a Mac, click on Store at the very top of the computer's screen.
    If you're using iTunes 10 or earlier on Windows, click on Store at the very top of the iTunes application window.
    If you're using iTunes 11 on Windows, press the Alt and S keys.
    Choose Authorize Computer.
    (75227)

  • Have new computer, old one died.  If I sync my Ipod to the new computer will I loose all my music?

    Will all ny music be lost if I sync Ipod to new computer?

    Yes, unless you extract it first. See Recover your iTunes library from your iPod or iOS device.
    tt2

Maybe you are looking for

  • Photoshop 4.0 loading problems on windows vista 16bit vrs 32bit/64bit requirement.

    I am trying to load my Photoshop 4.0 upgraded to 6.0 on my laptop with windows vista. The program will not load and it gives a message that the 16bit program needs an 32/64 bit upgrade??? It wasloaded on windows xp.

  • Upgrade solaris from 9 to 10 - Oracle issues?

    We are planning to upgrade our Solaris box, running oracle 9.2.0.5, from solaris 9 (5.9) to 10, this to take advantage of better TCP/IP stack on Solaris 10 , and the Network trunking feature, multiplexing network cards to same IP, which is non-standa

  • Best way to structure Business Logic

    Hi Experts, I am using Web Dynpro for my front-end and application services for the back-end. Which of these is the recommended way to structure the layout of my business logic: 1) Keep everything in the 'src' folder of the CAF ejbmodule. Structure t

  • The most bizarre ipod ever

    ok - i have had my ipod since june of 2004. it is a thrid generation. the battery is fine and still is, so this is not a battery issue. here are the symptoms: - the ipod does not read when plugged in through a firewire, though it does when a usb conn

  • Reset or Bypass SQL Buffer ABAP Program

    Hi, How to bypass or reset the use of the buffer table in an ABAP program with the purpose of evaluating their performance access. I can not change the program because it is in production. Thanx. Diovani