Exit code 15 problem; can anyone help?

I have encountered a problem everytime I try to install Adobe Flash Cs5.5.  All goes well (downloading the program, clicking trial version, and entering my adobe id) until I click install then it instantly gives me the error of exit code 15 everytime.  I have tried uninstalling and reinstalling the program multiple times but nothing seems to work.   Any one have a fix to this problem?

dihttp://kb2.adobe.com/cps/834/cpsid_83481.html
in particular, run the cleaners for all uninstalled cs versions.

Similar Messages

  • Gmail on iphone was working fine until yesterday when it prompted me with the message cannot get mail user name or password for gmail is incorrect, i have tried deleting the account and re-created a new account, same problem, can anyone help?

    gmail on iphone was working fine until yesterday when it prompted me with the message "cannot get mail user name or password for gmail is incorrect", i have tried deleting the account and re-created a new account, same problem, can anyone help?

    paulcb, you're a genius, it worked, thank you so much, you don't know how much stress you have taken off my shoulders, I am constantly on my email in my iphone everyday.  Thanks a million, take care. Robert.

  • I bought a new Epson printer WR-7620 on Saturday and the Air Printer is not working. I spoke to Epson and they said it is an Apple problem, can anyone help. Thanks Peter

    I bought a new Epson printer WR-7620 on Saturday and the Air Printer is not working. I spoke to Epson and they said it is an Apple problem, can anyone help. Thanks Peter

    Peter,
    deggie gave you that link so you'd know that airprint is a reduced-options print system, designed for mobile devices (not Macs), and you need to use the specific airprint driver on the Mac when adding the printer if you want Airprint, no-options printing. Otherwise, select the "non-airprint" driver when you add the printer.
    It may be helpful to Reset the Printing System to get OS X to find the right driver.
    Mac OS X: How to reset the printing system - Apple Support
    (And "not working" doesn't help us to help you - please give more detail next time)

  • How do I change DNS to Business Catalyst servers.  I am having problems can anyone help please?

    How do I change DNS to Business Catalyst servers.  I am having problems can anyone help please?

    What problem are you having?
    Have you read this KB? - Domain name and DNS: Quick reference

  • Ave problem getting on wi-fi i keep getting error code n.28 can anyone help please thanks Christine

    HI i am having problem with wi-fi i am getting error code n.28 can anyone give me help.
    Thanks

    When you googled "iPad n.28 error" what do you get?

  • Hi I have a geometry problem.Can anyone help with java code

    Hi I have a non simple polygon . My job is to make it a simple. for that First I need to find the intersecting lines say line AB intersects line CD. If so then I must replace AB & CD with AC & BD or AD or BC which ever keeps the polygon closed . So can anyone help me out with this code
    import java.io.*;
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import javax.swing.*;
    public class Simple{
    static int POINTWID = 4; // size of points
    // the x and y arrays hold the coordinates
    // the B array is the order of the points in the polygon
    // You want to fill the C array with the simple polygon
    static double x[] = new double[200];
    static double y[] = new double[200];
    static int B[] = new int[200]; // the permutation matrix
    static int C[] = new int[200]; // the one that becomes simple
    static SimpleFrame myFrame;
    static int numPoints = 3;
    public static void main(String args[]) {
    makePolygons();
    // Create the frame to draw on
    myFrame = new SimpleFrame();
    myFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    myFrame.setSize(600, 600);
    myFrame.setVisible(true);
    public static void makePolygons(){
    // Build an array of random points in the unit square
    for(int i = 0; i < numPoints; i++){
    x[i] = Math.random();
    y[i] = Math.random();// Sample program
    B[i] = i; // default permutation
    // Create the simple polygon
    createSimplePolygon();
    * This is the only function you need to mess with
    public static void createSimplePolygon(){
    // Initialize the C[] array with the identity permutation
    for(int i = 0; i < numPoints; i++)
    C[i] = i;
    // Bubble sort the points from left to right
    for(int i = 0; i < numPoints; i++)
    for(int j = 0; j < numPoints - 1; j++)
    if(x[C[j]] > x[C[j+1]]){
    int temp = C[j];
    C[j] = C[j+1];
    C[j+1] = temp;
    public static class SimpleFrame extends JFrame{
    public static JSlider numPointsSlider;
    public SimpleFrame()
    super("Create you own Simple Polygon");
    Container content = getContentPane();
    content.setLayout(new java.awt.BorderLayout());
    JTabbedPane tabbedPane = new JTabbedPane();
    tabbedPane.setPreferredSize (new java.awt.Dimension(300, 400));
    tabbedPane.addTab("Scrambled", new ScrambledPanel());
    tabbedPane.addTab("Simple", new SimplePanel());
    content.add(tabbedPane, java.awt.BorderLayout.CENTER);
    // Slider for the number of points
    numPointsSlider = new JSlider (javax.swing.SwingConstants.HORIZONTAL,
    3, 100, 11);
    numPointsSlider.addChangeListener (new javax.swing.event.ChangeListener () {
    public void stateChanged (javax.swing.event.ChangeEvent evt) {
    numPointsSliderStateChanged (evt);
    content.add(numPointsSlider, java.awt.BorderLayout.SOUTH);
    private void numPointsSliderStateChanged (javax.swing.event.ChangeEvent evt) {
    numPoints = numPointsSlider.getValue();
    makePolygons();
    repaint();
    public static class ScrambledPanel extends JPanel{           
    public void paintComponent(Graphics g){
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D) g;
    // First set the scaling to fit the window
    Dimension size = getSize();
    int Xwid = (int) (0.95 * size.width);
    int Ywid = (int) (0.95 * size.height);
    // First draw the segments
    g2.setColor(Color.red);
    for(int i = 0; i < numPoints; i++)
    g2.drawLine((int) (Xwid * x[B[i]]),
    (int) (Ywid * y[B[i]]),
    (int) (Xwid * x[B[(i+1) % numPoints]]),
    (int)(Ywid * y[B[(i+1) % numPoints]]));
    // Now draw the points
    for(int i = 0; i < numPoints; i++){
    g2.fillRect((int) (Xwid * x) - POINTWID,
    (int) (Ywid * y[i]) - POINTWID,
    2*POINTWID + 1, 2*POINTWID + 1);
    public static class SimplePanel extends JPanel{
    public void paintComponent(Graphics g){
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D) g;
    // First set the scaling to fit the window
    Dimension size = getSize();
    int Xwid = (int) (0.95 * size.width);
    int Ywid = (int) (0.95 * size.height);
    // First draw the segments
    g2.setColor(Color.red);
    for(int i = 0; i < numPoints; i++)
    g2.drawLine((int) (Xwid * x[C[i]]),
    (int) (Ywid * y[C[i]]),
    (int) (Xwid * x[C[(i+1) % numPoints]]),
    (int)(Ywid * y[C[(i+1) % numPoints]]));
    // Now draw the points
    for(int i = 0; i < numPoints; i++){
    g2.fillRect((int) (Xwid * x[i]) - POINTWID,
    (int) (Ywid * y[i]) - POINTWID,
    2*POINTWID + 1, 2*POINTWID + 1);

    Hi I am sorry I could explain you properly . Ok
    My program gives me a polygon(as you can see when u
    run this program)But the polygon is a non simple
    polygon.So to make this polygon we must remove all
    the crossings betweeen edges in the polygon.The
    algorithm which i gave will remove all the crossings
    and make the polygon simple.You did not give an algorithm!
    SO my job is to take the
    existing code and implement the algorithm for this
    program in the Createsimpelpolygon() function. For
    this First the program must find whether two edges
    cross if they cross then swap the vertices like
    replace AB & CD with AC & BD or AD & BC.Which ever
    keeps the polygon closed . Still not entirely clear to me. You cannot just go and replace vertexes from a polygon: that way you'll end up with a different polygon.
    So as we go on we find the
    many crossings and iterate the algorithm on all the
    crossings until we get simple polygon.Like I said: I don't really understand what it is you're after. You did not respond to my suggestions, so I gather it is not what you're after?
    What about Polygon Tessellation (Google for it)? Perhaps that's what you want.
    Also, why do you not create a (or use java.awt's) Point class and a Polygon class which holds a java.util.Set of Point's? Your current code looks rather messy.

  • ITunes won't open, get  EXC_BAD_ACCESS (SIGBUS) code... can anyone help?

    Here's what I get when I try to open iTunes on my iMac. Is there is any info in here that would tell whats going on, or what I need to do to fix it? Thanks very much.
    Process: iTunes [172]
    Path: /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier: com.apple.iTunes
    Version: 10.1.1 (10.1.1)
    Build Info: iTunes-10110401~6
    Code Type: X86 (Native)
    Parent Process: launchd [106]
    Date/Time: 2010-12-18 13:19:34.608 -0600
    OS Version: Mac OS X 10.6.5 (10H574)
    Report Version: 6
    Interval Since Last Report: 69951 sec
    Crashes Since Last Report: 27
    Per-App Interval Since Last Report: 95 sec
    Per-App Crashes Since Last Report: 14
    Anonymous UUID: 614E95DE-9599-4E93-BC26-34F3492271BE
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: 0x000000000000000a, 0x000000001422ed4c
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.CoreFP 0x137f8b8c X46O5IeS + 1295324
    1 com.apple.CoreFP 0x13053790 YlCJ3lg + 237824
    2 com.apple.iTunes 0x00897cf8 0x1000 + 9006328
    3 com.apple.iTunes 0x001295cb 0x1000 + 1213899
    4 com.apple.iTunes 0x00128ad3 0x1000 + 1211091
    5 com.apple.iTunes 0x002f387e 0x1000 + 3090558
    6 com.apple.iTunes 0x002f3c05 0x1000 + 3091461
    7 com.apple.iTunes 0x0043bb82 0x1000 + 4434818
    8 com.apple.iTunes 0x004257b9 0x1000 + 4343737
    9 com.apple.iTunes 0x007fb7be 0x1000 + 8366014
    10 com.apple.iTunes 0x00011204 0x1000 + 66052
    11 com.apple.iTunes 0x0000d3a7 0x1000 + 50087
    12 com.apple.iTunes 0x0000d16d 0x1000 + 49517
    13 com.apple.iTunes 0x00004387 0x1000 + 13191
    14 com.apple.iTunes 0x000040d9 0x1000 + 12505
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x97a6e982 kevent + 10
    1 libSystem.B.dylib 0x97a6f09c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x97a6e559 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x97a6e2fe dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x97a6dd81 pthreadwqthread + 390
    5 libSystem.B.dylib 0x97a6dbc6 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x97a480fa machmsgtrap + 10
    1 libSystem.B.dylib 0x97a48867 mach_msg + 68
    2 com.apple.CoreFoundation 0x94e3437f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x94e33464 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x94e393a4 CFRunLoopRun + 84
    5 com.apple.iTunes 0x0000c12f 0x1000 + 45359
    6 libSystem.B.dylib 0x97a7585d pthreadstart + 345
    7 libSystem.B.dylib 0x97a756e2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x97a760a6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x97a75d62 pthread_condwait + 1191
    2 libSystem.B.dylib 0x97a779f8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iTunes 0x00025564 0x1000 + 148836
    4 com.apple.iTunes 0x000249f1 0x1000 + 145905
    5 libSystem.B.dylib 0x97a7585d pthreadstart + 345
    6 libSystem.B.dylib 0x97a756e2 thread_start + 34
    Thread 4: com.apple.CFSocket.private
    0 libSystem.B.dylib 0x97a670c6 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x94e73c83 __CFSocketManager + 1091
    2 libSystem.B.dylib 0x97a7585d pthreadstart + 345
    3 libSystem.B.dylib 0x97a756e2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x1422ed4c ebx: 0xbffdf470 ecx: 0x137f8b80 edx: 0x6d528562
    edi: 0xbffdf470 esi: 0xbffdf46c ebp: 0xbffe01f8 esp: 0xbffdf440
    ss: 0x0000001f efl: 0x00010212 eip: 0x137f8b8c cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x1422ed4c
    Binary Images:
    0x1000 - 0xdd9fd7 com.apple.iTunes 10.1.1 (10.1.1) <532D8950-D948-92AA-DEAA-49831B96E327> /Applications/iTunes.app/Contents/MacOS/iTunes
    0xfe4000 - 0xfe9ff7 com.apple.iPod 1.6 (17) <4CCD2720-D270-C0D2-1E14-1374779C2401> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0xfef000 - 0x107bffb com.apple.iTunes.iPodUpdater 9.2 (9.2) <D2A36BFD-75DE-F33F-92DD-8D0E07F87C3E> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
    0x10d0000 - 0x10eeff7 +libgnsdk_musicid.1.8.2.dylib 1.8.2 (compatibility 1.8.2) /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.8.2.dylib
    0x10fb000 - 0x11bdfeb +libgnsdk_sdkmanager.1.8.2.dylib 1.8.2 (compatibility 1.8.2) /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.8.2.dylib
    0x11d4000 - 0x1212fff +libgnsdk_submit.1.8.2.dylib 1.8.2 (compatibility 1.8.2) /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.8.2.dylib
    0x1217000 - 0x1498fe2 +libgnsdk_dsp.1.8.2.dylib 1.8.2 (compatibility 1.8.2) /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.8.2.dylib
    0x14c1000 - 0x1501ff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x17cf000 - 0x17d4ff7 com.apple.QuartzComposer.iTunesPlugIn 1.2 (16) <8511A037-AFDE-5D1A-67DA-1B4837432D85> /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle/Contents/MacOS/Quartz Composer Visualizer
    0x2363000 - 0x2418fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x25ef000 - 0x25f0ff7 com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x25f5000 - 0x25f9ff3 com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <F402CF88-D96C-42A0-3207-49759F496AE8> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x27ef000 - 0x27f5ffb com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <82BFF5E9-2B0E-FE8B-8370-445DD94DA434> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x13000000 - 0x1422ffeb com.apple.CoreFP 1.10.15 (1.10.15) <A7E0D7BF-384F-AD41-7830-4C100562E87A> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
    0x18157000 - 0x181c5fe7 com.apple.mobiledevice 416 (416) <7A99C264-894A-19BA-B574-6ABFDE2E02C9> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x18200000 - 0x18226fff libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <9203FADE-F4F2-2245-A32E-BD88819D314D> /usr/lib/libssl.0.9.7.dylib
    0x1872e000 - 0x1890cff3 com.apple.audio.codecs.Components 2.0.2 (2.0.2) <8B43D24A-277D-5F42-8741-FC8736C44162> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x70000000 - 0x700cbff3 com.apple.audio.units.Components 1.6.3 (1.6.3) <5DA35A22-1B05-6BD3-985A-26A7A2CD6289> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <39AC3185-E633-68AA-7CD6-1230E7F1CEF4> /usr/lib/dyld
    0x90003000 - 0x900cdfef com.apple.CoreServices.OSServices 357 (357) <3A26F553-722D-3536-EEDE-FB41FCDAA7FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x900ce000 - 0x9012bff7 com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9012c000 - 0x9015dff7 libGLImage.dylib ??? (???) <78F59EAB-BBD4-7366-CA84-970547501978> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9015e000 - 0x902e0fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <35DB7644-0780-D2AB-F6A9-45F28D2D434A> /usr/lib/libicucore.A.dylib
    0x902e1000 - 0x9064cff7 com.apple.QuartzCore 1.6.3 (227.34) <CC1C1631-D8D1-D416-171E-A1683274E479> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90694000 - 0x9070dff7 com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9070e000 - 0x90b24fef com.apple.RawCamera.bundle 3.5.0 (551) <C9970A79-B1D4-60B0-68C4-01FADDE2E0E3> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x90b25000 - 0x90b4dff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x90b4e000 - 0x90b55ff3 com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90b9f000 - 0x90c1ffeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90c20000 - 0x90c53ff7 com.apple.AE 496.4 (496.4) <C73D124C-C722-41D8-3465-4CE0D0BA9307> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90ce0000 - 0x90d21ff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <16DAE1A5-937A-1CA2-D98F-2AF958B62993> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90d83000 - 0x90f65fff com.apple.imageKit 2.0.3 (1.0) <B4DB05F7-01C5-35EE-7AB9-41BD9D63F075> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90f66000 - 0x90fc0fe7 com.apple.CorePDF 1.3 (1.3) <EA168671-F44F-BFE4-AA7D-3801DA29A650> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x90fc1000 - 0x90fe7ffb com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x90fe8000 - 0x9101afe3 libTrueTypeScaler.dylib ??? (???) <6E9D1A50-330E-F1F4-F93D-9ECC8A61B21A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9101b000 - 0x9101bff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9101c000 - 0x9180b557 com.apple.CoreGraphics 1.545.0 (???) <1AB39678-00D5-FB88-3B41-93D78348E0DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x91843000 - 0x91ab6fe7 com.apple.Foundation 6.6.4 (751.42) <ACC0BAEB-C590-7052-3AB2-86C207C3D6D4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91ab7000 - 0x91ab8ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x91ab9000 - 0x91ac2ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91ac3000 - 0x91ba0ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91c80000 - 0x91c88ff7 com.apple.DisplayServicesFW 2.3.0 (283) <48D94761-7340-D029-99E3-9BE0262FAF22> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x91cca000 - 0x91cdeffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91cdf000 - 0x91e22fef com.apple.QTKit 7.6.6 (1756) <4D809734-4E1B-8E18-C825-86C5422FC3DC> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91f2f000 - 0x91faafff com.apple.AppleVAFramework 4.10.12 (4.10.12) <89C4EBE2-FE27-3160-0BD1-D0C2ED5F3605> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x91fab000 - 0x923e0ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x923e1000 - 0x9241fff7 com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92420000 - 0x9242eff7 com.apple.opengl 1.6.11 (1.6.11) <286D1BC4-4CD8-3CD4-F723-5C196FE15FE0> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92437000 - 0x92441ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92442000 - 0x92453ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x924d1000 - 0x9256cff7 com.apple.ApplicationServices.ATS 4.4 (???) <ECB16606-4DF8-4AFB-C91D-F7947C26040F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9256d000 - 0x925e4ff3 com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x925e5000 - 0x925e5ff7 com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x926a8000 - 0x926a8ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x926a9000 - 0x926f2fe7 libTIFF.dylib ??? (???) <AC1FC806-F7F4-174B-375F-FE5D6008666C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92856000 - 0x92906ff3 com.apple.ColorSync 4.6.3 (4.6.3) <0354B408-665F-8B3F-87FF-64E6322276F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92990000 - 0x929cdff7 com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x929ee000 - 0x92c19ff3 com.apple.QuartzComposer 4.2 ({156.28}) <08AF01DC-110D-9443-3916-699DBDED0149> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x92c1a000 - 0x92f3aff3 com.apple.CoreServices.CarbonCore 861.23 (861.23) <B08756E4-32C5-CC33-0268-7C00A5ED7537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92f42000 - 0x92f42ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92f43000 - 0x9314afeb com.apple.AddressBook.framework 5.0.3 (875) <759B660B-00F6-F08C-37CD-69468C774B5E> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9314b000 - 0x93b96ff7 com.apple.WebCore 6533.19 (6533.19.4) <DFCF1BC1-8BF3-E13E-F11B-C98CB36560FD> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x93bb9000 - 0x93c1dffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93c1e000 - 0x93d4dfe3 com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <0A0F68E5-4806-DB51-764B-D97554B801AD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93d4e000 - 0x93da6fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x93da7000 - 0x93da7ff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93e20000 - 0x93e20ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93e21000 - 0x93e33ff7 com.apple.MultitouchSupport.framework 207.10 (207.10) <E1A6F663-570B-CE54-0F8A-BBCCDECE3B42> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x93e3c000 - 0x94d8efef com.apple.QuickTimeComponents.component 7.6.6 (1756) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94d8f000 - 0x94d9aff7 libGL.dylib ??? (???) <48405993-0AE9-292B-6705-C3525528682A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x94da0000 - 0x94df6ff7 com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x94df7000 - 0x94f72fe7 com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94fa6000 - 0x94fa8ff7 com.apple.securityhi 4.0 (36638) <E7D83480-77BB-72F9-72F3-AEE198CE589F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94fa9000 - 0x94fb9ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fba000 - 0x950bbfe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <ED8E45C6-B078-15E8-938D-99D8FD1EAE64> /usr/lib/libxml2.2.dylib
    0x950bc000 - 0x95126fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x95127000 - 0x95133ff7 libkxld.dylib ??? (???) <F0E915AD-6B32-0D5E-D24B-B188447FDD23> /usr/lib/system/libkxld.dylib
    0x95134000 - 0x95134ff7 com.apple.Carbon 150 (152) <2539A94A-34D9-45CB-8F3E-AD53149E0BD5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95135000 - 0x955eeffb com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x955ef000 - 0x956f1fef com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x956f2000 - 0x956f9ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <C43D8F35-D0DB-37F3-5058-A8308A377303> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x956fd000 - 0x957d8feb com.apple.DesktopServices 1.5.9 (1.5.9) <CED00AC1-924B-0E45-7D5E-1CEA8929F5BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x957d9000 - 0x957dffff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x957e0000 - 0x957ffff7 com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9584e000 - 0x95851ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95852000 - 0x95891ff7 com.apple.ImageCaptureCore 1.0.3 (1.0.3) <7E02D104-F31C-CF72-71B4-DA5DF7B48337> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x9589d000 - 0x958a8ff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <CB2510BD-A5B3-9D90-5917-C73F6ECAC913> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x958a9000 - 0x958efff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x958f0000 - 0x9596afff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <F7C9B01D-45AD-948B-2D26-9736524C1A33> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95979000 - 0x95983fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95984000 - 0x959b4ff7 com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x959b5000 - 0x95ae1ffb com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x95ae2000 - 0x95c10fe7 com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95c11000 - 0x95c21ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x95c22000 - 0x95c26ff7 libGFXShared.dylib ??? (???) <C3A805C4-C0E5-B300-430A-7E811395CB8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x95c46000 - 0x95ceeffb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95d5e000 - 0x95d76ff7 com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x95d77000 - 0x95e2dff7 libFontParser.dylib ??? (???) <33F62EE1-E457-C6FD-369E-E86745B94A4B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x95e2e000 - 0x95e71ff7 libGLU.dylib ??? (???) <F8580594-0B38-F3ED-A715-CB3776B747A0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95e72000 - 0x95eadfeb libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x95eae000 - 0x95efeff7 com.apple.framework.familycontrols 2.0.1 (2010) <41DD36DE-1A3C-7D2E-CF02-520091C2B71A> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x95eff000 - 0x95f4cfeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x95f4d000 - 0x96246fef com.apple.QuickTime 7.6.6 (1756) <F08B13B6-31D7-BD18-DA87-A0CDFCF13B8F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96247000 - 0x96248ff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <BE4C2495-B758-AD22-DCC0-56A6791E948E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x96249000 - 0x96280fe7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7DCB5938-3140-E71A-92BD-8C242F30C8F5> /usr/lib/libssl.0.9.8.dylib
    0x96281000 - 0x96697ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96698000 - 0x96699ff7 com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9669a000 - 0x96875ff3 libType1Scaler.dylib ??? (???) <A7AB841A-3F40-E0B8-ADDD-44014C7287C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x968b5000 - 0x968d0ff7 libPng.dylib ??? (???) <E14178E0-B92D-94EA-DACB-04F346D7534C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x968d1000 - 0x9696efe3 com.apple.LaunchServices 362.1 (362.1) <997D57B9-F04E-344E-924D-16D184A21662> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96a64000 - 0x96a79fff com.apple.ImageCapture 6.0.1 (6.0.1) <E7ED2AC1-834C-A44E-531E-EC05F0496DBF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x96aef000 - 0x96af2fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x96af3000 - 0x96c2aff7 com.apple.CoreAUC 6.04.04 (6.04.04) <050D9D16-AAE7-3460-4318-8449574F26C7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x96c2b000 - 0x96cc3fe7 edu.mit.Kerberos 6.5.10 (6.5.10) <DC19F49B-184E-FD0F-13F8-3A31924A3B66> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96cda000 - 0x96ce7ff7 com.apple.NetFS 3.2.1 (3.2.1) <94A52A6D-F071-09D7-E80F-F633F17233FE> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x96ce8000 - 0x96d6affb SecurityFoundation ??? (???) <A8D248DE-8670-970D-39E3-A9738CFDBEE1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x96e1a000 - 0x9707dfef com.apple.security 6.1.1 (37594) <1949216A-7583-B73A-6112-4D55CA5852E3> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9707e000 - 0x970a0fef com.apple.DirectoryService.Framework 3.6 (621.9) <F2EEE9D7-D4FB-14F3-E647-ABD32754F557> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x970a1000 - 0x970a4ff7 libCoreVMClient.dylib ??? (???) <1F738E81-BB71-32C5-F1E9-C1302F71021C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x970be000 - 0x970c3ff7 com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x970c4000 - 0x97156fe7 com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x97157000 - 0x9715bff7 libGIF.dylib ??? (???) <DA5758A4-71B0-DD6E-7402-B7FB15387569> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x971a5000 - 0x97214ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x97215000 - 0x97220ff7 com.apple.CrashReporterSupport 10.6.5 (252) <1781CBE9-F2F4-0272-B434-124250CD48B5> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x97221000 - 0x972cbfe7 com.apple.CFNetwork 454.11.5 (454.11.5) <D8963574-285A-3BD6-6B25-07D39C6F67A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x972cc000 - 0x972cfff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B624AACE-991B-0FFA-2482-E69970576CE1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x975ca000 - 0x975eeff7 libJPEG.dylib ??? (???) <46AF3A0F-2B8D-87B9-62D4-0905678A64DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x976a0000 - 0x97701fe7 com.apple.CoreText 3.5.0 (???) <BB50C045-25F5-65B8-B1DB-8CDAEF45EB46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x97702000 - 0x97770ff7 com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x977a6000 - 0x977eaff3 com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x977eb000 - 0x979e8ff7 com.apple.JavaScriptCore 6533.19 (6533.19.1) <85A6BFDD-CBB6-7490-748D-8EA8B9B7FDD8> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x979ef000 - 0x97a03fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x97a04000 - 0x97a46ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x97a47000 - 0x97beeff7 libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    0x97bef000 - 0x97da8feb com.apple.ImageIO.framework 3.0.4 (3.0.4) <C145139E-24C4-5A3D-B17C-809D528354B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x97dd3000 - 0x980f7fef com.apple.HIToolbox 1.6.3 (???) <169FA4B8-0847-D42E-8240-ECC52C0B8DD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x980f8000 - 0x9813cfe7 com.apple.Metadata 10.6.3 (507.12) <8632684D-ED4C-4CE1-4C53-015DFF10D873> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9813d000 - 0x9814bfe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x9828f000 - 0x982d6ffb com.apple.CoreMediaIOServices 133.0 (1158) <150A5F22-E7EC-9E8E-3B68-BAD75280EFC3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x9831c000 - 0x9842bfe7 com.apple.WebKit 6533.19 (6533.19.4) <A942073C-83DF-33ED-3D01-A24DE8AEAB3D> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x98533000 - 0x9856bff7 com.apple.LDAPFramework 2.0 (120.1) <131ED804-DD88-D84F-13F8-D48E0012B96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9856c000 - 0x9861aff3 com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9861b000 - 0x986c8fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <C8925910-B927-968B-4B71-D83A4CEF8646> /usr/lib/libobjc.A.dylib
    0x986d4000 - 0x9878dfe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x9878e000 - 0x987b5ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x987b6000 - 0x987d2fe3 com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x987d3000 - 0x988d7fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x988d8000 - 0x988daff7 libRadiance.dylib ??? (???) <10048B4A-2AE8-A4E2-21B8-C6E7A8C5B76F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x988db000 - 0x988dcff7 libScreenReader.dylib ??? (???) <EF75A0A6-47D8-4E6B-324A-F779C9F8F807> /usr/lib/libScreenReader.dylib
    0x988dd000 - 0x98920ff7 com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x98b01000 - 0x98b41ff3 com.apple.securityinterface 4.0.1 (37214) <43CE8A8D-64E5-F36E-4900-FBB1BD6557F1> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x98b52000 - 0x99432ff7 com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x99520000 - 0x99571ff7 com.apple.HIServices 1.8.1 (???) <51BDD848-32A5-2425-BE07-BD037A89630A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x99677000 - 0x99783ff7 libGLProgrammability.dylib ??? (???) <8B308FAE-843F-EE76-0254-3374CBFFA7B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x997c6000 - 0x998a2ff3 com.apple.DiscRecording 5.0.8 (5080.4.1) <C064D05B-5191-2AC9-43B4-42DF0A466250> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x998a3000 - 0x998dcff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <D6F24434-8217-DF72-2126-1953080680D7> /usr/lib/libcups.2.dylib
    0x998dd000 - 0x998fdfe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x998fe000 - 0x9993bff7 com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x99947000 - 0x9994bff7 IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9994c000 - 0x9994cff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9994d000 - 0x9994dff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9994e000 - 0x9996ffe7 com.apple.opencl 12.3 (12.3) <DEA600BF-4F54-66B5-DB2F-DC57FD518543> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    Model: iMac6,1, BootROM IM61.0093.B07, 2 processors, Intel Core 2 Duo, 2.16 GHz, 3 GB, SMC 1.10f2
    Graphics: NVIDIA GeForce 7600 GT, NVIDIA GeForce 7600 GT, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST3500641AS Q, 465.76 GB
    Parallel ATA Device: MATSHITADVD-R UJ-85J
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
    USB Device: FreeAgent Go, 0x0bc2, 0x2120, 0xfd100000
    USB Device: Generic USB Hub, 0x058f (Alcor Micro, Corp.), 0x9254, 0x3d100000
    USB Device: Optical USB Mouse, 0x046d (Logitech Inc.), 0xc016, 0x3d130000
    USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0x3d110000
    USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0x3d112000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x7d100000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8240, 0x7d200000
    FireWire Device: > LaCie d2 DVD-RW Firewire, LaCie Group SA, Up to 400 Mb/sec

    I have the same problem recently.
    I emailed them, and a tech/support person emailed me back and told me it was a potential third party app causing it.
    She said if you have any: web accelerators, firewall, or other stuff running it would cause it, but I tried to disable and unistall programs and still the same problem.
    Also I tried to uninstall and start fresh and same deal, even with a new stand alone version, same problem.
    I keep getting a bad kernel error when it crashes, check out here:
    Exception Type: EXCBADACCESS (SIGBUS)
Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000096
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    And I have no idea how to fix? Can anyone help?
    

Wes

  • Batch processing problems-can anyone help?

    Setup: Quadcore, 4GB RAM, 4 internal drives all with plenty of space, Leopard OS, latest version.
    Software: CS4 with Photoshop Extended; all updates installed. I also have CS3 installed; only use Bridge and PS in both apps.
    Problem: Working in CS4. All edits/crops/corrections done in the Camera Raw window; all edits saved and viewable in Bridge. However, when I use Batch from the Tools dropdown (Tools > Photoshop > Batch), and check all the usual places, select an Action, select a Destination, and hit "Go", the results are totally weird. Some images process as expected, but many are at least two stops overexposed.
    All individual files will Open, and can be Saved As manually; all works fine. That is in fact how my assistant and I got the job done tonight. The Batch Action is simplicity itself: Open, Save As (JPEG level 9), and Close file—but if I run Batch on the same files that can be opened and Saved As perfectly, it all goes crazy; three quarters of the files are totally overexposed, in blocks (10–25, roughly), and at random.
    I have used the Ctrl + Alt + Shift after opening Bridge; I have run Cocktail; and lit the right incense. But this still will not work properly! Can anyone help???

    Batching the same files in CS3 works perfectly, in terms of the processed JPEGs at least being correctly exposed, but the CS4-only edits (like the healing brush) are not recognised, nor are many, tho' not all, of the crops.
    I have decided to deactivate and uninstall, then reinstall CS4, after upgrading to Snow Leopard. Usually, I wait for a few months for others to report on OS update interactions with CS and FCP, but since CS4 as installed was useless and I had done the usual resets of Preferences without any change to Batch Processing's reliability, I felt I could not be worse off.
    So, after upgrading to Snow Leopard, I will reinstall CS4 (and all apps this time, rather than just PS and Bridge, as I usually do) in case there are soime weird unintended consequences of a Custom install.
    Very frustrating and time-consuming, and I wonder what I might have done to create this problem—seeing as no one commented, I can only assume that this is an unique experience.
    I will report back today, hopefully.

  • Saving Problem, can anyone help me?

    To All,
    I am having a severe problem with saving my GUI.
    Due to the fact i have internal frames, i am using JDesktopPane, and i am trying to save the whole desktop, so that when i load it, i can add this desktop to the GUI again.
    I do this action from the menu "save" and "open" option, but when i do it, there are a lot of exceptions, and does not work.
    Am i doing this the right way? If not can anyone help me?
    Thank You.

    There are a lot of issues with saving off Swing stuff. Note all of the notes about swing serialization only be suitable for short term uses. Its hard to tell from your post, but it sounds like you might be trying to serialize it. The thing to do is to mark all of your swing stuff as tranient, and/or make it externalizable. Then, you save any important data and reset it when you readExternal (things like window position and so on) its a pain , but it should work and you will have more assurance that things saved will work in later releases. You can try different vairations of this, but I suspect the major errors have to do with you trying to save off iomages and so on. Really better to rebuild this stuff then try to unserailize it. More effecient too!

  • Major problem -  Can anyone help?

    Hi,
    A couple of months ago I was downloading the OS update and my computer was turned off (at the plug) by mistake. Since then I can't load up properly in my own user (although other users can access theirs OK).
    All I get is that the wallpaper loads on the desktop and I get a spotlight icon in the top right of the screen and the cursor wheel just spins - and that's it.
    I can't use it or access my files. Can anyone help by telling me how I can:
    a, fix the problem of loading up or
    b, access my files from another user when they don't have priveleges.
    Any help is appreciated as I have some important files I need to get hold of and can't.
    Mac Mini   Mac OS X (10.4.7)  

    Hi,
    A couple of months ago I was downloading the OS
    update and my computer was turned off (at the plug)
    by mistake. Since then I can't load up properly in my
    own user (although other users can access theirs
    OK).
    All I get is that the wallpaper loads on the desktop
    and I get a spotlight icon in the top right of the
    screen and the cursor wheel just spins - and that's
    it.
    I can't use it or access my files. Can anyone help by
    telling me how I can:
    a, fix the problem of loading up or
    b, access my files from another user when they don't
    have priveleges.
    Any help is appreciated as I have some important
    files I need to get hold of and can't.
    Mac Mini Mac OS X (10.4.7)
    Login as a different user, then find the folder on the hard drive where your files are, select this folder in the Finder window and "Get Info" on it from the "File" menu. In the Get Info window go down where it says "Ownership & Permissions" and select the "Details". Change the owner of that folder to the name of the user that you are logged in as. You may need to enter the administrator password to authenticate, this will give you full control (read/write) access to the files inside the folder as admin. Repeat these steps for each folder that has items you want to retrieve. After you retrieve the files you want, you should just do a re-install of the Operating system from the install disk. The system is most likely corrupt and beyond repair since the update was halted by a power failure.
    Good Luck!

  • Jukebox Zen Xtra problems - can anyone help

    Hi
    I have a 30G Xtra Jukebox. Of the original memory I have about 7.5 G free. Problem is I cannot seem to use it. Everytime I transfer from media source the track number goes up but the memory counter stays the same. When I unplug the track are simply not there.
    I have reformatted and reloaded, all fine until I want to add extra then the same problem. I have updated the firmware, cleaned the disk. All to no avail. Is there a maximum number of tracks that I can have, I thought that as long as I have memory I can keep recording?
    Can anyone help. thanks.........................

    The limit is around 6,000 tracks, but varies with the amount of tag data. Lots of tag data and it will be less.

  • Time Machine interface problems-Can anyone help?

    I can only enter Time Machine through its file folder. The graphic interface only opens a blank window. Weird. Can anyone help?

    I'm having the same problem.

  • Connecion problems, can anyone help?

    Hello,
    Ive recently brought an 8900 from ebay, im with orange in the uk and have the blackberry addon data usage thingy. I've been usign it for a while now, and the connections seems really really slow. So kinda guessed, well GPRS sucks. But I've recently went into the browser settings, and switched from the default Internet to Orange World (wap) and this is like a zillion times faster. On the default it can take up to 2-3minutes for the browser to get off requesting and start loading the page, even on just google, yet on the orange world zip it loads in seconds. Whats the difference here? All my apps run slowly, presuming with the default settings, is there anyway to get these speeds up to that of the wap setting?
    Can't understand why the default internet settings suck so badly. Have just updated all my software, done a reboot from scratch, redownloaded my service books and nothing its still the same. Can anyone help?
    Many thanks,
    Mike

    Have you tried restart your computer and unplug your iPhone from the cable? I sometimes have this problems and I was told to unplug and re-plug the iPhone.
    Hope it helps.

  • HT203175 My ipod touch driver wasnt correctly installed and now i have an error code-1. Can anyone  help?

    I just recently purchased an ipod touch second generation and when I sync it with my laptop (hp pavillion g series with windows seven) and it said the driver didnt successfully sync or something like that. Can anyone help?

    Does the iPod connect to other networks?
    Does the iPod see the network?
    Any error messages?
    Do other devices now connect?
    Did the iPod connect before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Printing problems, can anyone help? i feel so lost

    I upgraded to tiger then the automatic software update took it up to 10.4.3
    everything seemed fine til i tried to print on my trusty canon s330 printer...i just couldnt locate a driver for it
    so i clicked on any of the ones in the pop up in printer set up browser menu and it did actually print
    but only very faintly
    so i clicked on another and it printed full colour but only at A5 (and yes i changed all the page sizes everywhere i can think of)
    no luck...
    so i have spent the last two days trying to print and have downloaded latest drivers and searched and searched on forums like this and tried various things and still no luck
    i urgently needed to print some work and was desperate so went out and bought another canon thinking its about time i had a new one and i really love canon printers
    got it out the box, downloaded the software and guess what??? the same thing is happening
    it will print either faintly in b&w despite what is on screen
    and only in a5 despite selecting a4
    i could cry i really could
    i can get my printer to show in the printer browser box throught the set up utility but it doesnt show my model to select a driver and you have to click on one of them...
    i click on more printers and i get a spinning wheel and then nothing
    am i doing something inherently and obviously wrong?
    i tried reinstalling the tiger upgrade and just upgrading the canon printers through custom install but no joy
    my mac has been on and restarted more times than i can bear
    i rang canon and they said 'open the print center' in utilities but there isnt one???
    i ended up stopping the call because i was not getting anywhere
    i have been using macs for over 8 years, I can usually sort everything
    i am perplexed
    please please you lovely people can anyone help???
    Happy new year from Louise

    hmmm, i didnt have to install a driver, it seems, after 3 days of hair pulling and teeth gnashing I realised that the tiger would recognise the printer without me doing anything
    but it took me a long time to get there
    i couldn't see the wood for the trees
    i just thought i would update my posting incase anyone else is suffering
    i feel a bit stupid actually, especially after I lost my rag at the Canon helpline...

Maybe you are looking for

  • My safari does zoom in in some pages

    Hello, I have a MacBook Pro mid 2012, with OS X Yosemite version 10.10.2. My Safari is version 8.0.3 and I'm having some troubles with it. Sometimes when I open a web page, it appears zoomed in, with no explanaition! It doesn't let me zoom out, I jus

  • Ical error -14

    I think this is a client side problem with iCal 4.0.1 in OS 10.6.2, because I'm able to use my exchange calendar via iCal on other machines. The broken machine is stuck in an error loop: +The account "Exchange" currently can't be modified. To discard

  • Address book sync with 10.7.3 server - problem

    I have an 10.7.3 server to that I have 4 Macs, 2 iPhones and 1 iPad connected. I have enabeld Address book and iCal on the server, this works (after much headache). It works great for all devices except one of the Macs. It has recently been updated t

  • VGA Bios states "Engineering Release"

    Hi Folks, I recently installed the K7N2G-LISR MB for a family member. After delivery I noticed the message in the VGA Bios of "Engineering Sample, not for production use" in the POST. Now, before I get my shorts in a twist, is this refering to the MB

  • Ugliest bug: under some conditions app crashes when activated from push notification. Any workaround?

    Hi,  I encountered the following serious bug.  Steps to reproduce: - start the app which uses "Fast App Resume" mode - block the phone.  - ensure the app is tombstoned. This can be done by using "Tombstone upon deactivation" VS option. - send the toa