Incorrect disk and disk image icons

I'm running 10.7.4 on an early 2011 MBP with 8 GB RAM. Disk images, CDs, etc appear on the desktop with the generic hard drive icon.  My understanding is that this can be corrected by rebuilding launch services.  Upon rebuilding launch services, using Onyx, the icons are correct.  But the next day, they are incorrect again.  Is there any way to resolve this permanently?  Incorrect images can be temporarily corrected by selecting the item and opening the get info box.  This will show the correct icon and upon closing the get info box, the correct icon will appear.  But again, I'm looking for a more permanent fix.  Thanks to anyone that can help.

I have been reporting this problem to Apple since Lion was introduced. The last thing they wanted me to try was to remove DropBox. It seemed to make a difference, but it didn't elimnate the problem. I've since updated to the latest DropBox beta release.

Similar Messages

  • How to change this code to drag and drop image/icon into it??

    Dear Friends:
    I have following code is for drag/drop label, But I need to change to drag and drop image/icon into it.
    [1]. code 1:
    package swing.dnd;
    import java.awt.*;
    import javax.swing.*;
    public class TestDragComponent extends JFrame {
         public TestDragComponent() {
              super("Test");
              Container c = getContentPane();
              c.setLayout(new GridLayout(1,2));
              c.add(new MoveableComponentsContainer());
              c.add(new MoveableComponentsContainer());
              pack();
              setVisible(true);
         public static void main(String[] args) {
              try {
                   UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
              catch (Exception ex) {
                   System.out.println(ex);
              new TestDragComponent();
    }[2]. Code 2:
    package swing.dnd;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.border.*;
    import java.awt.dnd.*;
    import java.awt.datatransfer.*;
    import java.awt.image.*;
    import java.awt.dnd.DragSource;
    import java.awt.dnd.DropTarget;
    public class MoveableComponentsContainer extends JPanel {     
         public DragSource dragSource;
         public DropTarget dropTarget;
         private static BufferedImage buffImage = null; //buff image
         private static Point cursorPoint = new Point();
         public MoveableComponentsContainer() {
              setBorder(BorderFactory.createBevelBorder(BevelBorder.LOWERED, Color.white, Color.gray));
              setLayout(null);
              dragSource = new DragSource();
              ComponentDragSourceListener tdsl = new ComponentDragSourceListener();
              dragSource.createDefaultDragGestureRecognizer(this, DnDConstants.ACTION_COPY_OR_MOVE, new ComponentDragGestureListener(tdsl));
              ComponentDropTargetListener tdtl = new ComponentDropTargetListener();
              dropTarget = new DropTarget(this, DnDConstants.ACTION_MOVE, tdtl);
              setPreferredSize(new Dimension(400,400));
              addMoveableComponents();
         private void addMoveableComponents() {
              MoveableLabel lab = new MoveableLabel("label 1");
              add(lab);
              lab.setLocation(10,10);
              lab = new MoveableLabel("label 2");
              add(lab);
              lab.setLocation(40,40);
              lab = new MoveableLabel("label 3");
              add(lab);
              lab.setLocation(70,70);
              lab = new MoveableLabel("label 4");
              add(lab);
              lab.setLocation(100,100);
         final class ComponentDragSourceListener implements DragSourceListener {
              public void dragDropEnd(DragSourceDropEvent dsde) {
              public void dragEnter(DragSourceDragEvent dsde)  {
                   int action = dsde.getDropAction();
                   if (action == DnDConstants.ACTION_MOVE) {
                        dsde.getDragSourceContext().setCursor(DragSource.DefaultMoveDrop);
                   else {
                        dsde.getDragSourceContext().setCursor(DragSource.DefaultMoveNoDrop);
              public void dragOver(DragSourceDragEvent dsde) {
                   int action = dsde.getDropAction();
                   if (action == DnDConstants.ACTION_MOVE) {
                        dsde.getDragSourceContext().setCursor(DragSource.DefaultMoveDrop);
                   else {
                        dsde.getDragSourceContext().setCursor(DragSource.DefaultMoveNoDrop);
              public void dropActionChanged(DragSourceDragEvent dsde)  {
                   int action = dsde.getDropAction();
                   if (action == DnDConstants.ACTION_MOVE) {
                        dsde.getDragSourceContext().setCursor(DragSource.DefaultMoveDrop);
                   else {
                        dsde.getDragSourceContext().setCursor(DragSource.DefaultMoveNoDrop);
              public void dragExit(DragSourceEvent dse) {
                 dse.getDragSourceContext().setCursor(DragSource.DefaultMoveNoDrop);
         final class ComponentDragGestureListener implements DragGestureListener {
              ComponentDragSourceListener tdsl;
              public ComponentDragGestureListener(ComponentDragSourceListener tdsl) {
                   this.tdsl = tdsl;
              public void dragGestureRecognized(DragGestureEvent dge) {
                   Component comp = getComponentAt(dge.getDragOrigin());
                   if (comp != null && comp != MoveableComponentsContainer.this) {
                        cursorPoint.setLocation(SwingUtilities.convertPoint(MoveableComponentsContainer.this, dge.getDragOrigin(), comp));
                        buffImage = new BufferedImage(comp.getWidth(), comp.getHeight(), java.awt.image.BufferedImage.TYPE_INT_ARGB_PRE);//buffered image reference passing the label's ht and width
                        Graphics2D graphics = buffImage.createGraphics();//creating the graphics for buffered image
                        graphics.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.5f));     //Sets the Composite for the Graphics2D context
                        boolean opacity = ((JComponent)comp).isOpaque();
                        if (opacity) {
                             ((JComponent)comp).setOpaque(false);                         
                        comp.paint(graphics); //painting the graphics to label
                        if (opacity) {
                             ((JComponent)comp).setOpaque(true);                         
                        graphics.dispose();
                        remove(comp);
                        dragSource.startDrag(dge, DragSource.DefaultMoveDrop , buffImage, cursorPoint, new TransferableComponent(comp), tdsl);     
                        revalidate();
                        repaint();
         final class ComponentDropTargetListener implements DropTargetListener {
              private Rectangle rect2D = new Rectangle();
              Insets insets;
              public void dragEnter(DropTargetDragEvent dtde) {
                   Point pt = dtde.getLocation();
                   paintImmediately(rect2D.getBounds());
                   rect2D.setRect((int) (pt.getX()-cursorPoint.getX()),(int) (pt.getY()-cursorPoint.getY()),buffImage.getWidth(),buffImage.getHeight());
                   ((Graphics2D) getGraphics()).drawImage(buffImage,(int) (pt.getX()-cursorPoint.getX()),(int) (pt.getY()-cursorPoint.getY()),MoveableComponentsContainer.this);
                   dtde.acceptDrag(dtde.getDropAction());
              public void dragExit(DropTargetEvent dte) {
                   paintImmediately(rect2D.getBounds());
              public void dragOver(DropTargetDragEvent dtde) {
                   Point pt = dtde.getLocation();
                   paintImmediately(rect2D.getBounds());
                   rect2D.setRect((int) (pt.getX()-cursorPoint.getX()),(int) (pt.getY()-cursorPoint.getY()),buffImage.getWidth(),buffImage.getHeight());
                   ((Graphics2D) getGraphics()).drawImage(buffImage,(int) (pt.getX()-cursorPoint.getX()),(int) (pt.getY()-cursorPoint.getY()),MoveableComponentsContainer.this);
                   dtde.acceptDrag(dtde.getDropAction());
              public void dropActionChanged(DropTargetDragEvent dtde) {
                   Point pt = dtde.getLocation();
                   paintImmediately(rect2D.getBounds());
                   rect2D.setRect((int) (pt.getX()-cursorPoint.getX()),(int) (pt.getY()-cursorPoint.getY()),buffImage.getWidth(),buffImage.getHeight());
                   ((Graphics2D) getGraphics()).drawImage(buffImage,(int) (pt.getX()-cursorPoint.getX()),(int) (pt.getY()-cursorPoint.getY()),MoveableComponentsContainer.this);
                   dtde.acceptDrag(dtde.getDropAction());
              public void drop(DropTargetDropEvent dtde) {
                   try {
                        paintImmediately(rect2D.getBounds());
                        int action = dtde.getDropAction();
                        Transferable transferable = dtde.getTransferable();
                        if (transferable.isDataFlavorSupported(TransferableComponent.COMPONENT_FLAVOR)) {
                             Component comp = (Component) transferable.getTransferData(TransferableComponent.COMPONENT_FLAVOR);
                             Point location = dtde.getLocation();
                             if (comp == null) {
                                  dtde.rejectDrop();
                                  dtde.dropComplete(false);
                                  revalidate();
                                  repaint();
                                  return;                              
                             else {                         
                                  add(comp, 0);
                                  comp.setLocation((int)(location.getX()-cursorPoint.getX()),(int)(location.getY()-cursorPoint.getY()));
                                  dtde.dropComplete(true);
                                  revalidate();
                                  repaint();
                                  return;
                        else {
                             dtde.rejectDrop();
                             dtde.dropComplete(false);
                             return;               
                   catch (Exception e) {     
                        System.out.println(e);
                        dtde.rejectDrop();
                        dtde.dropComplete(false);
    }Thanks so much for any help.
    Reagrds
    sunny

    Well, I don't really understand the DnD interface so maybe my chess board example will be easier to understand and modify:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=518707
    Basically what you would need to do is:
    a) on a mousePressed you would need to create a new JLabel with the icon from the clicked label and add the label to the glass pane
    b) mouseDragged code would be the same you just repaint the label as it is moved
    c) on a mouseReleased, you would need to check that the label is now positioned over your "drop panel" and then add the label to the panel using the panels coordinates not the glass pane coordinates.

  • My system bootstrapper crashed. I've repaired the disk and disk permissions and still no luck

    While trying to restart after downloading an iTunes update, my computer won't go past the grey screen with the apple and loading bar. When I hit command+s it says my system bootstrapper crashed. I've repaired the disk and disk permissions and it still won't load. Help!

    What is your Mac OS version?

  • What is the work around for not being able to see icons for folders.  I want to be able to copy and paste image icons in the GET INFO windows.

    I have always used images for my folder icons, and now I am told that Mt. Lion does not allow me to go to the GET INFO window and do a click on the image icon and then be able to paste that image on to other folders.    I just talked with a Apple support guy and he said that Mt. Lion does not support this function.  He did say that there are third party programs that allow using images to make icons for folders or other items.  I can see some image icon in some of my hard drive folders.......  some folders show image icons while others do not. I am a photographer and have scads of photo folders spread all over different hard drives, and I find it easier to find what I am looking for by just looking at the IMAGE PICTURE in the different folders on my hard drives, than by having to read the one or two words associated with each folder.
    THe support guy said to request that APPLE put back the ability to use the coy paste function in the GET INFO window.  If i can't get this working like it was I wouyld like to know how to get a refund and throw out Mt Lion.

    Restore your Lion bootable backup/clone or Time Machine backup and file your ML bug report. Just keep the installer ($20 USD isn't worth the hassle trying to get it refunded). Then, when the function's restored, reinstall and run Software Update.

  • Time machine full backup after disk and disk permissions repair

    my macbook would not boot so i inserted the snow leopard DVD and did a disk repair and disk permissions repair, after that it booted perfectly but when it went to do a backup it did a full backup of 149GB , i am unsure why it has done this and would like to know how to stop it as i am trying to save space on my time capsule.
    thank you in advance

    Brycycle wrote:
    i do not wish to let it do a full backup so as to save space on my time capsule but this is the log up till when it started transferring data.
    I'm afraid you don't have much choice. You do have lot of space available, though.
    Node requires deep traversal:/ reason:must scan subdirs|new event db|
    No pre-backup thinning needed: 165.92 GB requested (including padding), 507.60 GB available
    The "deep traversal" means TM compared everything on your system to the backups, and estimates that about 138 GB is new/changed (it adds 20% for workspace on the TM disk - the "padding" in the message).
    If there's about 138 GB on your system, see #D3 in [Time Machine - Troubleshooting|http://web.me.com/pondini/Time_Machine/Troubleshooting.html] (or use the link in *User Tips* at the top of this forum), for some common reasons for TM to do a new full backup.
    If there's more, #D4 there has some common reasons for large backups.
    If all you did was repair disk and permissions, neither should have resulted.
    the reason i did a permission repair and disk repair while running from the install disk was because my laptop would not boot from the internal disk so i did both just to be safe.
    That's fine; just do the Permissions Repair again, while running normally.

  • I have the so called white screen of death. I am able to get into OS X Utility. I have verified disk and disk is ok. I am trying to reinstall Maverick, but i don't have enough space. Dilemma is i cannot get onto my computer to delete data for more space.

    I have the white screen of death, but am able to get into OS X utilitites. I have verifed disk and it's ok. I am trying to reinstall mavericks, but i don't have enough disk space. Dilemma is i can't get onto computer to delete files to create space.
    Any suggestions?

    Upgrade iPhoto:
    Go to the App Store and check out the Purchases List. If iPhoto is there then it will be v9.6.1
    If it is there, then drag your existing iPhoto app (not the library, just the app) to the trash
    Install the App from the App Store.
    Sometimes iPhoto is not visible on the Purchases List. it may be hidden. See this article for details on how to unhide it.
    http://support.apple.com/kb/HT4928
    One question often asked: Will I lose my Photos if I reinstall?
    iPhoto the application and the iPhoto Library are two different parts of the iPhoto programme. So, reinstalling the app should not affect the Library. BUT you should always have a back up before doing this kind of work. Always.

  • Verifying Disk and Disk Repair ...

    Please forgive me, but I know very little about this. I just ran "Verify Disk" on my hard drive in Disk Utility because my firewire devices aren't working and got this message:
    Verifying volume “Macintosh HD”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Illegal name
    Illegal name
    Checking multi-linked files.
    Checking multi-linked files.
    og hierarchy.",0)
    Checking Extended Attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume The volume osh HD needs to be repaired.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    It won't let me repair the disk, though.

    Disk Utility will likely be able to repair this (Disk Warrior is a fine product but you have to buy it, so try the free Apple solution first.)
    If you run Disk Utility & click on the "First Aid" tab, please note the last sentence in the onscreen instructions in the window just above the white area where the results of the verify come up.
    It explains that to repair your startup drive, you start up from your installer DVD, & run Disk Utility from the Utilities Menu. If you are still uncertain about what this means, click the "?" bubble button in Disk Utility's window & its Help will open to an overview page. Select "Testing and repairing your startup disk" (as it explains) for more detailed info.

  • Yosemite showing old icons for Hard Disks and Disk images

    Hey all,
    I'm running OS X Yosemite, all fully up to date, based on an upgrade install from Mavericks. Everything's basically fine, with the exception that any sort of disk icon (Internal, USB, Disk Images etc) all still use the old Mavericks style icons.
    Not a major issue but kind of irritating me at the minute, I could go through and manually change them but I still get the old ones appear when a new disk connects.
    This behaviour is exclusive to my user account as when I set up a second user to investigate all icons were the new 'flat' style.
    Has anyone come across this, and if so did you find a resolution?

    Mine look the same.  Were they suppose to change?

  • Backup disk and Disk Images not mounting

    *Intial Disk Utility problem:* Recently my trusty 6 year old PowerBook G4 died from hard-drive failure, with most of my data backed up on external drives. Before migrating data over to my new iMac, I performed "First Aid" in "Disk Utility" on the external backup drive. One of the drives (500GB iomega drive) that backed up my PowerBook and my PC had 5 partitions (4 were FAT32, and 1 was NTFS), somehow got erased in Disk Utility. Even though I was just verifying one of the partitions the whole drive was cleared and renamed: disk2s4 (28kb) and disk2s10 (372.5GB). This didn't take much time, so I knew all the data hadn't been cleared, and checked the Security Options for Erase, and its set to "Don't Erase Data."
    *Disk Warrior attempt:* At this point, having a sorta wrecked backup drive that still apparently had data, I bought Disk Warrior and gave that a try. It read the drive the first time, but couldn't recover any of the directory information. Hoping to not overwrite anything, at that point, I didn't proceed with the "rebuild" option. Now when I try Disk Warrior, it just says:
    Directory Cannot be rebuilt due to disk hardware failure (-50,447)
    - This disk appears to be a MacOS standard sik
    - This disk does not appear on the desktop
    - This disk is 372.49 GB in size
    - Disk ID: disk2s10
    - File system: HFS (standard) +even though most of the drives had been fat32+
    Now Disk Warrior doesn't even give the option to scan the drive.
    *Disk Imaging attempt:* Disk Warrior is claiming a hardware problem (which isn't really the case), so I tried making a disk image in Disk Utility of both disk2s10 and disk2s4. I tried opening disk2s10.dmg in Finder and in Disk Utility, and get the message: "No mountable file systems." In the past when confronted with unmountable disk images, I've used VLC media player. So, I pull up VLC read disk2s10.dmg and music starts playing!!! At first I freak out, then I realize that its the first song listed in my iTunes library -- the data is there, can be retrieved, but I'm not sure how to get it!
    *Next attempts:* the only other thing I can think of is to try daemon tools or something on my PC, or bring the drives into the the school IT guys.
    Please let me know what you think would work that I haven't already tried. Though I have redundancy in the backups, I haven't been able to recover some data for my PhD thesis due in a month, and therefore haven't given up on reviving this disk yet.

    I've downloaded the DataRescue and FileSalvage trials, and am currently scanning with DataRescue which will take another few hours. Thanks for those recommendations, its so useful to have a trial scan before buying.
    *General Question:* I noticed through these various attempts that reformatting extra drives in the current version of Disk Utility has become a little more dangerous than before. For example, I was reformatting a spare disk from FAT32 to HFS+ and the drive became unmountable. This never happened to me in earlier versions of OSX, and now it seems to happen every time, and partly why my partitions got all screwy. Any thoughts?

  • FireWire issue: 4 disks and DV cam

    Hello,
    I bought this new iMac Intel to do some basic (but GB crunchy) movie editing.
    So on one FW channel, I plugged in my four 3.5" 250GB disks, all cascaded on the same channel. All of them have an external ower supply. Everything is great.
    Now, I connect my Canon MXV10i DV cam on the other FW connector (the one close to USB ports) and although the cam can be controlled by iMovie, no image is display neither captured.
    I have to "eject" my disks, wait for them to mechanically stop after unmount (still powered though), plug in the cam then re-mount the disks and the image comes perfect and can be captured.
    Any idea?

    Do you think there'll be a fix in a near future?
    I'm no Apple employee, and if so, we don't commend on future products
    all products get improved constantly, but many "errors" don't get corrected... for years, ask Karl or Matti, "unofficial keeper of iM bugs"/http://www.sjoki.uta.fi/~shmhav/iMovieHDbugs.html...
    I received some harsh critique for mentioning the following, but, again:
    all these iApps are consumer toys apps.
    and they have a concept of usage underneath...
    look, how SJ presents the iApps on his keynotes:
    some stills from the weekend, a video of a dog-wash... boom!done... the typical Daddy-does-movies... as me!
    no word of "318 minutes, 2564 transitions, 311 stills, modiyfied themes, plug-ins for multi layers, usage of level0 raids..." etc....
    have a look at the used metaphor in iMovie:
    sorting slides.
    that is a >50 year old "technique"... even me understands that.
    pro attitude? use pro tools. that easy. (still trying to learn FCE for about a year...)
    back-to-topic, sorry for rant:
    de-plug ext. drives
    import onto internal drive
    drag clips/projects onto ext drives later....

  • Repairing permissions and disk from downloaded upgrade from Leopard to Lion.

    Can I make a boot disk from a downloaded version of 10.7.5? I need to repair disk and disk permissions from a boot disk, and my Leopard disk will not boot the air w/ 10.7 Lion.

    You do that by booting into recovey mode (⌘R) and running Disk Utility from there.

  • Image Icon not showing in "get info" for OS 10.9.4

         I  now have PS CC 2014 and the image icons are showing the "generic" .jpg and .psd files in the "get info" finder window, but on my desktop the images are showing their
         proper image icon.
         I was previously using PS CS 5 and the icons are showing up in the "get info" window, but with PS CC 2014 these icons are showing up as generic.
         To be clear the images I saved using PS CS 5 are showing the icons vs. the images I saved in CC 2014 where the icons are not showing in the "get info" window.
         I've compared preference settings with PS 2014 and PS 5 but their basically about the same.
         I'm including 2 images so you can see what I'm explaining. IMG_1627 is a PS CC2014 created image and Arturo is a PS 5 image.
         I did read about other PS users having similar issues but it looked to be unresolved.
         You may think what's the big deal, but I use these image icons to label my folders. A "trick" I've doing for over decade which helps keep my folders visually on track for me.
         Is anyone out there able to solve this issue??  

    I do on occasion get jpgs and pngs that won't render a thumbnail or preview in MacOS.  I have 10.9.5
    I don't have this problem, although I just have CC and CC 2014 on my Macbook.
    I would open those up in Preview.app and try a Save As... and I would get the thumbnail and thumbnail preview back.
    Not really the best idea,but you can see if it helps.
    These  are my file saving options, perhaps there is something there you can try.
    Gene

  • JPG Image Icons imported from OS 9.1 stay tiny in OS 10.4.8 finder windows

    The icons of nearly ten thousand jpg images that I transferred via AppleTalk from my old PowerPC (OS 9.1) to my new iMac (OS 10.4.8) appear tiny in finder windows. [The problem seems to be unique to jpg image files, since other transfered items, such as folders, documents, and tiff image icons, behave normally on the new system.]
    I have no problem with new images that have been created or saved on the iMac; they behave properly, adjusting from 16x16 to 128x128. However, all old (transferred) images in the same finder window remain tiny, no matter how I adjust the settings in View > Show View Options.
    I have discovered an unsatisfactory, tedious, image-by-image workaround. By opening a single old image and chosing "Save As…" I can save the image as a new jpg; then the icon will behave like other newly created images. Unfortunately, once the image is newly saved, I lose important data about the original image, such as Date Created.
    How can I "update" the old jpg image icons (transferred from OS 9.1 via AppleTalk) so they will behave like the newer icons, without losing old image data and having to resave the images one by one?
    iMac 2GHz Intel Core Duo   Mac OS X (10.4.8)   (previously, PowerPC 8500/120, OS 9.1)

    you need to trash the current version of IPhoto, just the application, leave all libraries intact, throw te iPhoto into the trash and up date, it wil ask you after install what libraries you want to install. Your choice, latsest is always my chioce. Do all the iPhoto updates before this step, as the download could have been corrupted. Hapened to me on my wifes nachine 10.7.3., which would have been certain death for me. After the re-install it will ask you which library to install, I always pick the latest, but you can put in others  as well.
    Good luck, because if I lost those files, I'd be pushing uo Daisys about now.
    There might be someone who knows a better wat too do this, and there is software to help ypu recover your data.(Data Resue, ClamEx)
    Hope tuis helps

  • Call  form   with out  broken image icon

    Question: How can fit the tags of a <form> into a small
    cell without the tags causing misalingment in the table?
    I need to put a PayPal button on my site. The shopping cart I
    was using up until now used only a link so I simply used hotspots
    on button images. This new PayPal button sends information from my
    site to PayPal with a <form>. The problem I am having is with
    the elements in the red dotted form box ( yellow tags and broken
    image icon). I have made the yellow tags invisible but the grey
    broken image icon won't fit into the small cell( 86x22 ) of my
    sites menu bar with out misaligning the table of cells. I spent
    considerable time building my menu bar from layers so I would like
    to keep intact.
    The gray broken image icon shows because PayPal requires
    that you copy the button image location directly from the browser
    webpage <input type="image" src="
    http://www.glotosleep.com/images_2007/img_buy_now_paypal.gif"
    Thank You for any help. I am sure there is a simple solution
    I just was not able find it anywhere on the net.
    my site is www,glotosleep.com and the button i would like to
    link to the PayPal form is the "Buy Now" in the menu bar

    Question: How can fit the tags of a <form> into a small
    cell without the tags causing misalingment in the table?
    I need to put a PayPal button on my site. The shopping cart I
    was using up until now used only a link so I simply used hotspots
    on button images. This new PayPal button sends information from my
    site to PayPal with a <form>. The problem I am having is with
    the elements in the red dotted form box ( yellow tags and broken
    image icon). I have made the yellow tags invisible but the grey
    broken image icon won't fit into the small cell( 86x22 ) of my
    sites menu bar with out misaligning the table of cells. I spent
    considerable time building my menu bar from layers so I would like
    to keep intact.
    The gray broken image icon shows because PayPal requires
    that you copy the button image location directly from the browser
    webpage <input type="image" src="
    http://www.glotosleep.com/images_2007/img_buy_now_paypal.gif"
    Thank You for any help. I am sure there is a simple solution
    I just was not able find it anywhere on the net.
    my site is www,glotosleep.com and the button i would like to
    link to the PayPal form is the "Buy Now" in the menu bar

  • Disk Images will not mount and Disk Utility will not runru

    I am having some major problems with Disk Utility, Disk Images, and software update. First, Disk utility will not open or run. When I double-click the application icon, nothing happens, no message, nothing. I am running OSX 10.4.11. I have deleted diskutility prefs. I am able to run Disk Utility from the Startup DVD of Tiger. On first run, it verified and repaired permissions. I run verify and repair permissions several more times from Startup DVD and everything is fine. But Disk Utility on my startup HD will not work. Similary, NONE of my disk images will mount. No matter what Disk Image i try to mount, nothing will. And I cannot use Disk utility to mount them! So, no matter what I download, no images will mount. And thirdly, when I try to run software update, it will not work. I do get a message: it says, "Could not load Software Update." Finally, i tried to download Onyx to delete log files, etc.. but again, the disk image will not mount. I was able to install a dashboard widget called "maintidget" and was successful in running the daily, weekly, and monthly maintenance tasks. Can anyone help? Everything else works fine!!! All apps! Safari, Mail, iTunes, MS Office, everything works fine. Thanks for ANY help!

    Previously, I had run verify permissions, repair permissions multiple times(from startup DVD) - no probems found. Deleted disk utility prefs. Run the maintenance taskes (daily, weekly, monthly). Nothing worked. But, I forget to check the drive for problems. So I ran disk scan. It found "invalid node" and repair disk could not do it. So, do I erase and do a fresh install or get DiskWarrior? I am running Leopard so I do not have Time Machine but I have backed up my documents, iTunes Library, iPhoto Library, etc... Another thing I found out the hardway is to sync all your bookmarks, mail settings and messages, etc... with .mac if you have an account. Any more suggetions?

Maybe you are looking for

  • The Adobe Flash plugin keeps crashing on Firefox 12.0

    The Adobe Flash plugin keeps crashing on Firefox 12.0, and my Plugin Check link in Addons Manager directs to https://www.mozilla.com/en/404 . Is this a hack attempt? Is Firefox 3.6 safer than the release channel?

  • Issues with TOR and Firefox

    Hello, I am attempting to use a combination of Vidalia and the Torbutton Firefox extension to access the Tor network. However, every time I do, Firefox refuses to load any pages, stating that it is connected to a proxy that is refusing connections. M

  • Bank listing in payable form

    Dear All, All banks are listing in AP Payment form. Please tell me how to restrict banks there. Regards, Deeps.

  • How do I save a profile in Lens Correction in Photoshop

    I am using Photoshop CS6 on a PC running Win7.  In the previous version I was able to save a profile in the Lens Correction panel.  In this version I can find my camera and my lens but it won't let me save the profile.  I only real estate and straigh

  • ASA Cannot access https device via Clientless VPN bookmark, site to site works fine

    We've got two offices connected via an IPSEC tunnel.  This site to site VPN works great, we can access our remote devices fine from a PC on either LAN at each office.  The device's address is https://192.168.210.2 However, if we make a bookmark on th