Quitting iTunes changes my desktop (can someone else try?)

If I change my desktop picture while iTunes is running then when I quit iTunes my desktop reverts to the picture it had before I started iTunes. Pretty weird. Can someone else try this?
I noticed this the for the first time after updating to 10.4.3 last night. I can't say for sure if I'd ever done this exact sequence before the update.

Same problem - except my whole desktop goes back to defauylt - my files and iTunes and applications are under a username1, username 2, username3, etc. each time I logoff and log back on. I tried the username_new and idisk restore and notheing helps. It's like Groundhog Day (the Bill Murray movie) -- I configure my desktop, restore my Dock with my apps, reimport my iTunes library and then logoff and back on and it all 'disappears' and goes back to like it was when I first got it out of the box. I upgraded to 10.4.4.

Similar Messages

  • Can someone else try to compile this and see why the program is returning..

    Can someone else try to compile this and see why the program is returning "false" when I try to delete the files on exit (at bottom of code)... I have the source code uploaded to the web as well as my 2 text test files inside a zip file(they need to be unzipped so you can try to test the program) and .class file... the program works the way i want it to, but i just can't seem to delete the 3 temporary files i use... why??? why does it return false???
    Thanks in advance,
    Disco Hristo
    http://www.holytrinity-holycross.org/DiscoHristo/Assemble.java
    http://www.holytrinity-holycross.org/DiscoHristo/Assemble.class
    http://www.holytrinity-holycross.org/DiscoHristo/tests.zip
    * Assemble.java 1.0 02/06/22
    * @author Disco Hristo
    * @version 1.0
    import java.io.*;
    import java.lang.*;
    import java.util.*;
    public class Assemble
         public static void main(String args[]) throws IOException
              if (args.length > 0) //     Checks to see if there are any arguments
                   printArgumentInfo ();
              else // if no arguments run the program
                   getInput ();
                   printToFile ();
                   deleteFiles ();
         public static void getInput () throws IOException
         //     Gets the input and then send it to 3 files according to Tags
              File head = new File ("head.chris");
    PrintStream headStream = new PrintStream (new FileOutputStream (head));
    File body = new File ("body.chris");
    PrintStream bodyStream = new PrintStream (new FileOutputStream (body));
    File foot = new File ("foot.chris");
    PrintStream footStream = new PrintStream (new FileOutputStream (foot));
    String input; //     String used to store input                
    File d = new File(".");
    String files[] = d.list();
    for (int n=0; n!=files.length; n++)
         if (files[n].endsWith(".txt") == true)
              String fileName = files[n];
              BufferedReader in = new BufferedReader (new FileReader(fileName));
                   while (true)
                   input = in.readLine();
                   if (input != null)
                        input = input.trim();
                        if (input == null) // if no more input                          
                             break;
                        else if ( (input.compareTo("<HEAD>")) == 0) // if start of <HEAD> text
                             do
                                  input = in.readLine();
                                       if (input != null)
                                       input = input.trim();
                                       if ( ((input.compareTo("<BODY>")) == 0) ||
                                                      ((input.compareTo("<FOOT>")) == 0) ||
                                                      ((input.compareTo("</BODY>")) == 0) ||
                                                      ((input.compareTo("</FOOT>")) == 0) ||
                                                      ((input.compareTo("<HEAD>")) == 0))
                                                      //checks to see if tags in input are in correct order
                                            System.out.println("Input Is Incorrectly Formatted - Tag Error");
                                            System.out.println("Close your <HEAD> tag before starting another tag.");
                                            System.exit(1); //exit program without printing data                                                   
                                       if ( (input.compareTo("</HEAD>")) != 0) //if not end of tag
                                            headStream.println(input); //print to text file
                             while ( (input.compareTo("</HEAD>")) != 0);
                        else if ( (input.compareTo("<BODY>")) == 0) // if start of <BODY> text
                             do
                                  input = in.readLine();
                                  if (input != null)
                                       input = input.trim();
                                       if ( ((input.compareTo("<HEAD>")) == 0) ||
                                                      ((input.compareTo("<FOOT>")) == 0) ||
                                                      ((input.compareTo("</HEAD>")) == 0) ||
                                                      ((input.compareTo("</FOOT>")) == 0) ||
                                                      ((input.compareTo("<BODY>")) == 0))
                                                      //checks to see if tags in input are in correct order
                                            System.out.println("Input Is Incorrectly Formatted - Tag Error");
                                            System.out.println("Close your <BODY> tag before starting another tag.");
                                            System.exit(1); //exit program without printing data                                                   
                                       if ( (input.compareTo("</BODY>")) != 0) //if not end of tag
                                            bodyStream.println(input); //print to text file
                             while ( (input.compareTo("</BODY>")) != 0);
                             else if ( (input.compareTo("<FOOT>")) == 0) // if start of <FOOT> text
                                  do
                                  input = in.readLine();
                                  if (input != null)
                                       input = input.trim();
                                       if ( ((input.compareTo("<BODY>")) == 0) ||
                                            ((input.compareTo("<HEAD>")) == 0) ||
                                                 ((input.compareTo("</BODY>")) == 0) ||
                                                 ((input.compareTo("</HEAD>")) == 0) ||
                                                 ((input.compareTo("<FOOT>")) == 0))
                                                 //checks to see if tags in input are in correct order
                                            System.out.println("Input Is Incorrectly Formatted - Tag Error");
                                            System.out.println("Close your <FOOT> tag before starting another tag.");
                                            System.exit(1); //exit program without printing data                                                   
                                       if ( (input.compareTo("</FOOT>")) != 0) //if not end of tag
                                                 footStream.println(input); //print to text file
                             while ( (input.compareTo("</FOOT>")) != 0);
                   else
                        break;
    public static void printToFile () throws IOException
    // Prints the text from head.txt, body.txt, and foot.txt to the output.log
         File head = new File ("head.chris");
         FileReader headReader = new FileReader(head);
              BufferedReader inHead = new BufferedReader(headReader);
              File body = new File ("body.chris");
              FileReader bodyReader = new FileReader(body);
              BufferedReader inBody = new BufferedReader(bodyReader);
              File foot = new File ("foot.chris");
              FileReader footReader = new FileReader(foot);
              BufferedReader inFoot = new BufferedReader(footReader);
              PrintStream outputStream = new PrintStream (new FileOutputStream (new File("output.log")));
              String output;     //string used to store output
              while (true)
                   output = inHead.readLine();
                   if (output == null) //if no more text to get from file
                   break;
                   else
                        outputStream.println(output); // print to output.log
              while (true)
                   output = inBody.readLine();
                   if (output == null)// if no more text to get from file
                   break;
                   else
                        outputStream.println(output); // print to output.log
              while (true)
                   output = inFoot.readLine();
                   if (output == null) //if no more text to get from file
                   break;
                   else
                        outputStream.println(output); // print to output.log
              //Close up the files
              inHead.close ();
              inBody.close ();
              inFoot.close ();
              outputStream.close ();     
         public static void printArgumentInfo () //     Prints argument info to screen
              System.out.println("");
              System.out.println("Disco Hristo");
              System.out.println("");
              System.out.println("Assemble.class is a small program that");
              System.out.println("takes in as input a body of text and then");
              System.out.println("outputs the text in an order according to");
              System.out.println("the tags that are placed in the input.");
         public static void deleteFiles ()
              File deleteHead = new File ("head.chris");
              File deleteBody = new File ("body.chris");
              File deleteFoot = new File ("foot.chris");
              deleteHead.deleteOnExit();
              deleteBody.deleteOnExit();
              deleteFoot.deleteOnExit();
    }

    I tired your program, it still gives false for files deleted. I tool the same functions you used in your program and ran it. The files get deleted. Tried this :
    <pre>
    import java.io.*;
    import java.lang.*;
    import java.util.*;
    public class FileTest {
         public static void main(String args[]) {
              FileTest f = new FileTest();
              try {
                   f.createFile();
                   f.deleteFile();
              } catch(IOException ioe){
                   System.out.println(ioe.getMessage());
         public void createFile() throws IOException {
              System.out.println("In create file method...");
              File test = new File("test1.txt");
              File tst = new File("text2.txt");
              PrintStream testStream = new PrintStream (new FileOutputStream (test));
              PrintStream tstStream = new PrintStream (new FileOutputStream (tst));
              testStream.println("this is a test to delete a file");
              tstStream.println("this is the second file created");
              testStream.close();
              tstStream.close();          
         public void deleteFile() throws IOException {
              File test = new File("test1.txt");
              File tst = new File("text2.txt");
              System.out.println(test.delete());
              System.out.println(tst.delete());
    </pre>
    Also check the starting and closing braces for your if..else blocks.
    -Siva

  • Can someone else log onto their iTunes account on my iPad

    Can someone else log into their iTunes account on ur iPad

    They can if they sign out of your ID in the Settings app first.  The option can be found by selecting iTunes and App Store, then tapping on your ID.  Any purchases downloaded on the device stay until they are deleted, but apps must be updated using the ID that originally downloaded them

  • If Iq backup my iPhone using my icloud can someone else using the same Apple ID as me back up their iPhone to icloud?

    If Iq backup my iPhone using my icloud can someone else using the same Apple ID as me back up their iPhone to icloud?

    If they sign into your iCloud account with your ID, their iCloud backup would then be in your account.   However, they would also be sharing your iCloud account and any data they sync with the account (contacts, calendars, etc.) will be merged with yours and the merged list will appear on both phones.  They would also be able to access your email account and their photo stream photos would be merged with yours (as you would be sharing the same photo stream).  Furthermore, if they are using iOS 7 and turn on Find My iPhone while signed into your account, their phone will require your iCloud ID and password in order to be turn off Find My iPhone, sign out of iCloud or erase and reactivate their phone.
    Unless you wish to share all this data, and have the other person's data merged with yours you should do this.  (iCloud accounts are really designed to be used by a single person.)

  • Hi, just upgraded my iphone 4s to ios6. all of my playlists are gone and if i create a new one, i does not appear on my phone. itunes match is activated. can someone help me?

    Hi, just upgraded my iphone 4s to ios6. all of my playlists are gone and if i create a new one, i does not appear on my phone. itunes match is activated. can someone help me?

    You should be syncing your contacts with an app on your computer or cloud service (iCloud, Gmail, Yahoo, etc), and not relying on a backup.  If you haven't been doing this, start now and then restore your old backup.  You will then be able to sync the new contacts back into the phone.  However, you will lose all messages, etc newer thant the backup.

  • Hi...i'm still using the old iphone 3G...my phone is no longer charging...when i tried to charge it, what i see on the screen is the usb cord with the arrow pointing the itunes logo...can someone help me?

    hi...i'm still using the old iphone 3G...my phone is no longer charging...when i tried to charge it, what i see on the screen is the usb cord with the arrow pointing the itunes logo...can someone help me?

    It sounds like your phone is in recovery mode, which means it needs to be restored through iTunes on your computer in order to get out of it.

  • Do you have to sign personaly for a delivery or can someone else do it for you?

    do you have to sign personaly for a delivery or can someone else do it for you?

    someone else can do it for you. I recieved my MB air yesterday, and it was signed by my apartment office personnel.

  • I bought my ipad from ksa and am from egypt .. my ipad connected to the itunes in ksa but from someone else laptop and i came here to egypt and it says itunes could not connect to this ipad becuz an unknown error :S what should i do please someone tell me

    i bought my ipad from ksa and am from egypt .. my ipad connected to the itunes in ksa but from someone else laptop and i came here to egypt and it says itunes could not connect to this ipad becuz an unknown error :S what should i do please someone tell me !!?

    Your iPad is syncd with iTunes on your computer and your iTunes account controls what's in your iPad.   Previously it must have been sync'd with another person's iTunes account in which case you need to completely clear it out to make it your own.
    Go to Settings > General > Reset (at bottom) > Erase All Content and Settings
    Then plug it into your computer and restore it with YOUR iTunes account.
    Or if your have an iTunes account already setup under your name with your own apps and media -
    Plug it into your computer, open iTunes if it doesn't open automatically and on your iPad page, click Restore
    Let it proceed.  Then the iPad will no longer be looking for someone else's account.

  • If I remove my nano sim card can someone else put thiers in and use the phone

    If I remove my nano sim car can someone else put theirs in and use the phone

    If the SIM card is from the same carrier there shouldn't be a problem using it in the phone.

  • I ordered an upgrade iPhone 6 from my iPhone 5. I'm just going to keep my old iPhone 5 and keep using it can someone else use the iPhone 6 that I got on my upgrade?

    I ordered an upgrade iPhone 6 from my iPhone 5. I'm just going to keep my old iPhone 5 and keep using it can someone else use the iPhone 6 that I got on my upgrade?

        Hi Atomboy12,
    Congrats on your iPhone 6! Are you wanting to give the device to another VZW line? Is the line on your account?
    Thanks,
    PamelaF_VZW
    Tweet us @vzwsupport

  • Can someone please try to register the following W3C Schema? It FAILS!

    Greetings,
    Can someone please try to register the following W3C Schema? It is failing on all attempts by me and I feel there is a possible problem with the parser.
    http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd
    I used the following...
    BEGIN
    DBMS_XMLSCHEMA.REGISTERSCHEMA(
    schemaurl=>'http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd',
    schemadoc=>sys.UriFactory.getUri('http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd'),
    local=>FALSE,
    gentypes=>TRUE,
    genbean=>FALSE,
    gentables=>TRUE,
    force=>TRUE,
    owner=>'XDB');
    END;
    /

    After commenting out the refernece to the DTD the schema registers fine for me...
    <?xml version="1.0" encoding="utf-8"?>
    <!-- <!DOCTYPE schema
    PUBLIC "-//W3C//DTD XMLSchema 200102//EN" "http://www.w3.org/2001/XMLSchema.dtd"
    <!ATTLIST schema
    xmlns:ds CDATA #FIXED "http://www.w3.org/2000/09/xmldsig#">
    <!ENTITY dsig 'http://www.w3.org/2000/09/xmldsig#'>
    <!ENTITY % p ''>
    <!ENTITY % s ''>
    ]>
    -->
    <!-- Schema for XML Signatures
    SQL*Plus: Release 10.1.0.2.0 - Production on Fri Mar 19 10:57:53 2004
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> spool registerSchema_&4..log
    SQL> set trimspool on
    SQL> connect &1/&2
    Connected.
    SQL> --
    SQL> declare
    2 result boolean;
    3 begin
    4 result := dbms_xdb.createResource('/home/&1/xsd/&4',
    5 bfilename(USER,'&4'),nls_charset_id('AL32UTF8'));
    6 end;
    7 /
    old 4: result := dbms_xdb.createResource('/home/&1/xsd/&4',
    new 4: result := dbms_xdb.createResource('/home/XDBTEST/xsd/xmldsig-core-schema.xsd',
    old 5: bfilename(USER,'&4'),nls_charset_id('AL32UTF8'));
    new 5: bfilename(USER,'xmldsig-core-schema.xsd'),nls_charset
    ('AL32UTF8'));
    PL/SQL procedure successfully completed.
    SQL> commit
    2 /
    Commit complete.
    SQL> alter session set events='31098 trace name context forever'
    2 /
    Session altered.
    SQL> begin
    2 dbms_xmlschema.registerSchema
    3 (
    4 schemaURL => '&3',
    5 schemaDoc => xdbURIType('/home/&1/xsd/&4').getClob(),
    6 local => TRUE,
    7 genTypes => TRUE,
    8 genBean => FALSE,
    9 genTables => &5
    10 );
    11 end;
    12 /
    old 4: schemaURL => '&3',
    new 4: schemaURL => 'http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd',
    old 5: schemaDoc => xdbURIType('/home/&1/xsd/&4').getClob(),
    new 5: schemaDoc => xdbURIType('/home/XDBTEST/xsd/xmldsig-core-schema.xsd').getClob(),
    old 9: genTables => &5
    new 9: genTables => TRUE
    PL/SQL procedure successfully completed.
    SQL> quit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    $

  • Can someone tell me how to retrieve the itunes once it has been downloaded. By the way, the icon didn't appear on the desktop, Can someone tell me how to retrieve the itunes once it has been downloaded. By the way, the icon didn't appear on the desktop

    is it possible to download itunes several times and it not be on the computer? if it is, can someone tell me how to retrieve it, please.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                                      
    Also, you should be able to redownload via iTunes on the computer. See that method included here:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Please can someone explain how to delete email addresses?  I have people who when I type in their name it comes up with the correct email address but then when you hit return to confirm it promptly changes the name to someone else (always the same someone

    Please can someone explain how to delete and email address that when typed in brings up one name but when you hit return to confirm it jumps to another name.  I can't find them in my contacts list but they do come up when you type the first few letters of a name.
    EG If I type xyz and the name of the person comes up, when I press return to confirm that's the one I want then it jumps to [email protected],  always the same def address.
    I can't fathom it out.
    Thanks
    Terri

    Try this:
    Start a new email.  In the To address bar, type in xyz like you normally do, press return to confim, and when the address you want to remove shows up in the address bar, move your cursor over the address you want to delete.
    A small triangle next to the name will show up.  click on it, a drop down menu will open, click Remove from Previous Recipients List.  Then do the drop down menu again and Remove Address.
    Good luck.

  • When opening my lightroom 5- It pops up Lightroom encountered an error when reading its preview Cache and needs to quit.... Can someone walk me through the steps!?

    Opening my lightroom 5.. I get a message that Lightroom encountered an error when reading its preview Cacge and needs to quit.
    Can someone walk me through the steps. Im dealing with MAC computer

    Go to the folder containing your catalog and delete the folder with the extension .lrdata. Then start Lightroom, and it will begin creating a new cache file.
    If you need to know where the files are: Preference and other file locations in Lightroom 5

  • Can someone else confirm this bug or is it just me?

    I think I've run into another *choose file name* bug. I have a script which uses the text returned from a *display dialog* command to gather part of the file name for a *choose file name* command. I usually paste the other part of the file name in off the clipboard. This all worked fine as long as I was running the script from within the Script Editor application. The problem I'm having started after I saved the script as an application. I cannot paste anything from the clipboard into the *choose file name* text field if it comes after another *choose file name* command or a *display dialog* command that has a text field.
    Harder to explain than to just show a couple of examples. Please check out these examples and let me know which text fields you are able to paste into...
    Example #1:
    <pre style="width:630px;height:auto;overflow-x:auto;overflow-y:hidden;"
    title="Copy this code and paste it into your Script Editor application.">set theText to "**Try To Paste Something Here**"
    choose file name with prompt "Works." default name theText
    choose file name with prompt "Doesn't Work!!" default name theText
    display dialog "Works Here Though!!" default answer theText</pre>
    Example #2:
    <pre style="width:630px;height:auto;overflow-x:auto;overflow-y:hidden;"
    title="Copy this code and paste it into your Script Editor application.">set theText to "**Try To Paste Something Here**"
    display dialog "Works." default answer theText
    choose file name with prompt "Doesn't Work!!" default name theText
    choose file name with prompt "Doesn't Work Here Either!!!" default name theText
    display dialog "Works Again Here Though!!" default answer theText</pre>
    As a workaround, I've started using another application, such as *System Events* or Finder, to display all *choose file name* commands. Like in this next example...
    Example #3
    <pre style="width:630px;height:auto;overflow-x:auto;overflow-y:hidden;"
    title="Copy this code and paste it into your Script Editor application.">set theText to "**Try To Paste Something Here**"
    display dialog "Works." default answer theText
    tell application "Finder"
    activate
    choose file name with prompt "Works." default name theText
    choose file name with prompt "Works." default name theText
    end tell</pre>
    Thanx in advance for taking the time to help me figure this out!!

    Say the clipboard content is JumpinJackFlash. The following script...
    <pre style="width:630px;height:auto;overflow-x:auto;overflow-y:hidden;"
    title="Copy this code and paste it into your Script Editor application.">set theName to text returned of (display dialog "" default answer "123456789")
    set theDest to choose file name default name (the clipboard) & "-" & theName</pre>
    ...works fine as long as I for sure want the name to be JumpinJackFlash-123456789. If I don't want to use the contents of the clipboard, and want to change the name to start with JackAndJill, I now have to delete the JumpinJackFlash part of the name in order to manually type in JackAndJill. This is just an arbitrary example, and I know this is a fairly trivial bug, but an annoyance that shouldn't be there. At least I've now confirmed that this doesn't just affect me and I've filed a bug report with Apple. We'll see where that gets us. I already have another bug report filed with Apple for *choose file name* regarding file extensions in the text field that they've informed me is a duplicate of someone else's earlier submission.
    Thanx so much for taking the time to check into this problem with me Pierre!

Maybe you are looking for