Safari runs but won't display anything.

As the title says, all Safari windows seem to have gone somewhere! The app starts but there's nothing visible. Enter full screen and the page appears. Try anything else and nothing at all is displayed. The app seems to be running just fine, right clicking the Dock icon shows a list of open pages, clicking "Show all windows" greys out the Desktop but shows nothing at all. Clicking View and Window options has no effect. I've restarted, but no change. Very odd behaviour, never seen it before. Any solutions?

I tried switching that Resume feature off, shut all apps, restarted, but Safari is still refusing to display *anything* except in full screen mode.
(Resume was proving to be pretty irritating on other apps though, like TextEdit and Preview, so I'm glad to know the off switch is there!)
But this Safari issue is a real puzzle to me. The timing is awful, I need to start accessing my new university course website from today and literally the first time I try this issue appears. Not a complete disaster, I can still open in full screen, but I usually use half a dozen windows at once and being boxed into one is very awkward and not a good start.

Similar Messages

  • Safari opens but won't display window

    I am having trouble with Safari opening and not displaying a window to browse in.
    I appreciate any feedack.

    I am having this problem as well, but it only occurs when launching Safari using the "Open at login" feature.
    Opening at login launches the app but not a new browser window. Standard launching of the app automatically opens a new browser window. Anyone got any ideas what's up?

  • Code compiles, runs but doesn't display anything, not even Exceptions?

    The title just about says it all, but I don't even get a window, why is this? If it's some exception then it's not displaying for me to diagnose. Some pointers in what might be wrong would be really appreciated here - I'm pretty new to Java 3D.
    * Test.java
    * PrTestf of concept - this class draws a 3D wire-frame model of a BattleZone tank
    * @author Mark2
    * Created on 10 September 2006, 18:59
    package BattleZone;
    import java.awt.*;
    import java.awt.event.*;
    import com.sun.j3d.utils.applet.MainFrame;
    import com.sun.j3d.utils.universe.*;
    import com.sun.j3d.utils.geometry.*;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    public class Test extends CloseableFrame
    public static View myView = new View();
    public static GeometryInfo gi;
    GraphicsConfiguration config = SimpleUniverse.getPreferredConfiguration();
    public Canvas3D canvas3D = new Canvas3D(config);
    public SimpleUniverse simpleU = new SimpleUniverse(canvas3D);
    public void Test()
        CloseableFrame frame = new CloseableFrame("Proof of Concept");
        setVisible(true);
        MakeUniverse();
        constructView();
    public static void main(String args[])
       new Test();
    public SimpleUniverse MakeUniverse()
        ViewPlatform myViewPlatform = new ViewPlatform();
        myView.attachViewPlatform(myViewPlatform);
        BranchGroup contentBranchGroup = new BranchGroup();
        simpleU.addBranchGraph(contentBranchGroup);
        simpleU.getViewingPlatform().setNominalViewingTransform();
        MakeSceneGraph();
        return simpleU;
    public BranchGroup MakeSceneGraph()
        BranchGroup scene = new BranchGroup();
        populateGraph(simpleU, scene);
        return scene;
    private View constructView()
        myView.addCanvas3D(canvas3D);        //NullPointerException
        myView.setPhysicalBody(new PhysicalBody());
        myView.setPhysicalEnvironment(new PhysicalEnvironment());
        return myView;
    public static BranchGroup populateGraph(SimpleUniverse simpleU, BranchGroup scene)
        simpleU.addBranchGraph(scene);
        Read_In_Tank_Data();
        return scene;
        public static void Read_In_Tank_Data()
        float[] data = new float[13*3];
        int [] stripCount = {6,7};
        int i = 0;
        //          X               Y                   Z   for each point in the polygon
                                       //Draw near view first
        data[i++]= -1.0f; data[i++]= -1.0f; data[i++]= 0.0f;    //1     Back right corner of base
        data[i++]= -1.5f; data[i++]= -0.5f; data[i++]= 0.0f;
        data[i++]= -1.0f; data[i++]= 0.0f; data[i++]= 0.0f;
        data[i++]= +2.0f; data[i++]= 0.0f; data[i++]= 0.0f;     //Draws base
        data[i++]= +3.0f; data[i++]= -0.5f; data[i++]= 0.0f;     //Forward most point
        data[i++]= +2.5f; data[i++]= -1.0f; data[i++]= 0.0f;     //6
        data[i++]= -1.0f; data[i++]= 0.0f; data[i++]= 0.0f;     //Draw top and turret
        data[i++]= 0.0f; data[i++]= +1.0f; data[i++]= 0.0f;     //Highest point - Antanae array on top of here
        data[i++]= +0.5f; data[i++]= +0.75f; data[i++]= 0.0f;
        data[i++]= -+2.0f; data[i++]= +0.75f; data[i++]= 0.0f;     //10
        data[i++]= +2.0f; data[i++]= +0.5f; data[i++]= 0.0f;
        data[i++]= +1.0f; data[i++]= +0.5f; data[i++]= 0.0f;
        data[i++]= +2.0f; data[i++]= 0.0f; data[i++]= 0.0f;     //13
                                       //Draws far view same as front but with -1 Z values
        data[i++]= -1.0f; data[i++]= -1.0f; data[i++]= -1.0f;         //Back left corner of base
        data[i++]= -1.5f; data[i++]= -0.5f; data[i++]= -1.0f;     //15
        data[i++]= -1.0f; data[i++]= 0.0f; data[i++]= -1.0f;
        data[i++]= +2.0f; data[i++]= 0.0f; data[i++]= -1.0f;     //Draws base
        data[i++]= +3.0f; data[i++]= -0.5f; data[i++]= -1.0f;     //Forward most point
        data[i++]= +2.5f; data[i++]= -1.0f; data[i++]= -1.0f;
        data[i++]= -1.0f; data[i++]= 0.0f; data[i++]= -1.0f;     //20      Draw top and turret
        data[i++]= 0.0f; data[i++]= +1.0f; data[i++]= -1.0f;     //Highest point - Antanae array on top of here
        data[i++]= +0.5f; data[i++]= +0.75f; data[i++]= -1.0f;
        data[i++]= -+2.0f; data[i++]= +0.75f; data[i++]= -1.0f;
        data[i++]= +2.0f; data[i++]= +0.5f; data[i++]= -1.0f;
        data[i++]= +1.0f; data[i++]= +0.5f; data[i++]= -1.0f;     //25
        data[i++]= +2.0f; data[i++]= 0.0f; data[i++]= -1.0f;     //26
        //Need some connecting lines to make a whole object.
        GeometryInfo gi = new GeometryInfo(GeometryInfo.POLYGON_ARRAY);
        gi.setCoordinates(data);
        gi.setStripCounts(stripCount);
        NormalGenerator ng = new NormalGenerator();
        ng.generateNormals(gi);
        gi.recomputeIndices();
        Stripifier st = new Stripifier();
        st.stripify(gi);
        gi.recomputeIndices();
        createWireFrameAppearance();
    public static Appearance createWireFrameAppearance()
        Appearance materialAppear = new Appearance();
        PolygonAttributes polyAttrib = new PolygonAttributes();
        polyAttrib.setPolygonMode(PolygonAttributes.POLYGON_LINE);
        materialAppear.setPolygonAttributes(polyAttrib);
        return materialAppear;
    }

    Its because your public void Test() should be public Test(). Its a constructor, not a method.

  • Safari 4.0.3 Starts but won't display any windows properly

    Since accepting the update to Safari 4.0.3 this morning, Safari starts but will not display any windows, just the main application menu bar.
    Trying new window has no effect and launching a history item either has no effect or safari crashes complaining that the crash could have had something to do with
    libcooliris.dylib
    I therefore removed /Library/InputManagers/Cooliris but this made no difference.
    History flow displays but won't launch any windows and strangely Menu>History>Home opens a window but there are no tabs nor URL nor search bar, but there is only the history bar. The window is all grey including where the page should be.
    Trying to open other history items in this window changes the title, but no page contents are displayed.
    I also tried reinstalling 4.0.3. from the Apple website, but this made no difference.
    Have you any idea what I could try next?
    Thanks

    Deleted all from /Library/InputManagers and problem solved.
    I did have the following:
    Cooliris
    QuicKeysIM
    Saft
    DeliciousSafari
    SIMBL
    TabExpose
    Not sure where the problem was, but did find the following in the log after running permissions fix in Disk Utility:
    17/08/2009 11:09:01 Saft[275] Error loading /Library/InputManagers/QuicKeysIM/QuicKeysIM.bundle/Contents/MacOS/QuicKeysIM: dlopen(/Library/InputManagers/QuicKeysIM/QuicKeysIM.bundle/Contents/MacOS/QuicK eysIM, 265): no suitable image found. Did find:
    /Library/InputManagers/QuicKeysIM/QuicKeysIM.bundle/Contents/MacOS/QuicKeysIM: GC capability mismatch
    17/08/2009 11:09:01 Saft[275] Error loading /Library/InputManagers/Saft/SaftLoader.bundle/Contents/MacOS/SaftLoader: dlopen(/Library/InputManagers/Saft/SaftLoader.bundle/Contents/MacOS/SaftLoader, 265): no suitable image found. Did find:
    /Library/InputManagers/Saft/SaftLoader.bundle/Contents/MacOS/SaftLoader: GC capability mismatch
    17/08/2009 11:09:01 Saft[275] Error loading /Library/InputManagers/TabExpose/TabExpose.bundle/Contents/MacOS/TabExpose: dlopen(/Library/InputManagers/TabExpose/TabExpose.bundle/Contents/MacOS/TabExpo se, 265): no suitable image found. Did find:
    /Library/InputManagers/TabExpose/TabExpose.bundle/Contents/MacOS/TabExpose: GC capability mismatch
    17/08/2009 11:09:01 Saft[275] Error loading /Library/InputManagers/DeliciousSafari/DeliciousSafari.bundle/Contents/MacOS/De liciousSafari: dlopen(/Library/InputManagers/DeliciousSafari/DeliciousSafari.bundle/Contents/M acOS/DeliciousSafari, 265): no suitable image found. Did find:
    /Library/InputManagers/DeliciousSafari/DeliciousSafari.bundle/Contents/MacOS/De liciousSafari: GC capability mismatch
    17/08/2009 11:09:01 Saft[275] Error loading /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL: dlopen(/Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL, 265): no suitable image found. Did find:
    /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL: GC capability mismatch
    What does this mean and what can I do to fix it?
    I'll now try to load the addins one by one to locate the problem.

  • Creative cloud installed and run but doesn't display apps or anything for that matters , only a black bar at the top with creative cloud written and a drop down menu of (help pin on notification area and quit ), creative cloud installed and run but doesn'

    creative cloud installed and run but doesn't display apps or anything for that matters , only a black bar at the top with creative cloud written and a drop down menu of (help pin on notification area and quit ), creative cloud installed and run but doesn't display apps or anything for that matters , only a black bar at the top with creative cloud written and a drop down menu of (help pin on notification area and quit )
    don't know if it's relevant or not , I run Windows 8 64-bit

    111994 please try utilizing the steps listed in App doesn’t open | Progress wheel spins continually to resolve the current error.

  • Mac Pro 2006 won't display anything

    Hi
    My mac pro won't display anything. I've had a look at this http://support.apple.com/kb/HT1573 and one of the first things I did was reset the PRAM & NVRAM. The 10.6.8 install is fully updated. The startup chime plays and fans run normally.
    I have:
    re-sat the RAM,
    cleaned the RAM
    cleaned the inside
    removed all the HDDs except the main one
    and even used another Raedon 4850 in place of mine.
    It starts up in Target-Disk mode fine, I am using it with my iMac now but it is not the same (iMac is only dual core andhas half the RAM) I've tried several screens; DVI, VGA and HDMI all without luck. It's obviouslt out of warranty and I don't want to take it to a Apple store anyway as I ocassionally build & repair computers myself so am fine with trying anything out.
    Thanks in advance,
    Eric.
    Things I could do/ haven't done:
    Remove/ replace the Logic Board battery?
    test the power I/O?
    start in Safe Mode?

    Whoa there, sparky !!!
    Is there something you aren't mentioning?
    Since there has never been a Mac Pro 4850 and you have mentioned this number twice I would like to ask...what aren't you telling us?
    Did this computer work fine until one day it quit? Or did you buy/inherit/find it broken or in an unknown state?
    Any GPU used in a Mac Pro needs to have EFI on it to do this basic debugging stuff. While PC WIndows BIOS cards can be used if the system is A-OK and gets to desktop, it is basically impossible to use them on a system with issues.
    So, if the 4870 has a DVI and a MDP port it is real Apple one and SHOULD work.
    If that card died and you have tried replacing it with a WIndows/PC 4850, then you have broken the scientific rule about only changing one thing.
    Ideally you would have another Mac Pro to test your GPU in and another KNOWN GOOD GPU to test in your Mac Pro. The EFI thing greatly complicates things, unfortunately. Even a "Mac Pro" video card won't necessarily work if it is for "the other" series of Mac Pro. Ther have been in effect, 2 different Mac Pros as far as video cards go. EFI32 and EFI64. ATI/AMD cards have been largely unaffected by this but Nvidia cards MUST be for right series.

  • I can't delete apps on my iPad does anybody knows how to fix it. Also I can't open any iWork apps ,they open but won't show anything.

    I can't delete apps on my iPad does anybody knows how to fix it. Also I can't open any iWork apps ,they open but won't show anything.

    If the whole iPad freezes then something else is going on. Try this next. Close all apps in the recents tray and restart your iPad.
    Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • I am a student trying to purchase creative card with a maestro card but won't allow anything other than master card or visa, is there any way around this?

    I am a student trying to purchase creative cloud with a maestro card but won't allow anything other than master card or visa, is there any way around this?

    No, not that I know about... but you might check the credit card page to see if there is an option
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html

  • Dragon swipe still works but won't display any emoticons

    After the update a couple of days ago, my dragon swipe still works but won't display any emoticons or special characters, anyone have this problem or know how to restore the special characters?
    Subject line condensed by: Verizon Moderator <<>>

        Let's look further into this Quinta53! Have you tried powering the device off/on? If so, try clearing the application cache here http://vz.to/1hC0A2D test and share. Thank you.
    TominqueBo_VZW
    Follow us on Twitter @VZWSupport

  • Downloads such as adobe flash update won't download even when anti virus is disabled. The download box appears and runs but doesn't show anything.

    Any updates or downloads won't download in Firefox. The download box appears, goes thru the motions but doesn't park anything in the file. I usually have to quite Mozilla, use Explorer for the download, such as Go to Meeting, or Adobe updates. Can't download anything with Firefox from your browser.

    I am having the same issue -- IE7, XP SP3... Flash Player
    will not download or install, but will download and install for
    Netscape. Must be an IE7 issue, but I can't find a solution. If you
    find something out, it would be freat!
    ([email protected])

  • MSI 970a-g46 motherboard starts up but doesn't display anything.

    Hello, I'm having problems with a new motherboard I got from Amazon, specifically the 970a-g46. The following are my specs in use with this motherboard:
    CPU: AMD Phenom 2 x4 965
    GPU: nVidia GeForce 560 GTX
    Ram: 8gb Kingston HyperX Fury 1866mhz.
    PSU: Corsair 650TX (650 Watts)
    Compatability-wise, everything checks out so I wasn't expecting problems at first. All the other parts excluding the ram I've used before. Here's exactly what happens:
    I power up the computer after everything is installed and connected. The 4 phase LEDs turn on which tell me the CPU is powered up and working (so I assume). I don't get any beeps or buzzs mainly because I don't see any speaker/buzzer on this board. The monitor blinks and while it is connected to my GPU, it doesn't display anything, it's just a black screen. I can leave it on for a few minutes and I'll still not see anything happen. An important observation here is that my keyboard which has LEDs will turn on after a short period of time in boot-up (with my older set-up that is). This does not happen ever regardless of how long I leave my computer on on this new mobo.
    I've gone over and checked/tested numerous things:
    * The PCI-E and ATX cables for the GPU, motherboard and CPU are all connected and secured (I've tried both 4-pin and 8-pin connections for the CPU, neither help).
    * I've tried jumping the CMOS multiple times to no avail.
    * I tested the ram on another computer and it worked just fine on that one.
    * I've tested the motherboard without a GPU and it still does nothing (though I think that's because this motherboard doesnt have its own integrated GPU for some reason).
    So far the only possible reasons why my computer is not working is because of my PSU (very unlikely as it's only a year old and it's a Corsair, which I've heard is very reliable in the long-run), GPU (It is quite a few years old but even without the GPU my computer still doesn't go past boot-up), CPU (possible due to its age and how many freaking time I've reseated it (probably around 8 times) so I wouldn't doubt it, but before I put it into this motherboard I did check its pins and they were all there and placed nice and smoothly into the socket.) and finally the motherboard (it's possible that this is just a defected motherboard and giving me a super hard time which would be a first in all the years I"ve spent computer building).
    The best case scenario of course is me giving some kind of oversight to how I transferred over the parts and connectors. I might've missed something obvious to please any advice/insight on how I can solve this problem would be greatly appreciated
    EDIT: Some other things I did but forgot to mention:
    * Checked ground nut things and ensured they matched the specifications of the motherboard ATX; only 6 are under the board and each one is aligned up with the holes on the board as designed.
    * Tried booting up without powering the CPU. Only one phase LED light came on, still the same problem (for an obvious reason this time now).
    * Re-seated GPU multiple times, re-connected cables multiple times.
    What I have NOT done is re-seat the CPU because I am almost out of acetone so I would need to get another supply of that which won't be until tomorrow. I also have not re-seated everything back on my older motherboard to check if it still works. Tomorrow I'll most likely do that and if I find that the old motherboard works flawlessly then that tells me that the new motherboard I got is either defected or there's some compatability issue I"m missed out on.
    EDIT 2: Just found a speaker and plugged it into the motherboard. Booted it up and I got no beeps whatsoever. So this mobo is giving me no video activity (there is a signal it's just blank), and no beeps from the motherboard. I have no idea what that could mean at this point.
    EDIT 3: I decided to test a few things with the new speaker I just got. First I removed ram and tried running, I got 3 beeps which I assume is the beep sequence of faulty/no ram. Removed the power to CPU and the GPU itself individually, gave no beeps this time.

    Quote from: rhradacut on 06-January-15, 16:49:14
    What's the serial number of your MB? Needed to determine what BIOS may be on the MB. Exactly which version of the CPU is it? There were several different 965 CPUs and they required different BIOS versions, 1.2, 1.9,2.2 depending on which CPU you actually have.
     Also another problem may be that native memory supported by your CPU is DDR3-1333, not 1866
     None of the supported CPUs have integrated graphics, any MB graphics would be in the chipset, not CPU. Examples would be 785G, 880G
    Thank you very much rhradacut! The problem was that the mobo for whatever reason was forcing 1866mhz on my CPU when it only supported up to 1600mhz. I had to install a spare ddr3 module to downclock it so that I could access the BIOS and manually set the DRAM timing to 1600mhz for it to work. That's a very strange problem that I figured would've been auto-resolved by the hardware, and would also be a big problem if I didn't have any spare DDR3 ram to work with.
    Once again thanks for helping out on solving my problem.

  • Java 3D won't display anything

    Hi,
    I'm trying to get Java3D demos to run so I can begin developing a game. The problem is I get nothing but a blank white square the size of the intended 3D display. Everything I've tried (the list is long) has had no effect. When attempted through a DOS window I get an endless repeating list of : "wglCreateContext Failed: the pixel format is invalid".
    The updated drivers for the ATI radeon 9000 pro (all in wonder) shows openGL (classic) is active but nothing 3D is displayed, everything else in Java (2d, swing components, etc.) all displays normally. I've updated DirextX and tried reinstalling Java3D for that format but no change. I'm not familiar with any 3D graphics programming (yet) and it's difficult to understand what won't display. I have posted a bug report with Sun after searching for similar bugs, but all related bugs just show "closed: fixed". Has anyone had this problem or have any clue what I might try (other than waiting) to resolve this issue? Thanks,
    Jerromy

    There are known issues with ATI drivers and java 3D that cause behavior like this. I don`t use direct-X so I can`t sugget anything, except to search the forums at http://forums.java.net/jive/forum.jspa?forumID=70
    to see if your ATI card has a workaround
    regards

  • Mac Pro turns on and goes to desktop but won't do anything from there

    Hey guys,
    I've had my Mac Pro for about 3 years now (fully updated) and have owned macs for about 20 years now and have never run into this issue. Hopefully you can help. I can turn my mac on and reach the login screen. I login and reach the desktop. From there weird things start happening.
    1. Safari won't load. My dock where the Safari button is goes into hiding the second I click on Safari. Nothing loads.
    2. If I go to my main drive and click on the Applications folder, the window disappears and I'm back looking at my desktop.
    3. If I try to open System Preferences it may come up and it may not. Depends on the time.
    4. iTunes will still open and work (although all my iTunes files are on a separate harddrive).
    5. If I try to Restart or Shutdown the computer won't. I have to manually shut it down by holding the power button.
    6. If I mess around with trying to open things long enough (Safari, Applications Folder, etc) the entire computer will lock up. I can still move the mouse around but it won't do anything.
    I have booted the computer from the Install Disc and have run Disk Repair and have even repaired permissions and still nothing fixes this issue. Does anyone have any idea on what to do?

    Buy Disk Warrior.
    Clone your system with SuperDuper.
    Install a clean set of the system (erase and install) and full updates.
    Gradaully test it out.
    I would not use it as is.
    Normally I would say, try a new "test" user account and see if the problem goes away (after you have a backup).
    Your DVD is not 10.6.6, and Apple First Aid is not as thorough as say Disk Warrior, good start but not to do full reliable repairs.
    Every hard shutdown etc just adds and corrupts the directory and file system.
    You do have corrupt files, prefs and more.
    I'm sure there is or ought to be some nice FAQs on system maintenance and repair for Macs.
    http://www.thexlab.com/faqs/faqs.html

  • Safari launches but won't open a window

    I'd set up Safari for my son under his own profile and it was working great with Parental Controls. When I went in one day to update his allowed sites, Safari launched but wouldn't open a window.  I could access preferences, reset, etc., but it wouldn't open a new window and when I tried to open a tab, it loaded at the bottom of the screen for a split second and then crashed.  I've deleted all the safari files, re-installed, downgraded - the downgrade worked but the Parental Controls didnt work. 
    Now what?  None of the other Parental Control apps I've tried work as well as Safari's. 
    Date/Time: 
    2012-04-29 13:32:29.593 -0700
    OS Version:
    10.4.11 (Build 8S165)
    Report Version: 4
    Command: Safari
    Path:
    /Applications/Safari.app/Contents/MacOS/Safari
    Parent:  WindowServer [353]
    Version:   
    4.1.3 (4533.19.4)
    Build Version:  1
    Project Name:   WebBrowser
    Source Version: 75331904
    PID:
    427
    Thread: 0
    Exception:  EXC_BAD_ACCESS (0x0001)
    Codes: 
    KERN_PROTECTION_FAILURE (0x0002) at 0x0000000c
    Thread 0 Crashed:
    0   com.apple.Safari   
    0x0005198c 0x1000 + 330124
    1   com.apple.Safari   
    0x000518d8 0x1000 + 329944
    2   com.apple.Safari   
    0x00051304 0x1000 + 328452
    3   com.apple.Safari   
    0x00051208 0x1000 + 328200
    4   com.apple.Safari   
    0x0004fc8c 0x1000 + 322700
    5   com.conduit.cttoolbar
    0x03e08070 -[NSWindowController(CTSafariConnector) didSelectTabViewItem] + 36
    6   com.apple.AppKit   
    0x938b2a10 -[NSTabView selectTabViewItem:] + 892
    7   com.apple.Safari   
    0x00070980 0x1000 + 457088
    8   com.apple.Safari   
    0x000706e4 0x1000 + 456420
    9   com.apple.Safari   
    0x00070554 0x1000 + 456020
    10  com.apple.Safari   
    0x000703c8 0x1000 + 455624
    11  com.apple.AppKit   
    0x938428b4 -[NSApplication sendAction:to:from:] + 108
    12  com.apple.Safari   
    0x000400f4 0x1000 + 258292
    13  com.apple.AppKit   
    0x9389d094 -[NSMenu performActionForItemAtIndex:] + 392
    14  com.apple.AppKit   
    0x9389ce18 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 104
    15  com.apple.AppKit   
    0x937a4150 _NSHandleCarbonMenuEvent + 372
    16  com.apple.AppKit   
    0x937a1ab4 _DPSNextEvent + 1280
    17  com.apple.AppKit   
    0x937a13f8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    18  com.apple.Safari   
    0x00011638 0x1000 + 67128
    19  com.apple.AppKit   
    0x9379d93c -[NSApplication run] + 472
    20  com.apple.AppKit   
    0x9388e458 NSApplicationMain + 452
    21  com.apple.Safari   
    0x00118adc 0x1000 + 1145564
    22  com.apple.Safari   
    0x00007ea0 0x1000 + 28320
    Thread 1:
    0   libSystem.B.dylib   
    0x9002bfc8 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib   
    0x90030aac pthread_cond_wait + 480
    2   com.apple.WebCore   
    0x014e98d0 WebCore::IconDatabase::syncThreadMainLoop() + 320
    3   com.apple.WebCore   
    0x014e73b8 WebCore::IconDatabase::iconDatabaseSyncThread() + 440
    4   libSystem.B.dylib   
    0x9002b908 _pthread_body + 96
    Thread 2:
    0   libSystem.B.dylib   
    0x9000af48 mach_msg_trap + 8
    1   libSystem.B.dylib   
    0x9000ae9c mach_msg + 60
    2   com.apple.CoreFoundation
    0x907de9ac __CFRunLoopRun + 832
    3   com.apple.CoreFoundation
    0x907de2b0 CFRunLoopRunSpecific + 268
    4   com.apple.Foundation
    0x92c1eb7c +[NSURLCache _diskCacheSyncLoop:] + 152
    5   com.apple.Foundation
    0x92bf64d8 forkThreadForFunction + 108
    6   libSystem.B.dylib   
    0x9002b908 _pthread_body + 96
    Thread 3:
    0   libSystem.B.dylib   
    0x9002bfc8 semaphore_wait_signal_trap + 8
    1   libSystem.B.dylib   
    0x90030aac pthread_cond_wait + 480
    2   com.apple.Foundation
    0x92bfd644 -[NSConditionLock lockWhenCondition:] + 68
    3   com.apple.Syndication
    0x9a3d926c -[AsyncDB _run:] + 192
    4   com.apple.Foundation
    0x92bf64d8 forkThreadForFunction + 108
    5   libSystem.B.dylib   
    0x9002b908 _pthread_body + 96
    Thread 0 crashed with PPC Thread State 64:
      srr0: 0x000000000005198c srr1: 0x000000000200f030                   
    vrsave: 0x0000000000000000
    cr: 0x24044222     
    xer: 0x0000000000000004   lr: 0x00000000000518d8  ctr: 0x0000000000051360
    r0: 0x00000000000518d8   r1: 0x00000000bfffe6a0   r2: 0x00000000a0001fa4   r3: 0x0000000000000000
    r4: 0x0000000000380000   r5: 0x000000002f53796e   r6: 0x00000000031d0aa0   r7: 0x0000000000000000
    r8: 0x0000000092c0110c   r9: 0x0000000000000000  r10: 0x0000000090a3f628  r11: 0x0000000000000000
       r12: 0x0000000000051360  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
       r16: 0x0000000000000000  r17: 0x00000000bffff240  r18: 0x0000000000000000  r19: 0x00000000031765c0
       r20: 0x00000000ffffffff  r21: 0x00000000a37d15cc  r22: 0x0000000000380000  r23: 0x0000000000380000
       r24: 0x0000000000380000  r25: 0x0000000000380000  r26: 0x00000000031e36a0  r27: 0x00000000031e1920
       r28: 0x000000000313fc60  r29: 0x0000000000280f74  r30: 0x00000000bfffe778  r31: 0x0000000000000000
    Binary Images Description:
    0x1000 -   0x355fff com.apple.Safari 4.1.3 (4533.19.4)
    /Applications/Safari.app/Contents/MacOS/Safari
      0x505000 -   0x681fff com.apple.JavaScriptCore 4533.19 (4533.19.1)
    /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
      0x6d9000 -   0x7c7fff libxml2.2.dylib
    /usr/lib/libxml2.2.dylib
    0x1008000 -  0x1109fff com.apple.WebKit 4533.19 (4533.19.4)
    /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x11b0000 -  0x1452fff com.apple.QuartzCore 1.4.13
    /System/Library/PrivateFrameworks/Safari.framework/Frameworks/QuartzCore.framewo rk/Versions/A/QuartzCore
    0x14e5000 -  0x218afff com.apple.WebCore 4533.19 (4533.19.4)
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framew ork/Versions/A/WebCore
    0x3018000 -  0x3019fff com.yourcompany.ct_loader 1.2.1.9 (1219)
    /Library/InputManagers/CTLoader/ct_loader.bundle/Contents/MacOS/ct_loader
    0x3e05000 -  0x3e87fff com.conduit.cttoolbar 1.2.1.9 (1219)
    /Library/Application Support/Conduit/Plugins/cttoolbar.bundle/Contents/MacOS/ct_plugins
    0x8fe00000 - 0x8fe52fff dyld 46.16
    /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib
    /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib
    /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/C oreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/A TS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.85 (???)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/C oreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35)
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib
    /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib
    /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4 (???)
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib
    /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.19 (681.21)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCo re.framework/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServic es.framework/Versions/A/OSServices
    0x90f92000 - 0x90fd4fff com.apple.CFNetwork 4.0 (129.24)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwor k.framework/Versions/A/CFNetwork
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServi cesCore.framework/Versions/A/WebServicesCore
    0x91011000 - 0x91092fff com.apple.SearchKit 1.0.8
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKi t.framework/Versions/A/SearchKit
    0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata .framework/Versions/A/Metadata
    0x91112000 - 0x91120fff libz.1.dylib
    /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770)
    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2
    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib
    /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3
    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfig uration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib
    /usr/lib/libgcc_s.1.dylib
    0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5
    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationS ervices
    0x914fe000 - 0x91536fff com.apple.AE 312.2
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/A E.framework/Versions/A/AE
    0x91551000 - 0x91623fff com.apple.ColorSync 4.4.13
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/C olorSync.framework/Versions/A/ColorSync
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/P rintCore.framework/Versions/A/PrintCore
    0x9174e000 - 0x91805fff com.apple.QD 3.10.28 (???)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/Q D.framework/Versions/A/QD
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/H IServices.framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/L angAnalysis.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/F indByContent.framework/Versions/A/FindByContent
    0x9193c000 - 0x9197efff com.apple.LaunchServices 183.1
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/L aunchServices.framework/Versions/A/LaunchServices
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/S peechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bc000 - 0x91a02fff com.apple.ImageIO.framework 1.5.9
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/I mageIO.framework/Versions/A/ImageIO
    0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib
    /usr/lib/libcrypto.0.9.7.dylib
    0x91b2e000 - 0x91b43fff libcups.2.dylib
    /usr/lib/libcups.2.dylib
    0x91b48000 - 0x91b66fff libJPEG.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/I mageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6c000 - 0x91c23fff libJP2.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/I mageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c72000 - 0x91c76fff libGIF.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/I mageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c78000 - 0x91ce2fff libRaw.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/I mageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce7000 - 0x91d02fff libPng.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/I mageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d07000 - 0x91d0afff libRadiance.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/I mageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91e19000 - 0x91e57fff libTIFF.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/I mageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91e5e000 - 0x91e5efff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2)
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e60000 - 0x91f45fff com.apple.vImage 2.4
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fra mework/Versions/A/vImage
    0x91f4d000 - 0x91f6cfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2)
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fra mework/Versions/A/vecLib
    0x91fd8000 - 0x92046fff libvMisc.dylib
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fra mework/Versions/A/libvMisc.dylib
    0x92051000 - 0x920e6fff libvDSP.dylib
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fra mework/Versions/A/libvDSP.dylib
    0x92100000 - 0x92688fff libBLAS.dylib
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fra mework/Versions/A/libBLAS.dylib
    0x926bb000 - 0x929e6fff libLAPACK.dylib
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fra mework/Versions/A/libLAPACK.dylib
    0x92a16000 - 0x92b04fff libiconv.2.dylib
    /usr/lib/libiconv.2.dylib
    0x92b07000 - 0x92b8ffff com.apple.DesktopServices 1.3.7
    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Deskt opServicesPriv
    0x92bd0000 - 0x92e03fff com.apple.Foundation 6.4.12 (567.42)
    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f36000 - 0x92f54fff libGL.dylib
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f5f000 - 0x92fb9fff libGLU.dylib
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fd7000 - 0x92fd7fff com.apple.Carbon 10.4 (???)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fd9000 - 0x92fedfff com.apple.ImageCapture 3.0
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.f ramework/Versions/A/ImageCapture
    0x93005000 - 0x93015fff com.apple.speech.recognition.framework 3.4
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognit ion.framework/Versions/A/SpeechRecognition
    0x93021000 - 0x93036fff com.apple.securityhi 2.0 (203)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fra mework/Versions/A/SecurityHI
    0x93048000 - 0x930cffff com.apple.ink.framework 101.2 (69)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/ Versions/A/Ink
    0x930e3000 - 0x930eefff com.apple.help 1.0.3 (32)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework /Versions/A/Help
    0x930f8000 - 0x93126fff com.apple.openscripting 1.2.7 (???)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting. framework/Versions/A/OpenScripting
    0x93140000 - 0x9314ffff com.apple.print.framework.Print 5.2 (192.4)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewor k/Versions/A/Print
    0x9315b000 - 0x931c1fff com.apple.htmlrendering 1.1.2
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering. framework/Versions/A/HTMLRendering
    0x931f2000 - 0x93241fff com.apple.NavigationServices 3.4.4 (3.4.3)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServ ices.framework/Versions/A/NavigationServices
    0x9326f000 - 0x9328cfff com.apple.audio.SoundManager 3.9
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.fr amework/Versions/A/CarbonSound
    0x9329e000 - 0x932abfff com.apple.CommonPanels 1.2.2 (73)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.f ramework/Versions/A/CommonPanels
    0x932b4000 - 0x935c2fff com.apple.HIToolbox 1.4.10 (???)
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fram ework/Versions/A/HIToolbox
    0x93712000 - 0x9371efff com.apple.opengl 1.4.7
    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93723000 - 0x93743fff com.apple.DirectoryService.Framework 3.3
    /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServic e
    0x93797000 - 0x93797fff com.apple.Cocoa 6.4 (???)
    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93799000 - 0x93dccfff com.apple.AppKit 6.4.10 (824.48)
    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94159000 - 0x941cbfff com.apple.CoreData 91 (92.1)
    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94204000 - 0x942c9fff com.apple.audio.toolbox.AudioToolbox 1.4.7
    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9431c000 - 0x9431cfff com.apple.audio.units.AudioUnit 1.4
    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94528000 - 0x94565fff libsqlite3.0.dylib
    /usr/lib/libsqlite3.0.dylib
    0x9456d000 - 0x945bdfff libGLImage.dylib
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyli b
    0x94677000 - 0x946affff com.apple.vmutils 4.0.0 (85)
    /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946f4000 - 0x94710fff com.apple.securityfoundation 2.2 (27710)
    /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFound ation
    0x94724000 - 0x94768fff com.apple.securityinterface 2.2 (27692)
    /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterf ace
    0x9478c000 - 0x9479bfff libCGATS.A.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/C oreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947a3000 - 0x947b0fff libCSync.A.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/C oreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947f6000 - 0x9480ffff libRIP.A.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/C oreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94c2c000 - 0x94c9dfff libstdc++.6.dylib
    /usr/lib/libstdc++.6.dylib
    0x94d3b000 - 0x94d47fff com.apple.framework.Apple80211 4.2.9 (429.6)
    /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x94e13000 - 0x94f43fff com.apple.AddressBook.framework 4.0.6 (490)
    /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fd6000 - 0x94fe5fff com.apple.DSObjCWrappers.Framework 1.1
    /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrap pers
    0x94fed000 - 0x9501afff com.apple.LDAPFramework 1.4.1 (69.0.1)
    /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95021000 - 0x95031fff libsasl2.2.dylib
    /usr/lib/libsasl2.2.dylib
    0x95035000 - 0x95064fff libssl.0.9.7.dylib
    /usr/lib/libssl.0.9.7.dylib
    0x95074000 - 0x95091fff libresolv.9.dylib
    /usr/lib/libresolv.9.dylib
    0x95b3e000 - 0x95b70fff com.apple.PDFKit 1.0.4
    /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framewo rk/Versions/A/PDFKit
    0x97cd6000 - 0x97da7fff com.apple.QuartzComposer 1.2.6 (32.25)
    /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer .framework/Versions/A/QuartzComposer
    0x97e24000 - 0x97e24fff com.apple.quartzframework 1.0
    /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9a3d6000 - 0x9a40cfff com.apple.Syndication 1.0.8 (56.1)
    /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9ae74000 - 0x9ae86fff com.apple.SyndicationUI 1.0.8 (56.1)
    /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndication UI
    0x9fa13000 - 0x9fa55fff com.apple.CoreMediaIOServicesPrivate 20.0
    /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions/ A/CoreMediaIOServicesPrivate
    0x9fa7a000 - 0x9faa4fff com.apple.CoreMediaPrivate 15.0
    /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMedi aPrivate
    0x9fab2000 - 0x9fde5fff com.apple.QuickTime 7.6.4 (1327.73)
    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9fecd000 - 0x9ff7dfff com.apple.QTKit 7.6.4 (1327.73)
    /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9ffd7000 - 0x9fff0fff com.apple.CoreVideo 1.4.2
    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    Model: PowerMac3,5, BootROM 4.2.5f1, 1 processors, PowerPC G4  (2.0), 733 MHz, 1.5 GB
    Graphics: NVIDIA GeForce2 MX, GeForce2 MX, AGP, 32 MB
    Memory Module: DIMM0/J21, 512 MB, SDRAM, PC133-322
    Memory Module: DIMM1/J22, 512 MB, SDRAM, PC133-333
    Memory Module: DIMM2/J23, 512 MB, SDRAM, PC133-333
    Modem: Spring, UCJ, V.90, 7.0F, APPLE VERSION 0007, 7/31/2000
    Network Service: Built-in Ethernet, Ethernet, en0
    Parallel ATA Device: WDC WD800AB-00CBA1, 74.53 GB
    Parallel ATA Device: IBM-IC35L040AVER07-0, 38.35 GB
    Parallel ATA Device: LITE-ON COMBO SOHC-5232K
    USB Device: Dell USB Keyboard, Dell, Up to 1.5 Mb/sec, 500 mA
    USB Device: USB2.0 Hub, Up to 12 Mb/sec, 500 mA
    USB Device: iPod, Apple, Up to 12 Mb/sec, 500 mA
    USB Device: USB+PS/2 Optical Mouse, Up to 1.5 Mb/sec, 500 mA

    You installed the Conduit spyware. To remove it, select Go ▹ Go to Folder… from the Finder menu bar, then copy the following text into the box that opens:
    ~/Library/Application Support/Conduit
    Delete the selected item, if it exists.
    Now select Go to Folder… again and enter:
    /Library
    From the folder that opens, delete the following items, if they exist. You may be prompted for your login password.
    Application Support/Conduit
    InputManagers/CTLoader
    LaunchAgents/com.conduit.loader.agent.plist
    ScriptingAdditions/ct_scripting.osax
    Close the folder. Now select Go to Folder… again and copy:
    /Applications/Toolbars
    Delete that item. Close the Finder windows you opened. Log out and log back in.

  • LG monitor won't display anything via VGA cable

    After updating to Quicktime 7.5 my screen on my LG lcd monitor starting moving up and down when using my mouse. After fiddling with the display controls to lock it back down it no longer displays anything through the VGA cable connected via the DVI adaptor to the monitor.
    I am using a borrowed DVI cable to use the monitor, but I have to return that tomorrow. Tried permissions without any luck. Is there any fix for this problem so I can reuse the VGA cable without having to buy a DVI cable. Also, is there any solution to the floating screen problem?

    Thanks. That solved the zooming problem. The monitor will still not work with the VGA cable though. Looks like I'll have to get a DVI cable. I had one when I got the monitor but now I can't find it.

Maybe you are looking for

  • APEX 4.0.2 Images not displaying correctly

    I have read many posts on this problem and have attempted several of the suggestions but none have worked. As I am very green, this may appear very simplistic. 1. I successfully installed Oracle 11g on a Windows XP machine 2. I downloaded and install

  • Rooms are not showing up in the dropdown list unders MY ROOMS

    HI, I created a new room and assigned couple of users and assigned myself as owner to that room. When i go under euRole --> My Rooms --> "No Rooms Available" message is displayed. Even i pressed FILTER button with selection criteria, its not showing

  • How to create an index from more than one pages document?

    I have 10 different pages documents. Each document is a book chapter. Now I would like to create one index for all of these chapters in a new pages-file without copying all files into one single file. How does this work?

  • IP Address & Port Number

    We have some users who are unable to sign in when they want to use Folio Builder.  We suspect that the issue is down to our firewall as all standard ports are blocked.  I therefore need to know the IP Address and Port number that Folio Builder tries

  • What's the difference between 'On my Mac' & 'MobileMe' calendars?

    I'm just moving from Entourage to iCal. I didn't import my Entourage data into iCal; I just opened the calendar created by Entourage in iCal. I assume this is fine and I can rename this calendar to something other than the default "Entourage" and kee