Finder flashes and disappears at top.  Computer dead on only one account.

My iMac G4 (800 mhz) running the latest update/version of Tiger is suddenly acting up on one account only. On other accounts, no problem. On the problem account, the finder bar appears and disappears about every second. I can start to open applications (Word, Safari, etc.), but they close before fully opening. No recent changes to the computer and only safe internet surfing (to the best of my knowledge).
My 12-year-old son's homework program is on the account in turmoil. Help, please! Thank you...
iMac G4 800 mhz   Mac OS X (10.4.5)  

If you don't mind using the Terminal you can get into any account using super user commands. The slickest, and most dangerous way, is to kill Finder and relaunch it as root. The safest way is to launch Terminal from /Applications/Utilities. Next you want to go into the other user's Prefs folder, so type this and hit the Return key:
sudo -s
give your admin password, which is not echoed to the screen, and hit the Return key again. Your regular user name will be changed to root. You can now do whatever you please. Navigate to the other account's Prefs folder:
cd /Users/otheraccount/Library/Preferences
hit the Return key, then type ls and hit Return to see a list of all the Preferences. Here's a sample of me accessing that folder in my test account (short name is revelator) and asking for a list of the files:
Tiger:~ francine$ sudo -s
Tiger:~ root# cd /Users/revelator/Library/Preferences
Tiger:/Users/revelator/Library/Preferences root# ls
From the list of files you can then copy of the name of what you want to remove and paste it in the remove command or type it:
Tiger:/Users/revelator/Library/Preferences root# rm com.apple.finder.plist
After you finish removing the files type
exit
and hit Return.
Francine
Francine
Schwieder

