Figuring out formats - HELP PLEASE!

Obviously I'm low on techno smarts... I am working with iMovie 6.0.2 HD. I started a project I've been working on for weeks... it's mostly photos, titles, transitions and about 5 minutes of footage shot in DV mode on an HD/DV camera. I am now almost complete and want to transfer it to iDVD, but when I checked the size of the video (which is only 15 minutes long), it is 18.89GB! Looking at my DVD disks, they only hold 4.7GB...
I'm guessing I did the project in HD mode... How do I/can I change it so that it will fit on a DVD?
I have been doing the project off of my external hard drive because it's too big for my computer if that makes a difference...
Puleese help - it's a volunteer project for a non-profit organizations' 50th anniversary that I promised my Dad. I need to get it to the repro house ASAP. PLEASE SOMEONE SAVE MY BUTT!!!
Thank you...

... they are not novices but do not yet properly master the basics either. ...
.. perhaps, or coming from a different.. area. did I say switcher?!
we Mac-users are used to click,boom,done...- from a different perspective: we are guided, limited, single "choice" only...
(I don't have to tell you all the threads concerning bitrates, 2:30h on sl dvdr-, "I can do this with Nero in less then 15min!!".. stuff like that)
coming from "where do you want to go today???"-land, you have SO many options, and SO many different ways to reach your goal, you consider ANYthing in your workflow... in German, we have a very derogative nic for PC users "Schrauber" (=screw drivers), meaning, "they" like to construct&rebuilt, repair&deconstruct things, go into tiny bits of detail, ...
we Mac user have the attitude, to keep the mind clear for ideas, dreams, visions... the "tools" just have to "work"... I don't think, how a hammer is manufactured, I just want to use it.
and that's it, how I experience the iApps: I use them (within given limits.. ok, a little beyond )... have posted here very little Qs..

Similar Messages

  • SortByTime method complains trying to figure out why help please

    public void sortByTime()
    // check out the bubble sort code in Module 11 for an
    // example of what to do in this method
    // your code here (please remove this line)
    double fastRat = -1;
    int last = this.getSize() - 1;
    boolean didSwap = true;
    Time ratDifference = null;
    //MazeResult topRat = null;
    MazeResult tmpRat = null;
    double totalSeconds = 0;
    //int j = 0;
    while (didSwap)
    last--;
    didSwap = false;
    for (int i = 0; i < last; i++)
    ratDifference = tmpRat.getStartTime() // java.lang.NullPointPointerException
    .getDiff(tmpRat.getEndTime());
    totalSeconds = totalSeconds + ratDifference.getHour() * 3600;
    totalSeconds = totalSeconds + ratDifference.getMinutes() * 60;
    totalSeconds = totalSeconds + ratDifference.getSeconds();
    if (fastRat < 0)
    //didSwap = true;
    //int temp = ; x[i] = x[i+1]; x[i+1] = temp;
    didSwap = true;
    --last;
    }java.lang.NullPointPointerException keep geting this
    test classpublic void testSortByTime()
    // Presort results
    MazeResult mazeResultObj = collection1.getMazeResult(0);
    assertNotNull(mazeResultObj.getRat());
    assertNotNull(mazeResultObj.getStartTime());
    assertEquals("01:15:30", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(1);
    assertEquals("01:10:15", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(2);
    assertEquals("01:01:45", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(3);
    assertEquals("00:50:00", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(4);
    assertEquals("00:57:30", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(5);
    assertEquals("01:20:45", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(6);
    assertEquals("01:00:05", mazeResultObj.getMazeTime());
    collection1.sortByTime();// Post sort results
    mazeResultObj = collection1.getMazeResult(0);
    assertEquals("00:50:00", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(1);
    assertEquals("00:57:30", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(2);
    assertEquals("01:00:05", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(3);
    assertEquals("01:01:45", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(4);
    assertEquals("01:10:15", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(5);
    assertEquals("01:15:30", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(6);
    assertEquals("01:20:45", mazeResultObj.getMazeTime());
    }I keep getting this java.lang.NullPointPointerException                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    public void sortByTime()
    // check out the bubble sort code in Module 11 for an
    // example of what to do in this method
    // your code here (please remove this line)
    double fastRat = -1;
    int last = this.getSize() - 1;
    boolean didSwap = true;
    Time ratDifference = null;
    //MazeResult topRat = null;
    MazeResult tmpRat = null;
    double totalSeconds = 0;
    //int j = 0;
    while (didSwap)
    last--;
    didSwap = false;
    for (int i = 0; i < last; i++)
    ratDifference = tmpRat.getStartTime() // java.lang.NullPointPointerException.getDiff(tmpRat.getEndTime());
    totalSeconds = totalSeconds ratDifference.getHour() 3600;
    totalSeconds = totalSeconds ratDifference.getMinutes() 60;
    totalSeconds = totalSeconds + ratDifference.getSeconds();
    if (fastRat < 0)
    //didSwap = true;
    //int temp = ; x[i] = x[i+1]; x[i+1] = temp;
    didSwap = true;
    --last;
    java.lang.NullPointPointerException keep geting this
    test class
    public void testSortByTime()
    // Presort results
    MazeResult mazeResultObj = collection1.getMazeResult(0);
    assertNotNull(mazeResultObj.getRat());
    assertNotNull(mazeResultObj.getStartTime());
    assertEquals("01:15:30", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(1);
    assertEquals("01:10:15", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(2);
    assertEquals("01:01:45", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(3);
    assertEquals("00:50:00", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(4);
    assertEquals("00:57:30", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(5);
    assertEquals("01:20:45", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(6);
    assertEquals("01:00:05", mazeResultObj.getMazeTime());
    collection1.sortByTime(); \\keep getting this java.lang.NullPointPointerException // Post sort results
    mazeResultObj = collection1.getMazeResult(0);
    assertEquals("00:50:00", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(1);
    assertEquals("00:57:30", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(2);
    assertEquals("01:00:05", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(3);
    assertEquals("01:01:45", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(4);
    assertEquals("01:10:15", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(5);
    assertEquals("01:15:30", mazeResultObj.getMazeTime());
    mazeResultObj = collection1.getMazeResult(6);
    assertEquals("01:20:45", mazeResultObj.getMazeTime());
    }I keep getting this java.lang.NullPointPointerException                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • My Canon MP620 appears to be connected, yet every time I try to print something, it says error.  I have tried to unplug and track the error, but I cannot figure out why. Please help! this is such an inconvenience!

    My Canon MP620 appears to be connected, yet every time I try to print something, it says error.  I have tried to unplug and track the error, but I cannot figure out why. Please help! this is such an inconvenience!

    What Mac model? What Mac OS version?
    FYI, this forum is for Apple hardware made before 1999.

  • After upgrading to Yosemite I cannot share my pages document by mail as a word format - HELP please!!!

    After upgrading to Yosemite I cannot share my pages document by mail as a word format - HELP please!!!

    You don't need to go to the App Store to for support for Steam and Minecraft. You need to go to their website(s).
    You're welcome 

  • Need help figuring out crash report please!

    Hi there,
    So, lately I have been playing Diablo 3 and found out that it has been running slow (FPS wise) so I switched over my graphics card to the NVIDIA GeForce 9600M GT.
    Everytime I run the game, randomly my computer will full on crash the sound will freeze and repeat it's self and no buttons work except a hard shut down.
    Once I reboot, this is the crash report I get:
    Interval Since Last Panic Report:  1233165 sec
    Panics Since Last Report:          7
    Anonymous UUID: 7B2BFC9A-4351-4CC0-8A24-3F6077B1BD3F
    Sat May 19 18:34:23 2012
    panic(cpu 1 caller 0x9d4c97): NVRM[0/2:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd4000000 0x5a191000 0x096380c1, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5292b888 : 0x21b837 (0x5dd7fc 0x5292b8bc 0x223ce1 0x0)
    0x5292b8d8 : 0x9d4c97 (0xbea22c 0xc5a840 0xbf8f88 0x0)
    0x5292b978 : 0xaef5db (0x8f4a004 0x98b2004 0x100 0x200)
    0x5292b9c8 : 0xae65d4 (0x98b2004 0x100 0x5292bac8 0x558ce4)
    0x5292b9f8 : 0x17eb7bb (0x98b2004 0x100 0x4bcd2cee 0x1)
    0x5292bb38 : 0xb0e258 (0x98b2004 0x98ae004 0x0 0x0)
    0x5292bb78 : 0x9dde2b (0x98b2004 0x98ae004 0x0 0x0)
    0x5292bc18 : 0x9da50a (0x0 0x9 0x0 0x0)
    0x5292bdc8 : 0x9dc3d9 (0x0 0x600d600d 0x702a 0x5292bdf8)
    0x5292be98 : 0x970582 (0xc1d00021 0xaa910001 0x20802040 0x5292bee0)
    0x5292bef8 : 0xd3257d (0x8f94000 0x5292bf4c 0x0 0x7)
    0x5292bf58 : 0xd3271a (0x8f76800 0xd39e54 0x5292bf78 0x2a45c9)
    0x5292bf78 : 0x230235 (0x8f76800 0x0 0x5292bfc8 0x227cea)
    0x5292bfc8 : 0x2a179c (0x863ea0 0x0 0x10 0x150b6f00)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.driver.AGPM(100.12.31)@0xd2f000->0xd39fff
    dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x93f000
    dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x961000
    dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x928000
    com.apple.nvidia.nv50hal(6.3.6)@0x16c0000->0x1ad4fff
    dependency: com.apple.NVDAResman(6.3.6)@0x96e000
    com.apple.NVDAResman(6.3.6)@0x96e000->0xc5bfff
    dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x928000
    dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x961000
    dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x93f000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro5,1 (Mac-F42D86C8)
    System uptime in nanoseconds: 34473350339409
    unloaded kexts:
    com.apple.driver.AirPortBrcm43xx            423.91.27 (addr 0xeeb000, size 0x1900544) - last unloaded 165512271751
    loaded kexts:
    com.vmware.kext.vmnet            3.0.0 - last loaded 37912026302
    com.vmware.kext.vmioplug            3.0.0
    com.vmware.kext.vmci            3.0.0
    com.vmware.kext.vmx86            3.0.0
    com.mcafee.kext.Virex            1.0.0d1
    com.manycamllc.driver.ManyCamDriver            0.0.9
    com.apple.driver.AppleHWSensor            1.9.3d0
    com.apple.filesystems.autofs            2.1.0
    com.apple.driver.AGPM            100.12.31
    com.apple.driver.AppleMikeyHIDDriver            1.2.0
    com.apple.driver.AppleMikeyDriver            2.0.5f14
    com.apple.driver.AppleHDA            2.0.5f14
    com.apple.driver.AudioAUUC            1.57
    com.apple.filesystems.ntfs            3.4
    com.apple.driver.AppleLPC            1.5.1
    com.apple.driver.SMCMotionSensor            3.0.1d2
    com.apple.Dont_Steal_Mac_OS_X            7.0.0
    com.apple.driver.AudioIPCDriver            1.1.6
    com.apple.driver.AppleIntelPenrynProfile            17
    com.apple.driver.ACPI_SMC_PlatformPlugin            4.7.0a1
    com.apple.driver.AppleUpstreamUserClient            3.5.7
    com.apple.driver.AppleMCCSControl            1.0.20
    com.apple.kext.AppleSMCLMU            1.5.2d10
    com.apple.driver.AppleGraphicsControl            2.10.6
    com.apple.GeForce            6.3.6
    com.apple.driver.AppleUSBTCButtons            201.6
    com.apple.driver.AppleUSBTCKeyboard            201.6
    com.apple.driver.AppleIRController            303.8
    com.apple.iokit.SCSITaskUserClient            2.6.8
    com.apple.iokit.IOAHCIBlockStorage            1.6.4
    com.apple.driver.AppleAHCIPort            2.1.7
    com.apple.BootCache            31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib            1.0.0d1
    com.apple.driver.AppleFWOHCI            4.7.3
    com.apple.driver.AppleEFINVRAM            1.4.0
    com.apple.driver.AppleRTC            1.3.1
    com.apple.driver.AppleSmartBatteryManager            160.0.0
    com.apple.driver.AirPortBrcm43224            428.42.4
    com.apple.driver.AppleUSBHub            4.2.4
    com.apple.nvenet            2.0.17
    com.apple.driver.AppleUSBOHCI            4.2.0
    com.apple.driver.AppleUSBEHCI            4.2.4
    com.apple.driver.AppleHPET            1.5
    com.apple.driver.AppleACPIButtons            1.3.6
    com.apple.driver.AppleSMBIOS            1.7
    com.apple.driver.AppleACPIEC            1.3.6
    com.apple.driver.AppleAPIC            1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient            142.6.0
    com.apple.security.sandbox            1
    com.apple.security.quarantine            0
    com.apple.nke.applicationfirewall            2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement            142.6.0
    com.apple.driver.AppleSMBusController            1.0.10d0
    com.apple.driver.AppleSMBusPCI            1.0.10d0
    com.apple.driver.AppleProfileReadCounterAction            17
    com.apple.driver.DspFuncLib            2.0.5f14
    com.apple.driver.AppleProfileTimestampAction            10
    com.apple.driver.AppleProfileThreadInfoAction            14
    com.apple.driver.AppleProfileRegisterStateAction            10
    com.apple.driver.AppleProfileKEventAction            10
    com.apple.driver.AppleProfileCallstackAction            20
    com.apple.iokit.IOFireWireIP            2.0.3
    com.apple.iokit.IOSurface            74.2
    com.apple.iokit.IOBluetoothSerialManager            2.4.5f3
    com.apple.iokit.IOSerialFamily            10.0.3
    com.apple.iokit.IOAudioFamily            1.8.3fc2
    com.apple.kext.OSvKernDSPLib            1.3
    com.apple.driver.AppleHDAController            2.0.5f14
    com.apple.iokit.IOHDAFamily            2.0.5f14
    com.apple.iokit.AppleProfileFamily            41
    com.apple.driver.IOPlatformPluginFamily            4.7.0a1
    com.apple.driver.AppleSMC            3.1.0d5
    com.apple.driver.AppleBacklightExpert            1.0.1
    com.apple.nvidia.nv50hal            6.3.6
    com.apple.NVDAResman            6.3.6
    com.apple.iokit.IONDRVSupport            2.2.1
    com.apple.iokit.IOGraphicsFamily            2.2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController            2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController            2.4.5f3
    com.apple.iokit.IOBluetoothFamily            2.4.5f3
    com.apple.driver.AppleUSBMultitouch            207.7
    com.apple.iokit.IOUSBHIDDriver            4.2.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice            2.6.8
    com.apple.iokit.IOBDStorageFamily            1.6
    com.apple.iokit.IODVDStorageFamily            1.6
    com.apple.iokit.IOCDStorageFamily            1.6.1
    com.apple.driver.AppleUSBMergeNub            4.2.4
    com.apple.driver.AppleUSBComposite            3.9.0
    com.apple.iokit.IOAHCISerialATAPI            1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily            2.6.8
    com.apple.driver.XsanFilter            402.1
    com.apple.iokit.IOAHCIFamily            2.0.6
    com.apple.iokit.IOFireWireFamily            4.2.6
    com.apple.iokit.IO80211Family            320.1
    com.apple.iokit.IOUSBUserClient            4.2.4
    com.apple.iokit.IONetworkingFamily            1.10
    com.apple.driver.NVSMU            2.2.7
    com.apple.driver.AppleEFIRuntime            1.4.0
    com.apple.iokit.IOUSBFamily            4.2.4
    com.apple.iokit.IOHIDFamily            1.6.6
    com.apple.iokit.IOSMBusFamily            1.1
    com.apple.kext.AppleMatch            1.0.0d1
    com.apple.security.TMSafetyNet            6
    com.apple.driver.DiskImages            289.1
    com.apple.iokit.IOStorageFamily            1.6.3
    com.apple.driver.AppleACPIPlatform            1.3.6
    com.apple.iokit.IOPCIFamily            2.6.5
    com.apple.iokit.IOACPIFamily            1.3.0
    Model: MacBookPro5,1, BootROM MBP51.007E.B06, 2 processors, Intel Core 2 Duo, 2.8 GHz, 4 GB, SMC 1.33f8
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS723232L9SA62, 298.09 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000 / 5
    I have no idea what any of this means, but if anyone does could you please help me in figuring out what is wrong here??
    Thank you so much!
    ~Mike

    Nope, it happened again about 2 minutes into playing Diablo 3, personally it feels like it is overheating, I feel as if the bottom of the Macbook is getting really hot very quickly.
    Here is the updated crash report:
    P.S. I have uninstalled VMWare, but it still appears in the crash report... not sure what else to do I cannot find anything about VMWare under the Computer search.
    Interval Since Last Panic Report:  1636 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    7B2BFC9A-4351-4CC0-8A24-3F6077B1BD3F
    Sat May 19 19:08:17 2012
    panic(cpu 1 caller 0x58c8ec97): NVRM[0/2:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd4000000 0x597c7000 0x096380c1, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x51243888 : 0x21b837 (0x5dd7fc 0x512438bc 0x223ce1 0x0)
    0x512438d8 : 0x58c8ec97 (0x58ea422c 0x58f14840 0x58eb2f88 0x0)
    0x51243978 : 0x58da95db (0x7c4e804 0x747d004 0x100 0x2aa21d)
    0x512439c8 : 0x58da05d4 (0x747d004 0x100 0x58217391 0x42)
    0x512439f8 : 0x594dd7bb (0x747d004 0x100 0x4bcd2cee 0x5119f218)
    0x51243b38 : 0x58dc8258 (0x747d004 0x747b004 0x0 0x0)
    0x51243b78 : 0x58c97e2b (0x747d004 0x747b004 0x0 0x0)
    0x51243c18 : 0x58c9450a (0x0 0x9 0x0 0x0)
    0x51243dc8 : 0x58c963d9 (0x0 0x600d600d 0x702a 0x51243df8)
    0x51243e98 : 0x58c2a582 (0xc1d0002f 0xaa910001 0x20802040 0x51243ee0)
    0x51243ef8 : 0x50dae57d (0x7d3d400 0x51243f4c 0x0 0x7)
    0x51243f58 : 0x50dae71a (0x7d40000 0x50db5e54 0x51243f78 0x2a45c9)
    0x51243f78 : 0x230235 (0x7d40000 0x0 0x51243fc8 0x227cea)
    0x51243fc8 : 0x2a179c (0x863ea0 0x0 0x10 0x0)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.driver.AGPM(100.12.31)@0x50dab000->0x50db5fff
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x57ed1000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x57ef3000
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x5111a000
             com.apple.nvidia.nv50hal(6.3.6)@0x593b2000->0x597c6fff
                dependency: com.apple.NVDAResman(6.3.6)@0x58c28000
             com.apple.NVDAResman(6.3.6)@0x58c28000->0x58f15fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x5111a000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x57ef3000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x57ed1000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro5,1 (Mac-F42D86C8)
    System uptime in nanoseconds: 284952138421
    unloaded kexts:
    com.apple.driver.AppleFileSystemDriver          2.0 (addr 0x579c0000, size 0x12288) - last unloaded 229767652201
    loaded kexts:
    com.vmware.kext.vmnet          3.0.0 - last loaded 42448227803
    com.vmware.kext.vmioplug          3.0.0
    com.vmware.kext.vmci          3.0.0
    com.vmware.kext.vmx86          3.0.0
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AGPM          100.12.31
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleMikeyHIDDriver          1.2.0
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMikeyDriver          2.0.5f14
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.nvenet          2.0.17
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.3.6
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.kext.AppleSMCLMU          1.5.2d10
    com.apple.filesystems.ntfs          3.4
    com.apple.driver.AppleUSBTCButtons          201.6
    com.apple.driver.AppleUSBTCKeyboard          201.6
    com.apple.driver.AppleIRController          303.8
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBOHCI          4.2.0
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleSmartBatteryManager          160.0.0
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.AppleProfileFamily          41
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.NVSMU          2.2.7
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.driver.AppleUSBMultitouch          207.7
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOAHCISerialATAPI          1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289.1
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: MacBookPro5,1, BootROM MBP51.007E.B06, 2 processors, Intel Core 2 Duo, 2.8 GHz, 4 GB, SMC 1.33f8
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS723232L9SA62, 298.09 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    Any Ideas?? Thanks again!
    ~Mike

  • Bizarre Server syncing quandary that I just can't figure out! Help?

    My work computer has been a PC, and it is on its last leg (the blue screen of death). Acting proactively, I went out and bought a new computer (an iMac). All of my computers are Mac's, so I was quite happy to transition at work from PC to Mac.
    I had our IT Department set the new iMac up on their server (mail, files, etc), so that all my files remain backed up as they always were when I was using my PC. Our IT Department does not have a lot of background experience setting Mac's up on their server, but alas, they were able to do it, and all was perfect (or so I thought). My mail works fine, my MobileMe syncing works fine, etc. When reviewing my files (Office Documents), however, I found an interesting anomaly that I can't seem to understand. Btw, the software issue in question is Office for Mac 2011.
    I decided to check the effectiveness of the syncing by opening both my PC and my iMac. I modified a "Word" file on my PC (all files live on the work server), and as soon as I clicked "save", I was able to watch the file instantly update on my iMac as well (thus insuring me that the server was doing as it was supposed to and syncing my documents between the two computers). I'm still using the PC as I need to finish up a few things with it (hopefully before it crashes on me permanently).
    Here is where the oddity comes in. While this updating and synchronization appears to work perfectly for all "Word" files, the same is not so for "Excel" files. In fact, after modifying an Excel file on my PC, I again watched the iMac to see if that same file would update and sync. It did not. For some odd reason, "Word" files modified on my PC will instantly sync and modify on my iMac, however, when modifying Excel files on my PC, they will not update and sync with the iMac. Not sure why I am having this issue?
    If none of my Office files were syncing, than I'd probably question whether or not our IT Department set me up on their server correctly. However, given that all "Word" files appear to sync appropriately, I'm not sure I understand why the same is not true for "Excel" files.
    I thought I'd throw the question out here, so that perhaps I can go into work tomorrow with some answers when I re-approach our IT Department with this problem. Any help would be appreciated.
    Thanks in advance,
    Dan

    Problem resolved. I figured out the problem. Naturally it was a PC issue. Now that I no longer have a PC, all problems are resolved!

  • How to download movies? I download as well as music, and writes that can't format. help please

    how to download movies? I download as well as music, and writes that can't format. help please

    Check the iTMS, if the movie isn't listed there, it's not for sale.

  • Blackberry Curve 8520 - Can't set up email account (Have read previous posts and can't figure out problem. Please help.

    Hi,
    I just bought myself a new Blackberry.
    I've been trying to set up my email account through the wizard set up and have been largely unsuccessful. I read a couple of posts that have given a step-by-step process. My only problem is that I don't have an option that says 'Add account.' Here are the steps I've followed:
    1) Go to Email Setup
    2) Choose 'I want to create or add an email address.
    3) Click next
    4)Click next again
    5)Then, I get a message which says 'Existing Users, to log in, please provide your username and password.'
    I don't have an option to add an account.
    When I put in my username and password into the fields, I get a message saying please enter a valid username.
    (My service provider already set up my Gmail, and couldn't add the other one. I told him I'd figure it out)
    Please help!)
    Thanks so much.
    Solved!
    Go to Solution.

    Hi and Welcome to the Forums!
    The reason you can't log in is that, when you had your carrier set up your GMail, they created a BIS account for you. Further, they created BIS credentials on that account -- which are then needed to access the BIS configuration screens even on the BB. You need those credentials. Contact whoever it is that set it up for you and have them tell you those credentials.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I Can Not Figure Out My Ipod PLEASE HELP ME!!!! ITS DRIVING ME CRAZYYY!!!!

    Hey, well recently i bought a new 80GB (5th Generation) Ipod. and it was working fine until one day it kept freezing so i plugged it into my computer and it kept saying to restore it so i kept restoring it, but after that it kept on saying it was corrupted again!! And then the summary pops up and all it says is: Ipod, then everything else has N/A i have no idea what to do, please help me, all i have been doing is restoring this but thats not working right now! i cant find anything to help me, please someone help me! It's my 2nd Ipod and i dont want this one to break on me too!!!
      Windows XP Pro   Black 5th Generation 80GB Ipod, 3 Weeks old

    Check these out:
    iTunes Displays a Corrupt File Message
    Very Good Corrupt File Thread
    I hope this helps!

  • My safari keeps quitting and I can't for the life of me figure it out. Help PLEASE!

    Here is the information that keeps coming up.
    Process:         Safari [611]
    Path:            /Users/TaniaB/Desktop/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.6 (5533.22.3)
    Build Info:      WebBrowser-75332203~3
    Code Type:       X86 (Native)
    Parent Process:  launchd [63]
    Interval Since Last Report:          2045 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  1950 sec
    Per-App Crashes Since Last Report:   3
    Date/Time:       2012-03-24 21:47:54.704 -0600
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  8378663C-F77E-4A64-B801-D3C7521159CA
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000150
    Crashed Thread:  0
    Thread 0 Crashed:
    0   com.apple.WebCore                       0x96cd1052 WebCore::FrameLoader::commitProvisionalLoad() + 546
    1   com.apple.WebCore                       0x96db0e56 WebCore::DocumentLoader::commitLoad(char const*, int) + 54
    2   com.apple.WebCore                       0x96db0b63 WebCore::ResourceLoader::didReceiveData(char const*, int, long long, bool) + 83
    3   com.apple.WebCore                       0x96db0666 WebCore::MainResourceLoader::didReceiveData(char const*, int, long long, bool) + 2294
    4   com.apple.WebCore                       0x96dafd38 WebCore::ResourceLoader::didReceiveData(WebCore::ResourceHandle*, char const*, int, int) + 168
    5   com.apple.Foundation                    0x92817ec7 -[NSURLConnection(NSURLConnectionReallyInternal) sendDidReceiveData:originalLength:] + 119
    6   com.apple.Foundation                    0x92817e11 _NSURLConnectionDidReceiveData + 177
    7   com.apple.CFNetwork                     0x93145978 URLConnectionClient::_clientDidReceiveData(__CFData const*, URLConnectionClient::ClientConnectionEventQueue*) + 248
    8   com.apple.CFNetwork                     0x931468cc URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 264
    9   com.apple.CFNetwork                     0x93146baa URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 998
    10  com.apple.CFNetwork                     0x93145370 URLConnectionClient::processEvents() + 104
    11  com.apple.CFNetwork                     0x930f2c2b MultiplexerSource::perform() + 189
    12  com.apple.CoreFoundation                0x97e213c5 CFRunLoopRunSpecific + 3141
    13  com.apple.CoreFoundation                0x97e21aa8 CFRunLoopRunInMode + 88
    14  com.apple.HIToolbox                     0x97ad52ac RunCurrentEventLoopInMode + 283
    15  com.apple.HIToolbox                     0x97ad50c5 ReceiveNextEventCommon + 374
    16  com.apple.HIToolbox                     0x97ad4f39 BlockUntilNextEventMatchingListInMode + 106
    17  com.apple.AppKit                        0x950916d5 _DPSNextEvent + 657
    18  com.apple.AppKit                        0x95090f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    19  com.apple.Safari                        0x000166ad 0x1000 + 87725
    20  com.apple.AppKit                        0x95089f9f -[NSApplication run] + 795
    21  com.apple.AppKit                        0x950571d8 NSApplicationMain + 574
    22  com.apple.Safari                        0x0000acee 0x1000 + 40174
    Thread 1:
    0   libSystem.B.dylib                       0x9098a34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x909b4ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x90310d58 ***::TCMalloc_PageHeap::scavengerThread() + 824
    3   com.apple.JavaScriptCore                0x90310d8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                       0x909b4055 _pthread_start + 321
    5   libSystem.B.dylib                       0x909b3f12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                       0x9098a34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x909b4ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.WebCore                       0x96caa587 WebCore::IconDatabase::syncThreadMainLoop() + 279
    3   com.apple.WebCore                       0x96ca7e19 WebCore::IconDatabase::iconDatabaseSyncThread() + 761
    4   libSystem.B.dylib                       0x909b4055 _pthread_start + 321
    5   libSystem.B.dylib                       0x909b3f12 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x90983166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x9098a95c mach_msg + 72
    2   com.apple.CoreFoundation                0x97e20e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x97e21aa8 CFRunLoopRunInMode + 88
    4   com.apple.CFNetwork                     0x930c618c CFURLCacheWorkerThread(void*) + 388
    5   libSystem.B.dylib                       0x909b4055 _pthread_start + 321
    6   libSystem.B.dylib                       0x909b3f12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x90983166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x9098a95c mach_msg + 72
    2   com.apple.CoreFoundation                0x97e20e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x97e21aa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                        0x0002f33d 0x1000 + 189245
    5   com.apple.Safari                        0x0002f08a 0x1000 + 188554
    6   com.apple.Safari                        0x0002f023 0x1000 + 188451
    7   libSystem.B.dylib                       0x909b4055 _pthread_start + 321
    8   libSystem.B.dylib                       0x909b3f12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x9098a34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x909b4ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x901656b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x96cc377c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x909b4055 _pthread_start + 321
    5   libSystem.B.dylib                       0x909b3f12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x90983166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x9098a95c mach_msg + 72
    2   com.apple.CoreFoundation                0x97e20e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x97e21aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x92816520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation                    0x927b2dfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x927b29a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x909b4055 _pthread_start + 321
    8   libSystem.B.dylib                       0x909b3f12 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x90983166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x9098a95c mach_msg + 72
    2   com.apple.CoreFoundation                0x97e20e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x97e21aa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                        0x0002f33d 0x1000 + 189245
    5   com.apple.Safari                        0x0002f08a 0x1000 + 188554
    6   com.apple.Safari                        0x0002f023 0x1000 + 188451
    7   libSystem.B.dylib                       0x909b4055 _pthread_start + 321
    8   libSystem.B.dylib                       0x909b3f12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x909d260a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                       0x909b4055 _pthread_start + 321
    2   libSystem.B.dylib                       0x909b3f12 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x9098a34e __semwait_signal + 10
    1   libSystem.B.dylib                       0x909b4ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x901656b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x96cc377c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x909b4055 _pthread_start + 321
    5   libSystem.B.dylib                       0x909b3f12 thread_start + 34
    Thread 10:
    0   libPng.dylib                            0x90e67c4f png_write_find_filter + 2749
    1   libPng.dylib                            0x90e66ff5 _cg_png_write_row + 555
    2   com.apple.ImageIO.framework             0x91b76ab8 writeOne + 3061
    3   com.apple.ImageIO.framework             0x91b3f06a _CGImagePluginWritePNG + 124
    4   com.apple.ImageIO.framework             0x91b33e27 CGImageDestinationFinalize + 145
    5   com.apple.Safari                        0x00046695 0x1000 + 284309
    6   com.apple.Safari                        0x0004542c 0x1000 + 279596
    7   com.apple.Safari                        0x00044c2d 0x1000 + 277549
    8   libSystem.B.dylib                       0x909b4055 _pthread_start + 321
    9   libSystem.B.dylib                       0x909b3f12 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x909831c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x909b51af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x909b6a33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x927f8dbc -[NSCondition waitUntilDate:] + 236
    4   com.apple.Foundation                    0x927f8bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5   com.apple.Foundation                    0x927f8b35 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.AppKit                        0x950f76e8 -[NSUIHeartBeat _heartBeatThread:] + 753
    7   com.apple.Foundation                    0x927b2dfd -[NSThread main] + 45
    8   com.apple.Foundation                    0x927b29a4 __NSThread__main__ + 308
    9   libSystem.B.dylib                       0x909b4055 _pthread_start + 321
    10  libSystem.B.dylib                       0x909b3f12 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x96cd0e41  ecx: 0x00000150  edx: 0x00000000
      edi: 0x00000438  esi: 0x00000000  ebp: 0xbfffe698  esp: 0xbfffe510
       ss: 0x0000001f  efl: 0x00010206  eip: 0x96cd1052   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000150
    Binary Images:
        0x1000 -   0x5d3ffc  com.apple.Safari 5.0.6 (5533.22.3) <79731a26a77704fb4831e3adc020a381> /Users/TaniaB/Desktop/Safari.app/Contents/MacOS/Safari
      0x644000 -   0x732fef  com.apple.PubSub 1.0.5 (65.23) <7d496f89df21f6b9ecf99a7727469c2a> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
      0x7b6000 -   0x7b8ffd  com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
      0x7bf000 -   0x7cafff  libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
      0x7d2000 -   0x7fcfe8  com.apple.framework.Apple80211 5.2.8 (528.1) <97dfd0c2d44d3c5839dd96f74e43d9c2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0x80d000 -   0x81cffc  SyndicationUI ??? (???) <4cb2f7ffaf3185ff4e036082064e7121> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
      0x82b000 -   0x861fef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
      0x88e000 -   0x893fff  com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9305ccde37dcf5329fd9faea1db1f153> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
      0xd52000 -   0xf5afef  com.apple.RawCamera.bundle 2.1.3 (537) <ef9996f5ec0caf58dc832a4153196a1e> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x155a1000 - 0x155a6ff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x170f6000 - 0x170f8ffe  com.apple.AutomatorCMM 1.1 (162) <413d7e87f90ba14adf2c2a08af448666> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x17108000 - 0x17109ffd  com.apple.BluetoothMenu 2.1.8 (2.1.8f2) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x1710f000 - 0x17110fff  com.apple.JavaPluginCocoa 12.9.0 (12.9.0) <5451adf6a77e3088b1a096fe1e16b189> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x1749c000 - 0x174a0ffd  JavaLaunching ??? (???) <41aa04fadb9589ab9c249284090b2ef7> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0x179f2000 - 0x179f4fff  com.apple.BezelServicesFW 1.4.9212 (1.4.9212) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x17e80000 - 0x17e81ff3  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1893d000 - 0x1894bfeb  libSimplifiedChineseConverter.dylib ??? (???) <68f130a585c3f580d166ef7cbbf47e69> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x1896f000 - 0x1896fffd  liblangid.dylib ??? (???) <4a7cd4e810ac2cf4cadd29d0bda17306> /usr/lib/liblangid.dylib
    0x1a966000 - 0x1aa91ff7  libmecab.1.0.0.dylib ??? (???) <bef4c5c9918bc623b9137e9bf59b1e5e> /usr/lib/libmecab.1.0.0.dylib
    0x1b3a0000 - 0x1b415ff7  com.apple.Bluetooth 2.1.9 (2.1.9f10) <d70a88066ebf7eb8071781f686caced3> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x1e764000 - 0x1e7bcfff +com.DivXInc.DivXDecoder 6.8.4.3 (6.8.4) <26a406b3e4bcc6ff8f28a99ffeb5cf2d> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1e7e0000 - 0x1e7e3ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x900e3fff  libobjc.A.dylib ??? (???) <400e943f9e8a678eea22a1d1205490ee> /usr/lib/libobjc.A.dylib
    0x90152000 - 0x90159ffe  libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x9015a000 - 0x90371ff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90372000 - 0x90782fef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90783000 - 0x9078ffff  libbz2.1.0.dylib ??? (???) <d355415c89c383330697a7b73d6dbc2e> /usr/lib/libbz2.1.0.dylib
    0x90790000 - 0x907c7fff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <eab546255ac099b9616df999c9359d0e> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x907c8000 - 0x9085bfff  com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9085c000 - 0x9086cffc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9086d000 - 0x90874fff  com.apple.agl 3.0.9 (AGL-3.0.9) <bc62de7d16827bd12a2cb1016aedfcdc> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x90875000 - 0x908a0fe7  libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x908a1000 - 0x908c5feb  libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x908c6000 - 0x908d0feb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x908d1000 - 0x908e6ffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90904000 - 0x90981fef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90982000 - 0x90ae9ff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x90af4000 - 0x90af4ffe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90af5000 - 0x90b13ff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90b1a000 - 0x90bbeff7  com.apple.QuickTimeImporters.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90bc4000 - 0x90c21ffb  libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x90c22000 - 0x90c5cfe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90c5d000 - 0x90c6cffe  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <182986b74247b459b2a67a47071bdc6b> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90c6d000 - 0x90dedfff  com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90dee000 - 0x90e0cfff  libresolv.9.dylib ??? (???) <9ed809256ce8913cddc3269c2e364654> /usr/lib/libresolv.9.dylib
    0x90e0d000 - 0x90e12fff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x90e27000 - 0x90e29fff  com.apple.securityhi 3.0 (30817) <b3517782ad664a21e4fd60242e92723e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90e5d000 - 0x90e78ff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90e79000 - 0x9104afef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9104b000 - 0x9113fff4  libiconv.2.dylib ??? (???) <96ff4c6f84c4a1623cb78287371cdd3f> /usr/lib/libiconv.2.dylib
    0x91152000 - 0x9142cff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9142d000 - 0x914b4ff7  libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x914b5000 - 0x91534ff5  com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91535000 - 0x91562feb  libvDSP.dylib ??? (???) <4daafed78a471133ec30b3ae634b6d3e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x917cf000 - 0x91afaff6  com.apple.QuickTime 7.7 (1680.28) <df75ea1435dadaf44ffde0924bc67ec4> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91afb000 - 0x91c44ff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91c45000 - 0x91dd4fe7  com.apple.CoreAUC 3.08.0 (3.08.0) <ce8da72493f7ad2bcb13130e6d0eca54> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x91dd5000 - 0x91e07fff  com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x91e08000 - 0x91e51fef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91e52000 - 0x91f33ff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x91f34000 - 0x91f3dfff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91f3e000 - 0x91f9aff7  com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91f9b000 - 0x91f9bff8  com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91f9c000 - 0x92043feb  com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92044000 - 0x926e4fff  com.apple.CoreGraphics 1.409.8 (???) <25020feb388637ee860451c19b613c48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x926e5000 - 0x92730fe1  com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x92731000 - 0x9278aff7  libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9278b000 - 0x927a3fff  com.apple.openscripting 1.2.8 (???) <0129d2f750f5ddcb92f4acf8a3541952> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x927a4000 - 0x927a7fff  com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x927a8000 - 0x92a24fe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92a2a000 - 0x92a49ffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92a4a000 - 0x92a4aff8  com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92a4b000 - 0x92b9dff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92b9e000 - 0x9306ffbe  libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x930c2000 - 0x930c2ffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x930c3000 - 0x9316afec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x931a0000 - 0x931a4fff  libGIF.dylib ??? (???) <ade6d93abe118569a7a39d11f81eb9bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93309000 - 0x936c7fea  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x936c8000 - 0x93779fff  edu.mit.Kerberos 6.0.15 (6.0.15) <28005ea82ba82307f185c255c25bfdd3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9377a000 - 0x938c4feb  com.apple.QTKit 7.7 (1680.28) <c03868cba11c22743a5d68e1b0184399> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x938c5000 - 0x93904fef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93905000 - 0x93907ff5  libRadiance.dylib ??? (???) <73169d8c3fc31df4005e8eaa0d16bde5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x93908000 - 0x93946fff  libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9398c000 - 0x93a47fe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93a48000 - 0x93b13fef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93b14000 - 0x93bc6ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x93bc7000 - 0x93befff7  com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x93bf0000 - 0x93bf0ffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93bf1000 - 0x93d0eff7  com.apple.WebKit 5534 (5534.50.2) <643ffe6446c331210a74f896f0804eb2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93d0f000 - 0x93d2bff3  com.apple.CoreVideo 1.6.1 (48.6) <e1eea31edd855f3e739202eb18ac8312> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93d2c000 - 0x93d30fff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x93d31000 - 0x93d3dff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x93d3e000 - 0x93d80fef  com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93d99000 - 0x93deaff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93deb000 - 0x93dfbfff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93dfc000 - 0x93e56ff7  com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x93e57000 - 0x93e5dfff  com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93f41000 - 0x93f41ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93f42000 - 0x93f42ffe  com.apple.quartzframework 1.5 (1.5) <6865aa0aeaa584b5a54d43f2f21d6c08> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93f43000 - 0x94e43fe6  com.apple.QuickTimeComponents.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94e44000 - 0x94e51fe7  com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94e57000 - 0x94ed1ff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94ed2000 - 0x94ee8fff  com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94ee9000 - 0x95022ff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x95023000 - 0x95032fff  libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x95033000 - 0x95050ff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x95051000 - 0x9584ffef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95850000 - 0x95917ff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x95918000 - 0x95920fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95921000 - 0x95921ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95922000 - 0x95adeff3  com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95adf000 - 0x95b5cfeb  com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95b5d000 - 0x95beaff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95beb000 - 0x95f88fef  com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95f89000 - 0x95f89fff  com.apple.Carbon 136 (136) <eb3c292d5544512f86e1e4e743c23f8e> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95f8a000 - 0x960c2fe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x960c3000 - 0x961abff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x961ac000 - 0x96568ff4  com.apple.VideoToolbox 0.484.2 (484.2) <f8e0dbf848f7441bc31428305a2f65bf> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x96569000 - 0x96569ffa  com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9656a000 - 0x965f4ff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9662b000 - 0x9664ffff  libxslt.1.dylib ??? (???) <c372568bd2f7169efa0faee6546eead3> /usr/lib/libxslt.1.dylib
    0x96650000 - 0x9669efe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x966cf000 - 0x966dafe7  libCSync.A.dylib ??? (???) <f3228c803584320fde5e1bb9f04b4d44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x966db000 - 0x966e7ffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x966e8000 - 0x966e8ffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x966e9000 - 0x96712fff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x96713000 - 0x96718fff  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96719000 - 0x96759fef  com.apple.CoreMedia 0.484.2 (484.2) <a3f49c4ac23e1e4ff60061ef279e367c> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x967ce000 - 0x967ffffb  com.apple.quartzfilters 1.5.0 (1.5.0) <92b4f39479fdcabae0d8f53febd22fad> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x96800000 - 0x9683affe  com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9683b000 - 0x96886ff7  com.apple.CoreMediaIOServices 140.0 (1492) <3fd3879b31be7659c1008e8991e9f69b> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x96887000 - 0x96a0bfef  com.apple.MediaToolbox 0.484.2 (484.2) <03c5c5966a91ad3ae9c825340fa21970> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x96a0c000 - 0x96a3bfe3  com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96a3c000 - 0x96a8bfff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x96adb000 - 0x96ae9ffd  libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x96bb4000 - 0x96c1affb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x96c58000 - 0x96c99fe7  libRIP.A.dylib ??? (???) <cd04df9e8993c51312c8cbcfe2539914> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96c9a000 - 0x96ca1fe9  libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x96ca2000 - 0x97a10fe3  com.apple.WebCore 5534 (5534.50.1) <bef6f01e56834f2498918b264f0acbf7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x97a11000 - 0x97a16fff  com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x97a17000 - 0x97aa4ff7  com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x97aa5000 - 0x97dadfe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x97dae000 - 0x97ee1fe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x97ee2000 - 0x97ee3ffc  libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x97ee4000 - 0x97f77ff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x97f78000 - 0x97f7fff7  libCGATS.A.dylib ??? (???) <8875cf11c0de0579423ac6b6ce80336d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x97f80000 - 0x97ff2fff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0xba900000 - 0xba916fff  libJapaneseConverter.dylib ??? (???) <b9aea83b1cd97f3230999ebfcbf63e7c> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffe8000 - 0xfffebfff  libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780  libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Please post the latest crash log, but only if the second line is not
    Path:            /Users/TaniaB/Desktop/Safari.app/Contents/MacOS/Safari
    If that is the second line, then you haven't followed the instructions above. The second line of the crash log should be this:
    Path:            /Applications/Safari.app/Contents/MacOS/Safari

  • Help me to figure out the problem please

    Hello there guys,
    i have gtx 560 ti twin frozr II OC and 2 weeks ago i noticed some strange freezing under any settings(low/ultra) for bf3 or dirt3 or some other applications and games. the strange thing that i dont have them(freezes) running 3dmark and the card dont overheat at all(31 in idle max 73 at full after 15mins of furmark)...i post an example of the issue in hope to make you undestand the problem that the card has.... you can clearly see at the end of the video...sorry i didnt register it in fraps to avoid further fps drop.
    my specs are
    asus m5a99x evo amd3+
    8gb dd3 kingston 1666
    psu 550gx coolermaster
    cpu phenom x4 955 3.2
    im pretty sure its gpu cuz i changed the mainboard last week and the problem persists...
    thx

    Quote from: jwolf on 07-March-12, 15:23:23
    yeah i mean rma!
    gpu is 99% load..using 23inches monitor...this crap happens on any resolution and setting(the recorded one is on 1920x1080)on lower resolution its less noticeble but its there..and the cpu is about 70% load..
    You probably haven't done any overclocking to the CPU have you? Try to go into your BIOS and disable the energy saving options. I believe it is called Quiet and Cool look for that option and disable it and report back!
    edit: Bf3 on the other hand from the improvements of disabling Cool and Quiet or Quiet and Cool whatever AMD calls it is all you are going to get that game is a bit more taxing on the CPU and unless you don't overclock you won't get any better performance out of it. To be sure check your cpu and gpu usage in that one as well.

  • Full Outer Join Help please

    Using : Oracle 11.2.0.1 on Windows XP
    create table tab40(bno varchar2(1),pno varchar2(7),weight number(3),lineno number(3));
    insert into tab40 values ('1','1115027',36,1);
    insert into tab40 values ('2','1115100',25,2);
    insert into tab40 values ('3','1115200',50,3);
    insert into tab40 values ('1','1112510',60,4);
    insert into tab40 values ('+','1112610',6,5);
    insert into tab40 values ('+','1112710',4,6);
    insert into tab40 values ('+','1110710',1,7);
    insert into tab40 values ('2','1117014',79,8);
    insert into tab40 values ('+','1117000',9,9);
    insert into tab40 values ('+','1117001',2,10);
    insert into tab40 values ('1','1317001',200,11);
    insert into tab40 values ('1','1697001',20,12);
    insert into tab40 values ('2','2997001',40,13);
    insert into tab40 values ('1','2996001',44,14);
    SQL> select * from tab40;
    B PNO         WEIGHT     LINENO
    1 1115027         36          1
    2 1115100         25          2
    3 1115200         50          3
    1 1112510         60          4
    + 1112610          6          5
    + 1112710          4          6
    + 1110710          1          7
    2 1117014         79          8
    + 1117000          9          9
    + 1117001          2         10
    1 1317001        200         11
    B PNO         WEIGHT     LINENO
    1 1697001         20         12
    2 2997001         40         13
    1 2996001         44         14
    14 rows selected.
    SQL>create table tab41(bno varchar2(1),pno varchar2(7),weight number(3),lineno number(3));
    insert into tab41 values ('1','1115027',36,1);
    insert into tab41 values ('2','1115100',25,2);
    insert into tab41 values ('3','1115200',50,3);
    insert into tab41 values ('1','1112510',60,4);
    insert into tab41 values ('+','1112610',6,5);
    insert into tab41 values ('+','1110710',1,6);
    insert into tab41 values ('2','1117014',79,7);
    insert into tab41 values ('+','1117000',9,8);
    insert into tab41 values ('1','1317001',200,9);
    insert into tab41 values ('1','1697001',20,10);
    insert into tab41 values ('2','2997001',40,11);
    insert into tab41 values ('1','2996001',44,12);
    insert into tab41 values ('+','1112710',4,13);
    insert into tab41 values ('+','3332710',8,14);
    SQL> select * from tab41;
    B PNO         WEIGHT     LINENO
    1 1115027         36          1
    2 1115100         25          2
    3 1115200         50          3
    1 1112510         60          4
    + 1112610          6          5
    + 1110710          1          6
    2 1117014         79          7
    + 1117000          9          8
    1 1317001        200          9
    1 1697001         20         10
    2 2997001         40         11
    B PNO         WEIGHT     LINENO
    1 2996001         44         12
    + 1112710          4         13
    + 3332710          8         14
    14 rows selected.
    SQL>Required Output :
    A       B          C          D        E       F          G          H
    1 1112510         60          4        1 2996001         44         12
    + 1112710          4          6        + 1112710          4         13
    2 1117014         79          8
    + 1117001          2         10
                                           1 2996001         44         12
                                           + 3332710          8         14Logic : The plus sign in Bno indicates that Packet No. was sent to customer with last non plus signed number packet (order by lineno) i.e. for example in tab40 there is line no. 6 whose master packet number is 1112510 (previous non plus signed rows's PNO). Now come to required output; which is showing that these plus signed packets (whose master PNO is that) are not as per tab40 vs tab41 something like full outer join between tab40 and tab41. Example :
    + 1112710 is associated with 1112510 in tab40, while in tab41 it is associated with 2996001; so it is difference.
    + 1117001 is associated with 1117014 in tab40, while it is not in tab41.
    vice versa;
    + 3332710 is associated with 2996001 in tab41, while it is not in tab40.
    I mean, if only plus marked row's PNO's mater packet number is not equal to master PNO(previous non plus marked BNO) in both the table, it should be part of the select query please. Generally this happens, when our packing department gets late delivery of prior master packet, so they just send the small packet with immediate available one (non plus) packet.
    Kindly let me; i am clear in my request or i should elaborate more. This may be more complex, because may be bad table/data design, but i need the output by select query please help me.
    Regards.
    Edited by: user12050217 on Jan 3, 2012 3:57 AM

    Yes, you have perfectly understood my question... just i added lineno > 1
    SELECT bno,
    pno,
    weight,
    lineno
    FROM ( SELECT tab40.*, lag (bno) OVER (ORDER BY pno) prev_bno
    FROM tab40
    ORDER BY pno)
    WHERE bno = '+' OR prev_bno = '+' and lineno > 1
    ORDER BY lineno
    and it worked, because there are no chances that plus marked row will be having lineno <=1
    B PNO         WEIGHT     LINENO
    1 1112510         60          4
    + 1112610          6          5
    + 1112710          4          6
    + 1110710          1          7
    2 1117014         79          8
    + 1117000          9          9
    + 1117001          2         10
    7 rows selected.

  • Patterns/pattern overlay grayed out! Help please

    I deleted the default patterns because I was about to add all the patterns from Subtle Patterns, but now the entire patterns option is grayed out in the menus and I can't do anything! I'm a web designer, so I need this to work. Can someone please help?

    Go to Edit > Preset Manager > Patterns > Reset Patterns (Small Gear menu)

  • Restored Iphone = network connection timed out. HELP PLEASE.

    So i recently restored my iphone. And when i restored it, it was doing fin until 3 minutes later an error poped up. it said "network connection timed out" im really confused about this and tried it multiple times and nothing happened. I re downloaded itunes but its still the same. i have the original iphone by the way, if that helps. thank you.

    I am having this same problem too, please will someone reply quickly because I need this song for a project. My computer connections are fine too. Thank you

  • XML formating help Please

    Hi Everyone,
    I'm new to XML and hoping someone can help me. XML seems pretty straightforward, so I'm not sure why I can't get my head around this.
    Here's what I need.
    I'm building a webpage in Dreamweaver using Spry that will have a list of all 50 U.S. states. When you click on a state, it will populate a side area with 2 or 3 cities from that particular state along with a phone number for each city.
    Can anyone give me a small sample of how the formating would be for this?
    I'd really appreciate any help you can give.
    Thanks,
    Moon71

    Your question has nothing to do with Java. Locking this thread.

Maybe you are looking for

  • Table for Process type with BP Number of sold to party

    Hi Friends, Please share me Table name where i'll get the Process Type (Transaction Type) and Sold to Party Number or BP Guid of the transaction. I want to create Target group for BP's who are involve in Particular Transaction. For infoset creation i

  • STATSPACK question using spauto.sql

    Using spauto.sql takes a snapshot of the database every hour, which is exactly what i want , but the question is when i run spreport, and trying to compare performance e.g ( 5.00p.m and 7.00p.m) how do go about it.

  • How I load all the data in a database table into a cache?

    Hi Lets assume I have a lookup table I want to load it upfront into the cache so that the application can use this data from cache. One way is to write code to create a map from the database and call putALL. Is there any better approach to this? Anot

  • I have to re install CS4

    I have to re install CS4 and wish to know if I have to uninstall it first, or do install over the present copy. If I have to uninstall it how do I go about doing it. The problem is that CS4 is not showing the Canon printer profiles. Canon support nar

  • One column concat...urgent

    Hello All, I have a table with one column, which has the values are follows as 12 records. Out of that I want to create only three records discard all 'value' records and concatenate all the remaining records as one with respective of each 'value' re