Similar Messages

  • I have three user accounts on one computer. On only one account when I when I check Help - About fire fox only one user account says apply update and won't apply. The other two work fine.

    One of three user accounts on the same computer appears to not be updating to 8.0.1 correctly. One admin and one none admin user account says it is up-to-date. The other non-admin user account, under Help About Firefox says apply update, but won't.

    As long as you installed MS Office into its default location (the top level /Applications folder) it will be available to all user accounts on the Mac.
    As far as licensing is concerned you only have to enter the license code once, which you should do right after installing MS Office, in the same admin account you installed it from, by opening any one of the MS Office applications.  There is no additional licensing required for additional user accounts on the same Mac.
    Each user account is able to run the Office apps.  The only thing you will have to do is go through an initial setup screen in each user account (but this setup does NOT involve entering any additional license codes).
    You may have problems if you installed MS Office in a particular user account (i.e. NOT in the top level /Applications folder).

  • Why the painted content flash and disappear?

    I try to run a simple code example from java almanac site but the painted content just flash and disappear. Can any people help to find the reason? Thanks in advance.
    Below are the code:
    package font;
    import java.text.AttributedString;
    import java.awt.*;
    import java.awt.font.LineBreakMeasurer;
    import java.awt.font.TextLayout;
    import javax.swing.*;
    public class DrawParagraphDemo extends JPanel {
        public DrawParagraphDemo() {
            this.setPreferredSize(new Dimension(500,500));
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("Demo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            DrawParagraphDemo demo = new DrawParagraphDemo();
            frame.setContentPane(demo);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
            demo.drawParagraph((Graphics2D) demo.getGraphics(), "One line of test string", 400);
        public void drawParagraph(Graphics2D g, String paragraph, float width) {
            LineBreakMeasurer linebreaker = new LineBreakMeasurer(
                new AttributedString(paragraph).getIterator(), g.getFontRenderContext());
            float y = 0.0f;
            while (linebreaker.getPosition() < paragraph.length()) {
                TextLayout tl = linebreaker.nextLayout(width);
                System.out.println(tl);
                y += tl.getAscent();
                tl.draw(g, 0, y);
                y += tl.getDescent() + tl.getLeading();
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

    Hi i have similar problem and i have followed Camickr's suggestion but it looks like my image was still being painted over here's my code
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    * FileChooserDemo2.java is a 1.4 application that requires these files:
    *   ImageFileView.java
    *   ImageFilter.java
    *   ImagePreview.java
    *   Utils.java
    *   images/jpgIcon.gif (required by ImageFileView.java)
    *   images/gifIcon.gif (required by ImageFileView.java)
    *   images/tiffIcon.gif (required by ImageFileView.java)
    *   images/pngIcon.png (required by ImageFileView.java)
    public class Asst4 extends JPanel
                                  implements ActionListener {
        static private String newline = "\n";
        private JTextArea log;
        private JFileChooser fc;
         private JPanel display,button;
         JButton load,grey,color;
         private Image image;
         static JComponent newContentPane;
        public Asst4() {
            super(new BorderLayout());
            //Create the log first, because the action listener
            //needs to refer to it.
              display=new JPanel();
              display.setOpaque(true);
              button=new JPanel();
              load=new JButton("Load Image");
              grey=new JButton("Greyscale Image");
              color=new JButton("Color Image");
              load.addActionListener(this);
              //display.setBackground(Color.BLACK);
              //System.out.println("displayable: "+isDisplayable()+" visible: "+isVisible()+" valid: "+isValid());
              //System.out.println("displayable: "+display.isDisplayable()+" visible: "+display.isVisible()+" valid: "+display.isValid());
              display.setSize(500,500);
              button.add(load, BorderLayout.WEST);
              button.add(grey, BorderLayout.CENTER);
              button.add(color, BorderLayout.EAST);
              add(button,BorderLayout.NORTH);
              add(display,BorderLayout.CENTER);
              setVisible(true);
        public void actionPerformed(ActionEvent e) {
                   //Set up the file chooser.
                   if (fc == null) {
                        fc = new JFileChooser();
                        //Add a custom file filter and disable the default
                        //(Accept All) file filter.
                        fc.addChoosableFileFilter(new ImageFilter());
                        fc.setAcceptAllFileFilterUsed(false);
                        //Add custom icons for file types.
                        fc.setFileView(new ImageFileView());
                        //Add the preview pane.
                        fc.setAccessory(new ImagePreview(fc));
                        //Show it.
                   int returnVal = fc.showDialog(Asst4.this,"Load Image");
                   //Process the results.
                   if (returnVal == JFileChooser.APPROVE_OPTION) {
                        File file = fc.getSelectedFile();
                        Toolkit toolkit = Toolkit.getDefaultToolkit();
                        image = toolkit.getImage(file.getAbsolutePath());
                        MediaTracker mediaTracker = new MediaTracker(this);
                        mediaTracker.addImage(image,0);
                        try {
                           mediaTracker.waitForID(0);
                        } catch (InterruptedException ie) {
                           System.err.println(ie);
                           System.exit(1);
                   } else {
                        System.out.println("Loading cancelled by user." );
                   fc.setSelectedFile(null);
        protected void paintComponent(Graphics g)
              super.paintComponent(g); // this paints the background
              if(image!=null)
              drawImage(image);
        private void drawImage(Image image){
              Graphics2D g=(Graphics2D)display.getGraphics();
              g.drawImage(image,0,0,null);
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            JDialog.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("Compsci_375_Assignment_4");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            newContentPane = new Asst4();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.setBounds(50,50,500,500);
               //frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }Can anyone tell me what's going on and also why if i pack the frame my display panel is disappear?
    Thanks a lot

  • Drop Down in ALV Flashes and Disappears.

    Hi All,
    I have a strange issue going on. In an ALV (built on CL_GUI_ALV_GRID) I have got an editable field with a drop down option.Now lets say I have 10 rows in an ALV. I chose an entry from the drop down in one of the rows (this happens OK) and immediately after that I go on a click on drop down for any other row. What happens is that the drop down for the new row that I am in flashes and disappears. Now if I click for the drop down again the drop down appears. Basically whenever an entry is selected in one of the rows, drop down function immediately after that does not work. I have a feeling that it has something to do with the data _changed event but I am not sure how to handle that event.
    I saw a similar thread  [ALV Menu Flash|ALV HANDLE_DATA_CHANGED_FINISHED; but could not figure it out.
    Any suggestions ?
    Thanks
    Anuj

    Hi,
    Let us see the code and check it
    Make the necessary changes at the fieldcatalog
    clear ls_fcat.
    ls_fcat-fieldname = 'COURSE'.
    ls_fcat-col_pos = 5.
    ls_fcat-coltext = 'Course'.
    ls_fcat-outputlen = 10.
    ls_fcat-DRDN_HNDL = 25.
    ls_fcat-edit = 'X'.
    APPEND ls_fcat to lt_fcat.
    and in the class cl_gui_alv_grid we have one method  SET_DROP_DOWN_TABLE
    and it is having one parameter called  iT_DROPDOWN of type  LVC_T_DROP
    generate the internal table and call the method set_drop_down_table
    clear ls_drop.
    ls_drop-handle = '25'.
    ls_drop-value = 'ABAP'.
    append ls_drop to lt_drop.
    clear ls_drop.
    ls_drop-handle = '25'.
    ls_drop-value = 'CRM'.
    append ls_drop to lt_drop.
    clear ls_drop.
    ls_drop-handle = '25'.
    ls_drop-value = 'WEBDYNPRO'.
    append ls_drop to lt_drop.
      CALL METHOD o_grid->set_drop_down_table
        EXPORTING
          it_drop_down       = lt_drop.
    Thanks & Regards.
    Raghunadh.K

  • Can not find Acrobat and Illustrator on my computer after installing it with CC-App

    Can not find Acrobat and Illustrator on my computer after installing it with CC-App. The CC-App show the programs as installed, but they are not seen  in "programs and funktions" or on other places on my computer.

    Hi Martin,
    Check this link and see if it helps: http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html, maybe the products weren't installed properly.
    Thanks!
    Ankit

  • Screen starts flashes and disappears

    Hello I need help. I am using dazzle to
    broadcast a Sony camera live. Every time I start adobe media live the screen flashes and disappears. It is not running in the back ground either. If i use my webcam it work fine.can some one please help.

    It seems FMLE and Dazzle card are not that friendly to work with each other.
    can you please give us complete details about the card you are using. we can consider this card for certification if it will become popular among FMLE users.

  • I have downloaded an audio talk from Audio Audible, and have authorised my computer to for my Audible Account, yet I still can't get the computer to play the download.

    I have downloaded an audio talk from Audio Audible, and have authorised my computer to for my Audible Account, yet I still can't get the computer to play the download.

    The apps I currently have are for the i phone and i pad but i would like to see this on this computer
    On the Mac Air launch iTunes. Then connect either the iPad or iPhone.
    Select the iPad or iPhone under Devices left side of the iTunes window in the source list.
    Then select Apps from the menu on the right.
    If you don't see the apps listed there, from your iTunes menu bar (top of your screen), click Store > Authorize This Computer.
    See if that makes a difference...

  • Can anyone tell me how to restore my itunes library and playlists? After I downloaded mountain lion my library is missing and my devices can be synced to only one library ...the missing one

    can anyone tell me how to restore my itunes library and playlists? After I downloaded mountain lion my library is missing and my devices can be synced to only one library ...the missing one

    That .itl file actually is the library -- at least the critical part of it although the library is actually many files and folders.
    Try starting iTunes and immediately hold down the option key.  When it asks, guide it to the .itl file.
    It's really hard to say without being able to poke around your computer.  Upgrading should not delete the old library, but still it happens to the very, very few which is why we make backups before updating.  If the old library file is gone then so are your playlists.  You can always see if the following is of any use:
    iTunes: How to re-create your iTunes library and playlists - http://support.apple.com/kb/ht1451

  • Macbook Pro shut down because the battery power ran out. Now I cannot start it and the battery will not charge. Only one green battery charge light lights up and blinks.

    My Macbook Pro shut down because the battery power ran out. Now I cannot start it and the battery will not charge. Only one green battery charge light lights up and blinks on the left side. I am running Lion. How do I get this to charge and turn on? Thanks

    If your model Macbook Pro is the calibrating model, let the battery calibrate. 
    If not, and are still under warrant or have Apple Care, give them a call and get a case number.  Otherwise, take the computer to an Apple store or an AASP.  Whichever is more convenient for you. 

  • Can i use my icloud account on more than one iphone.  I would like to find my iphone or wipe all of my iphones from one account

    I want to be able to use find my iphone or wipe all of my iphones from one account.

    Yes- See  Using Apple  ID  on  more than one device
    (870)

  • Can I switch between Illustrator and Photoshop? (I am subscribing to only one product per month)

    Can I switch between Illustrator and Photoshop? (I am subscribing to only one product per month)

    Absolutely. Just change the sim card and the APN details in the settings. You can do this either manually if you know them or just sync with iTunes after changing the sim and the details will sync. Once you have done it once for each network the device seems to remember the details.

  • Desktop Icons flash every 1 to 2 seconds and finder appears and disappears

    Hello All,
    This one is a bit baffling . . .
    After running a number of "software updates" (but I can't tell you which ones) the icons on the desktop disappear and reappear approximately every 1 to 2 seconds. Additionally, 'finder' is showing in the menu bar and the finder 'window' appears and disappears as well. Sometimes the finder window will disappear for 5 to 10 seconds but then it reappears. Whenever any application is started, the application is 'shut down' by the OS without any intervention from the user. I have never seen anything like this. Any ideas you have on how to find out what software updates we ran that might have caused this or how to 'back out' those software updates or just any general ideas on what we might want to try are appreciated.
    This is a MacBook Pro purchased late last year and I know we are NOT running 10.5 on this machine.
    Thanks in advance for any help you can provide.

    Laura is a she and that is the computer owner and primary user I am actually Mark 'the' husband just using her id trying to debug this 'thing'.
    So thanks for the continued suggestions. I can't get the machine to boot from the CD to be able to run the utilities on the tiger CD. I tried holding the 'C' while booting and also tried option-command-shift-delete with no success to boot from the CD..
    I will check try the syslog suggestion and see if I see anything.
    Please keep any and all suggestions coming
    Message was edited by: Laura Bauer

  • IChat: Buddies Flash and Disappear

    I am having a problem with iChat. This has happened with only a couple buddies though. I typed in their username, and then it just flashes for a few seconds and disappears. They are in my Address Book, but they won't stay in iChat. I tried adding the person a few times, but this still happens. What can I do about it?
    Thanks,
    Gregory Zackim

    Hi,
    If you read the person's response two minutes later on the same day you will see they said that it was sorted.
    How iChat is spelt does vary depending which file or part you are looking at.
    It makes no difference to Spotlight as Spotlight does not look in the place the poster needed to look.
    So they should have been looking for file with a lower case "c"
    In general with all the differences in languages and level of English used by posters whose first language is not English it also does not matter about the spelling when talking about the problem as long as everyone understands.
    Was there, prehaps, another reason why you wanted this 2 month old post raised to the top of the topic List ?
    10:06 PM Monday; May 18, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Where can I find Flash and Acrobat Install packages for Mac OS X?

    I'm managing over 200 Macs, and I need the Package Installs for Flash and Acrobat, and I need them everytime you decide to release an update.
    Our Department has licenses for 50 copies CS 6 Design & Web Premium, but the Adobe Manager doesn't manage Flash or Acrobat updates.
    Do you have Mac OS X Packages for these Apps?

    Technical resources for IT
    Adobe Reader Enterprise Deployment
    Flash Player enterprise deployment
    Mylenium

  • How do I move Flash CS6 from an old computer to a new one?

    I installed CC and CS6 on my computer when it was first introduced years ago. Now I need to upgrade to a new computer. The CC on the new computer does not show Flash CS6 support. I require AS2 since I have created many apps with it for my customers and need to continue to support them. I do not intend to switch to AS3 because I have too many old apps to change over.
    How do I install Flash CS6 on my new computer so I can remove it from my old one and get rid of it?
    Thanks!

    You can install Flash CS6 on your new machine with your Creative Cloud subscription.
    Sign in with your Adobe ID on the page https://creative.adobe.com/products/flash. You can then toggle the version from CC to CS6 and click the blue Download button. This will make the Creative Cloud app download and install the CS6 version.

Maybe you are looking for

  • An Open Letter to Verizon about Android 2.2 and Fascinate

                                                                            March 12, 2011 Dear Verizon, I purchased my Samsung Fascinate phone from one of your stores last September.  I distinctly recall the sales rep saying that Android 2.2 would be av

  • Ipod not syncrhonizing with Itunes

    I have an early generation ipod that will no longer synchronize with Itunes.  I downloaded Synchios to get the ipod music onto the computer.  Then deleted Synchios software.  Now, when I connect the ipod, it says it is synchronizing but newly purchas

  • Delete duplicates from query output

    Hello,   I would like to delete duplicated records before the output of a SAP query I tried writing in SQ02 in additional coding, under "Free coding": data %dtab type standard table of /1BCDWB/IQ000000001053 with header line. sort %dtab by vbeln posn

  • Help with translating SQL query from SQL Server syntax to Oracle syntax

    Hi, is it someone that can help me translate following SQL query from SQL Server syntax to Oracle syntax. SELECT ID, [LMT(MTR)] = MAX(case when TYPE = 'LMT' then VALUE end), [AAD(KGM)] = MAX(case when TYPE = 'AAD' then VALUE end), [VOL(MTQ)] = MAX(ca

  • MS SQL Server 7.0 Connectivity problems

    Hello, I am creating applets which display information taken in a MS SQL Server 7.0. My SQL requests are very simple. I program with JBuilder 3.5. As a new Java programer, I have some basic problems: -1- Do I have to GET the JDBC/ODBC driver? or is t