Problem determining stage coordinates immediately after scrolling

Hello all,
I have a graphical component and I am trying to obtain it's coordinates relative to the stage by using the localToGlobal or contentToGlobal methods.
My problem is when scrolling a Container, these methods do not return the correct values, but return the old unshifted coordinates of the graphical component. Later, after everything seems stable, when trying to use the methods they return correct value so this means at the time where I use them after scrolling
not all information necessary in computing have been commited.
For the case of the Container class I have investigated and although it passes through the scrollChildren method, the computation is wrong.
For the case of the Tree component when scrolling with the wheel, the methods return correct value, but when pressing the arrow button of the scroll-bar the methods return incorrect value.
Until now I have tried to listen the scroll and the update complete events when they are dispatched but without any success.
So my problem is that after scrolling I would need to know a moment(event to be listened or something else) that I can call the methods and the output to be ok.I would like the final solution to be uniform.
Did anybody else had this problem? What solution do you recommend me.
Thank you all for your time and patience,
Claude Bur.

Hello,
I have tested the ENTER_FRAME event and indeed when computing stage coordinates using those methods, correct results are returned.
I have a component that it "attaches" itself near another component and my component must be a child of the stage. There problem with using the ENTER_FRAME event is that although it is positioned correctly near the other component, the user can observe with the eye a slight delay. I interpret it as because in the ENTER_FRAME phase the screen is allready in a final drawn state, I just react to a screen "after" draw event and not to a screen "before" draw event, which would give me the posibility to alter it by making my own changes.
I have made a test adding those 20-50 events to be listened and I have observed that the first moment where the computation of the stage coordinates is correct is the ENTER_FRAME event. Unless there are other events I have not listened it seems there is no uniform solution to determine the correct
stage coordinates after a scroll and before the "drawing" to be made on the screen.
Have you other sugestions please?
Thank you for your time,
Claude Bur.

Similar Messages

  • I have a iPad Keyboard Dock for the iPad 1. I purchase an iPad 2 and the dock worked fine for a week no fit problem none worked. I received a tiny message about  iPad Keyboard Dock it stop working immediately after dismissing message.

    I have a iPad Keyboard Dock for the iPad 1. I purchase an iPad 2 and the dock worked fine for a week no fit problem none worked. I received a tiny message about  iPad Keyboard Dock it stop working immediately after dismissing message.

    Hi and welcome..
    Connect your iPad to your computer. Launch iTunes. Make sure your iPad is recognized in iTunes under Devices on the left.
    Select the Summary tab then click Update.
    Just to make sure your iPad software is up to date.
    Carolyn

  • Tried bit alas did not help. It's too much of a coincidence that I got download then problem immediately after.Still think its Apples fault.Only about 4 of every 10 e mails affected!!!!!

    Tried  bit alas did not help. It's too much of a coincidence that I got  download then problem immediately after.Still think its Apples  fault.Only about 4of every 10 e mails affected!!!!!

    I'd suggest you follow up in the thread you started in regards to the problem rather than starting new topics:
    https://discussions.apple.com/message/24982409#24982409
    If you start a new topic part way through discussing an issue, people don't know what you're referring to. It's also consider impolite to post all in caps in Internet forums, as using caps is considered to be shouting.
    Regards.

  • TS1363 Is anyone else suddenly getting this problem on both iPod & iPad immediately after downloading the last upgrade to iTunes 10.6.1.7?

    Is anyone else suddenly finding that iTunes is not recognising both iPad & iPod when trying to sync via a PC AND that this problem started immediately after downloading the last upgrade to iTunes 10.6.1.7 to said PC? Im loathed to waste time following the recommended steps on the Apple help site to find that the problem is the new iTunes version.

    Your article is for earlier version of iPods.
    You should refer to this article:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538

  • When a contact tries to call me on FaceTime, they are told I'm not available. In settings, it's turned on and I can call them with no problem immediately after they've tried calling me. Any ideas?

    Facetime tells my contacts I'm not available. My FaceTime is turned on in settings and  I'm able to FaceTime them immediately after they've tried calling me. Any ideas what I'm missing? 

    Try going to settings and turning FaceTime off, then back on again.  A hard reset may also help(hold down the power button and the home button together until you see the Apple logo)

  • Why is getLineMetrics inaccurate when using device fonts* or immediately after resizing a TextField?

    1.  We need getLineMetrics to return correct values immediately after changing a TextField's width/height or any property that would affect the layout metrics, withouth having to alter other properties like setting the text to itself (p1.text = p1.text).  Currently, if you change the width of a text field to match the stage width for example, getLineMetrics will not return correct values until the next frame.... UNLESS you set the text property.
    2.  We also need some kind of "stage scaled" event in addition to the "stage resize" event (which only fires when stage scale mode is no_scale), because stage scaling affects the rendered size of device fonts so dramatically that we must call getLineMetrics again.  This is not the case for fonts antialiased for readability, since their size is relatively stable with scaling, as demonstrated by drawing a box around the first line once and then scaling the stage.
    So those are the problems.  The asterisk in the title of this post is there because it seem that TextField.getLineMetrics is accurate with device fonts, but I cannot take advantage of that accuracy without a way to detect when the player is scaled.  I can only confirm its accuracy at a 1:1 scale, since there is no way to recalculate the size of the line rectangle once the player is scaled, aside from setting a timer of some sort which is a real hack not to mention horribly inefficient with no way to detect when the stage has actually be scaled.
    I use device fonts because embedded fonts look terrible and blurred compared to device font rendering.  The "use device font" setting matches the appearance of text in web browsers exactly.  The only way to get embedded/advanced antialiased text in flash to approximate that of the device font look is to primarily set gridFitType to PIXEL instead of SUBPIXEL, and secondly set autokerning to true to fix problems caused by the PIXEL grid fit type.  That ensure strokes are fitted solidly to the nearest pixel, however it still lacks the "ClearType" rendering that device fonts use, which has notable color offset to improve appearance on LCD monitors, rather than the purely grayscale text that flash uses in its subpixel rendering.  Frankly, failure to use device fonts because of API issues, is the only reason why Flash sometimes doesn't look as good as HTML text and why people say text in Flash "looks blurry".  I'm tired of hearing it.  If the player simply dispatched an event when scaled and updated the metrics immediately when any property of the text field that would affect the metrics is changed, then we could all happily use device fonts and Flash text would look great.  As is stands, because of the two problems I mentioned in the opening paragraph, we're stuck dealing with these problems.
    If you create two text fields named "p1" and "p2" for paragraph 1 and 2, populate them with an identical line of text and set one to "use device fonts" and the other to "antialias for readability", then use this code to draw boxes around the first line of text in each of them:
    import flash.text.TextField;import flash.text.TextLineMetrics;graphics.clear();drawBoxAroundLine( p1, 0 );drawBoxAroundLine( p2, 0 );function drawBoxAroundLine( tf:TextField, line_index:int ):void{          var gutter:Number = 2;          var tlm:TextLineMetrics = tf.getLineMetrics( line_index );          graphics.lineStyle( 0, 0x0000ff );          graphics.drawRect( tf.x + gutter, tf.y + gutter, tlm.width, tlm.height );}
    The box surrounding the line of text in the "use device fonts" box is way off at first.  Scaling the player demonstrates that the text width of the device font field fluctuates wildly, while the "antialias for readability" field scales with the originally drawn rectangle perfectly.  That much is fine, but again to clarify the problems I mentioned at the top of this post:
    Since the text width fluctuates wildly upon player resize, assuming that getLineMetrics actually works on device fonts (and that's an assumption at this point), you'd have to detect the player resize and redraw the text.  Unfortunately, Flash does not fire the player resize event unless the stage scale mode is set to NO_SCALE.  That's problem #1.  And if that's by design, then they should definitely add a SCALE event, because changes in player scale dramatically affect device font layout, which requires recalculation of text metrics.  It's a real issue for fluid layouts.
    The second problem is that even when handling the resize event, and for example setting the text field width's to match the Stage.stageWidth property, when the text line wraps, it's not updated until the next frame.  In other words, at the exact resize event that causes a word to wrap, calling getLineMetrics in this handler reports the previous line length before the last word on the line wrapped.  So it's delayed a frame.  The only way to get the correct metrics immediately is basically to set the text property to itself like "p1.text = p1.text".  That seems to force an update of the metrics.  Otherwise, it's delayed, and useles.  I wrote about this in an answer over a year ago, showing how sensitive the text field property order is: http://stackoverflow.com/a/9558597/88409

    As I've noted several times, setting the text property to its own current value should not be necessary to update the metrics, and in some subclasses of text field, setting a property to its own value is ignored as the property is not actually changing and processing such a change would cause unnecessary work which could impact application performance.  Metrics should be current upon calling getLineMetrics.  They are not.  That's the problem.
    From a programming perspective, having to set the text property (really "htmlText" to preserve formatting) to itself to update metrics is almost unmanagable, and doesn't even make sense considering "htmlText" is just one of a dozen properties and methods on a TextField that could invalidate the layout metrics (alignment, setTextFormat, width, height, antiAliasMode, type, etc.), and I would have to override every one of those properties so that I could set htmlText = htmlText.  Using such a subclass isn't even possible if I want to use the Flash IDE to add text fields to the stage.  I would have to iterate over the display list and replace all existing fields with my subclass, which also isn't a good workaround because there's no way to update any and all variable references that may have been made to those instances.
    Frome what I've read, the invalide+render event system is unreliable.  My layout framework is similar to that of Windows Forms, and performs layout immediately, with dozens of docking modes and uses suspend and resume layout calls for efficiently resizing multiple child objects in a component.  Certain calculations cannot be aggregated for a render event, because some containers are semi-reflexive, meaning they can expand to fit the child contents while also contraining the child size, depending on whether the contain was resized or the child component was resized, so as a matter of correctness the resizing calcultation must occur immediately when the child resizes, otherwise a top-down pass on the display hierarchy for resizing will not be sufficient.
    As far as waiting until the next frame, no that is not possible, as it will cause one frame to be completely wrong.  If I was dragging the browser window to resize it, it would look terrible as virtually every single frame during the resizing operation would be incorrect.  Also, in the case where a user clicks the maximize or restore button of the web browser, the resizing event will occur exactly once, so if the metrics are not correct when that occurs, there is no recalculation occuring on the next frame, it will just be wrong and sit there looking wrong indefinitely.
    In case it's not obvious by now, this is a web application.  It uses the NO_SCALE stage scaling option, so notification of the event is not actually an issue for me personally.  I was just pointing out that for anyone not using the NO_SCALE option, there is no event in Flash to detect player scale.  What you're suggesting is using a JavaScript event and using the ExternalInterface bridge to send a message, which there is no guarantee whether it will be processed in a timely matter by the player and introduces possible platform inconsistancies, depending on whether the browser has actually resized the Flash interface at that point or what state Flash is in when it tries to recalculate the size of the text.  The browser may send that event to flash before the player is actually resized, so it will be processing incorrect sizes and then resized after the fact.  That's not a good solution.  Flash needs a scale event in addition to a resize event.  I'm really surprised it doesn't have one.  At the very least, the existing resize event should be dispatched reguardless of the stage scale mode, rather than occuring exclusively in the NO_SCALE mode.
    Bottom line is that getLineMetrics needs to return correct values every time it is called, without having to set the "text" property immediately before calling it.  If such a requirement exists, which seems to be the case, then that needs documented in the getLineMetrics method.

  • Kernel panic immediately after connecting Android via USB

    Hi!
    I am getting a kernel panic immediately after I connect my Android phone via MTP. It wasn't happening before (on pre-Yosemite version).
    It may be relevant to know that I installed Samsung Kies before, which installs it's kernel modules, but I removed both modules and software itself since then.
    OS X Yosemite 10.10.1 (14B25)
    MacBook Pro (Retina, 13-inch, Mid 2014)
    2,8 GHz Intel Core i5
    8 GB 1600 MHz DDR3
    Intel Iris 1536 МБ
    Anonymous UUID:  
    8665615D-E61C-C529-9014-C37C6BB9FEB7
    Mon Dec 29 21:37:49 2014
    *** Panic Report ***
    panic(cpu 0 caller 0xffffff800701e80a): Kernel trap at 0xffffff7f8904c728, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffff80ed657000, CR3: 0x0000000249d80038, CR4: 0x00000000001626e0
    RAX: 0x0000000000003ff8, RBX: 0x0000000010533000, RCX: 0x000000000000e078, RDX: 0xffffff80d90f6f89
    RSP: 0xffffff8110f83910, RBP: 0xffffff8110f83940, RSI: 0xffffff8110f83840, RDI: 0x0000000000000000
    R8:  0xffffff7f8905d71d, R9:  0x0000000000000008, R10: 0xffffff8007555a60, R11: 0x0000000000000000
    R12: 0xffffff801acff000, R13: 0x0000000000000009, R14: 0xffffff80ed647020, R15: 0x0000000000003fef
    RFL: 0x0000000000010293, RIP: 0xffffff7f8904c728, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0xffffff80ed657000, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff8110f835c0 : 0xffffff8006f3a811
    0xffffff8110f83640 : 0xffffff800701e80a
    0xffffff8110f83800 : 0xffffff800703a443
    0xffffff8110f83820 : 0xffffff7f8904c728
    0xffffff8110f83940 : 0xffffff7f8904a88e
    0xffffff8110f83980 : 0xffffff7f88fa186f
    0xffffff8110f839b0 : 0xffffff7f88fa91c1
    0xffffff8110f839d0 : 0xffffff7f88fa915d
    0xffffff8110f83a00 : 0xffffff7f88fbd999
    0xffffff8110f83a60 : 0xffffff7f88fb8739
    0xffffff8110f83ab0 : 0xffffff7f88fc250a
    0xffffff8110f83b30 : 0xffffff8007501156
    0xffffff8110f83b60 : 0xffffff800750283b
    0xffffff8110f83bc0 : 0xffffff8007500003
    0xffffff8110f83d00 : 0xffffff8006fea517
    0xffffff8110f83e10 : 0xffffff8006f3e91c
    0xffffff8110f83e40 : 0xffffff8006f235a3
    0xffffff8110f83e90 : 0xffffff8006f33e8d
    0xffffff8110f83f10 : 0xffffff800700a142
    0xffffff8110f83fb0 : 0xffffff800703ac66
    Kernel Extensions in backtrace:
    com.apple.iokit.IOAcceleratorFamily2(156.4)[20DDCE61-E3EC-3CC1-8B79-170CEF2B603A ]@0xffffff7f88f9f000->0xffffff7f8900bfff
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f87724000
    dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f880da000
    com.apple.driver.AppleIntelHD5000Graphics(10.0)[C7C58F5A-B67C-3222-A925-15744468 8E57]@0xffffff7f8901a000->0xffffff7f89078fff
    dependency: com.apple.iokit.IOSurface(97)[B4E2654D-4087-3875-9D59-E899A0A04F0E]@0xffffff7f8 7fe6000
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f87724000
    dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f880da000
    dependency: com.apple.iokit.IOAcceleratorFamily2(156.4)[20DDCE61-E3EC-3CC1-8B79-170CEF2B603 A]@0xffffff7f88f9f000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    14B25
    Kernel version:
    Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    Kernel UUID: 89E10306-BC78-3A3B-955C-7C4922577E61
    Kernel slide:     0x0000000006c00000
    Kernel text base: 0xffffff8006e00000
    __HIB  text base: 0xffffff8006d00000
    System model name: MacBookPro11,1 (Mac-189A3D4F975D5FFC)
    System uptime in nanoseconds: 370997774733658
    last loaded kext at 370920828472959: com.apple.driver.AppleUSBCDC   4.2.2b5 (addr 0xffffff7f8962b000, size 20480)
    last unloaded kext at 370983258406476: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7f8962b000, size 16384)
    loaded kexts:
    org.pqrs.driver.Karabiner   10.5.0
    org.virtualbox.kext.VBoxNetAdp  4.3.14
    org.virtualbox.kext.VBoxNetFlt  4.3.14
    org.virtualbox.kext.VBoxUSB 4.3.14
    org.virtualbox.kext.VBoxDrv 4.3.14
    com.paceap.kext.pacesupport.snowleopard 5.9
    com.apple.filesystems.smbfs 3.0.0
    com.apple.filesystems.autofs    3.0
    com.apple.iokit.IOBluetoothSerialManager    4.3.1f2
    com.apple.driver.AudioAUUC  1.70
    com.apple.driver.X86PlatformShim    1.0.0
    com.apple.driver.AGPM   100.14.37
    com.apple.driver.ApplePlatformEnabler   2.1.0d1
    com.apple.driver.AppleHDA   267.0
    com.apple.driver.AppleUpstreamUserClient    3.6.1
    com.apple.driver.AppleOSXWatchdog   1
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.iokit.IOUserEthernet  1.0.1
    com.apple.driver.AppleBacklight 170.4.12
    com.apple.driver.AppleSMCLMU    2.0.4d1
    com.apple.driver.AppleIntelHD5000Graphics   10.0.0
    com.apple.driver.AppleMCCSControl   1.2.10
    com.apple.Dont_Steal_Mac_OS_X   7.0.0
    com.apple.driver.AppleHWAccess  1
    com.apple.driver.AppleHV    1
    com.apple.driver.AppleCameraInterface   5.23.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.1f2
    com.apple.driver.AppleLPC   1.7.3
    com.apple.driver.AppleIntelFramebufferAzul  10.0.0
    com.apple.driver.AppleUSBTCButtons  240.2
    com.apple.driver.AppleUSBCardReader 3.5.0
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub    705.4.1
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage  2.6.5
    com.apple.driver.AppleAHCIPort  3.0.7
    com.apple.driver.AirPort.Brcm4360   901.19.10
    com.apple.driver.AppleUSBXHCI   705.4.14
    com.apple.driver.AppleSmartBatteryManager   161.0.0
    com.apple.driver.AppleRTC   2.0
    com.apple.driver.AppleACPIButtons   3.1
    com.apple.driver.AppleHPET  1.8
    com.apple.driver.AppleSMBIOS    2.1
    com.apple.driver.AppleACPIEC    3.1
    com.apple.driver.AppleAPIC  1.7
    com.apple.nke.applicationfirewall   161
    com.apple.security.quarantine   3
    com.apple.security.TMSafetyNet  8
    com.apple.driver.AppleBluetoothHIDKeyboard  175.5
    com.apple.driver.IOBluetoothHIDDriver   4.3.1f2
    com.apple.driver.AppleHIDKeyboard   175.5
    com.apple.kext.triggers 1.0
    com.apple.driver.DspFuncLib 267.0
    com.apple.kext.OSvKernDSPLib    1.15
    com.apple.iokit.IOAudioFamily   200.6
    com.apple.vecLib.kext   1.2.0
    com.apple.driver.AppleBacklightExpert   1.1.0
    com.apple.driver.AppleHDAController 267.0
    com.apple.iokit.IOHDAFamily 267.0
    com.apple.iokit.IOSurface   97
    com.apple.driver.X86PlatformPlugin  1.0.0
    com.apple.driver.AppleSMBusController   1.0.13d1
    com.apple.driver.AppleSMC   3.1.9
    com.apple.iokit.IOBluetoothHostControllerUSBTransport   4.3.1f2
    com.apple.iokit.IOBluetoothFamily   4.3.1f2
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.IOPlatformPluginFamily 5.8.0d49
    com.apple.iokit.IOSerialFamily  11
    com.apple.iokit.IONDRVSupport   2.4.1
    com.apple.AppleGraphicsDeviceControl    3.7.21
    com.apple.iokit.IOAcceleratorFamily2    156.4
    com.apple.iokit.IOGraphicsFamily    2.4.1
    com.apple.iokit.IOSCSIBlockCommandsDevice   3.7.0
    com.apple.iokit.IOUSBMassStorageClass   3.7.0
    com.apple.iokit.IOSCSIArchitectureModelFamily   3.7.0
    com.apple.driver.AppleUSBMultitouch 245.2
    com.apple.iokit.IOUSBHIDDriver  705.4.0
    com.apple.driver.AppleUSBMergeNub   705.4.0
    com.apple.driver.AppleUSBComposite  705.4.9
    com.apple.driver.CoreStorage    471
    com.apple.driver.AppleThunderboltDPInAdapter    4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily    4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.iokit.IOAHCIFamily    2.7.0
    com.apple.driver.AppleThunderboltNHI    3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.1
    com.apple.iokit.IO80211Family   700.52
    com.apple.driver.mDNSOffloadUserClient  1.0.1b8
    com.apple.iokit.IONetworkingFamily  3.2
    com.apple.iokit.IOUSBFamily 705.4.14
    com.apple.driver.AppleEFINVRAM  2.0
    com.apple.driver.AppleEFIRuntime    2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily   1.1
    com.apple.security.sandbox  300.0
    com.apple.kext.AppleMatch   1.0.0d1
    com.apple.driver.AppleKeyStore  2
    com.apple.driver.AppleMobileFileIntegrity   1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 389.1
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily  31
    com.apple.driver.AppleFDEKeyStore   28.30
    com.apple.driver.AppleACPIPlatform  3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.Libm  1
    com.apple.kec.pthread   1
    com.apple.kec.corecrypto    1.0
    System Profile:
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x112), Broadcom BCM43xx 1.0 (7.15.124.12.10)
    Bluetooth: Version 4.3.1f2 15015, 3 services, 27 devices, 1 incoming serial ports
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.2
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x02FE, -
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x02FE, -
    USB Device: Internal Memory Card Reader
    USB Device: USB2.0 Hub
    USB Device: Ableton Push
    USB Device: USB-PS/2 Optical Mouse
    USB Device: AudioBox USB
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    Serial ATA Device: APPLE SSD SM0512F, 500.28 GB
    Model: MacBookPro11,1, BootROM MBP111.0138.B11, 2 processors, Intel Core i5, 2.8 GHz, 8 GB, SMC 2.16f68
    Network Service: Wi-Fi, AirPort, en0
    Graphics: Intel Iris, Intel Iris, Built-In

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Having problems with Bridge shutting down after saving photo in PS Cs5,,,,,,,,,  Also when i attempt to update either PS or bridge get an error message in Adobe application manger "Error loading updater workflow"

    Having problems with Bridge shutting down after saving photo in PS Cs5,,,,,,,,,  Also when i attempt to update either PS or bridge get an error message in Adobe application manger "Error loading updater workflow"

    Sorry for the late reply. My email firewall has become a little over zealous & sent a lot of my emails straight to my junk email folder, so I have only just now discovered your reply in my junk mail folder.
    The only "don't open files exceeding xxx megabytes" instruction I can find in my Prefs, is in the Bridge Prefs for Thumbnails, & mine is set at 1000mb. The biggest files I handle are bigger than 200mb so I should be able to open a few, not just one.
    However, this doesn't explain why I can open a psd format file of 180mb, close it, but then can't open a RAW format file of only 26mb immediately after.
    I can open the RAW file only if I restart my computer - very annoying!
    However, thanks for the advice about the video card & memory.
    So, I'm still stuck as to what the issue is.

  • SkillBuilders Modal Page... closes immediately after loading

    I would like to use the Modal Page plug-in from http://www.skillbuilders.com .*
    I installed the two sample applications from their web site with different results:
    The employee example works fine.
    The example with the modal feedback worked fine yesterday, but today it shrinks (after loading normally) so that I can't see anything but the bar with the window name and the close button.
    In my own application it's even worse:
    I have links in a table which should open a modal window on click.
    I tried several settings, but the only thing that's happening is that the window closes immediately after loading and showing the page for a half a second (or not at all).
    Leaving the "Auto-close On Element Selector" empty did not work. The default value "div#success-message" kept coming back until I replaced it with "null". But still no effect.
    Does anyone have any idea what could cause this behaviour?
    Best regards,
    Sabine
    The Security Settings for all three applications:
    Cache: Enabled
    Embed in Frames: Allow

    In the meantime I had the problem that the window didn't close at all, but I think I figured it out.
    So if the Modal Plug In does not work properly, check the following:
    <li>Does every process that should close the window have a 'Success Message' defined?
    <li>In the unconditional branch, is "include process success message" checked?
    <li>In the dynamic action, is "Auto-close On Element Selector" set to "div.t1success" in the true action?
    BTW: The "shrinking problem" described in the first post still exists - in IE. In Firefox, it works fine.
    Best regards,
    Sabine

  • Skydrive for Mac crashes immediately after launch

    Skydrive for Mac crashes immediately after launch
    Hi and thanks in advance for your help.
    Recently when I launch Skydrive on Mac 10.8.3 it quits 2 seconds after launch. If I disconnect the internet connection Skydrive won't quit but the icon remains greyed out and the app waits for internet connection. If I switch to Guest user Skydrive launches properly. 
    Below are the things I have done but none have solved the problem:
    Deleted and reinstalled Skydrive (deleted using Cleanapp)
    Cleaned up the Mac using Onyx
    Reset PRAM
    Repaired permissions
    Checked Disk for errors
    Removed the Skydrive folder that syncs
    Removed all Login Items under Users and Groups
    Disabled firewall
    Added Skydrive in Firewall Options
    Installed the previous version of Skydrive
    Temporarily changed all the privileges of the app to Read and Write.
    And here is the error log: 
    Process:         SkyDrive [604] 
    Path:            /Applications/SkyDrive.app/Contents/MacOS/SkyDrive
    Identifier:      com.microsoft.skydrive-mac
    Version:         17.0 (2004.1119)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [162]
    User ID:         501
    Date/Time:       2013-04-17 13:25:52.741 +0100
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Crashed Thread:  6  Heartbeat
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff83f4a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff83f49c42 mach_msg + 70
    2   com.apple.CoreFoundation       0x00007fff8bda0233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation       0x00007fff8bda5916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation       0x00007fff8bda50e2 CFRunLoopRunSpecific + 290
    5   com.apple.HIToolbox           0x00007fff8454deb4 RunCurrentEventLoopInMode + 209
    6   com.apple.HIToolbox           0x00007fff8454dc52 ReceiveNextEventCommon + 356
    7   com.apple.HIToolbox           0x00007fff8454dae3 BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit               0x00007fff899d6563 _DPSNextEvent + 685
    9   com.apple.AppKit               0x00007fff899d5e22 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    10  com.apple.AppKit               0x00007fff899cd1d3 -[NSApplication run] + 517
    11  com.apple.AppKit               0x00007fff89971c06 NSApplicationMain + 869
    12  com.microsoft.skydrive-mac     0x00000001064dd197 main + 207
    13  com.microsoft.skydrive-mac     0x00000001064d5a34 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff83f4cd16 kevent + 10
    1   libdispatch.dylib             0x00007fff85049dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib             0x00007fff850499ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff83f4c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff8c242f4c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff8c242d13 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff8c22d1d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff83f4c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff8c242f4c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff8c242d13 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff8c22d1d1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff83f4c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff8c242f4c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff8c242d13 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff8c22d1d1 start_wqthread + 13
    Thread 5:: BiciExperienceQueueTimer
    0   libsystem_kernel.dylib         0x00007fff83f4a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff83f49c42 mach_msg + 70
    2   com.apple.CoreFoundation       0x00007fff8bda0233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation       0x00007fff8bda5916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation       0x00007fff8bda50e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation           0x00007fff8d991f5e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.microsoft.MSCommon         0x000000010657fa6f -[MSTimerThread main:] + 286
    7   com.apple.Foundation           0x00007fff8d98ccd2 __NSThread__main__ + 1345
    8   libsystem_c.dylib             0x00007fff8c2407a2 _pthread_start + 327
    9   libsystem_c.dylib             0x00007fff8c22d1e1 thread_start + 13
    Thread 6 Crashed:: Heartbeat
    0   com.microsoft.MSSyncEngine     0x0000000106a128a2 AssertWorker(bool, wchar_t const*, unsigned int, char const*, wchar_t const*, wchar_t const*, ...) + 785
    1   com.microsoft.MSSyncEngine     0x00000001069fe1f7 getStrConfigVal(_ConfigFile*, wchar_t const*, wchar_t const*) + 208
    2   com.microsoft.MSSyncEngine     0x0000000106a2974a loadGlobalSettings() + 277
    3   com.microsoft.MSSyncEngine     0x0000000106a2a163 initClientCore(wchar_t const*) + 118
    4   com.microsoft.skydrive-mac     0x00000001064db96c -[coreController heartBeatThread:] + 323
    5   com.apple.Foundation           0x00007fff8d98ccd2 __NSThread__main__ + 1345
    6   libsystem_c.dylib             0x00007fff8c2407a2 _pthread_start + 327
    7   libsystem_c.dylib             0x00007fff8c22d1e1 thread_start + 13
    Thread 6 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000000000015a  rcx: 0x00000000000fc080  rdx: 0x00000000000c62c0
      rdi: 0x0000000106e69e00  rsi: 0x0000000000000002  rbp: 0x000000010885a6e0  rsp: 0x0000000108859f70
       r8: 0x000000000000000a   r9: 0x000000001898ea5b  r10: 0x00007fd4f4930f90  r11: 0x00000000ed07f0fe
      r12: 0x0000000106b7fa70  r13: 0x0000000000000001  r14: 0x0000000106b73e04  r15: 0x0000000000000001
      rip: 0x0000000106a128a2  rfl: 0x0000000000010246  cr2: 0x000000010684b0e9
    Logical CPU: 2
    Binary Images:
           0x1064d4000 -        0x106535ff7 +com.microsoft.skydrive-mac (17.0 - 2004.1119) <03A9549D-5B5E-3FAE-9E99-BB73112934E4> /Applications/SkyDrive.app/Contents/MacOS/SkyDrive
           0x106574000 -        0x1065d0fff +com.microsoft.MSCommon (17.0 - 2004.1119) <A172952E-42F1-3BB6-A208-28EB3C3DC60C> /Applications/SkyDrive.app/Contents/Frameworks/MSCommon.framework/Versions/A/MS Common
           0x106615000 -        0x1068baff7 +com.microsoft.MSP2P (17.0 - 2004.1119) <42208214-0648-3110-A4F5-AB5296E9A880> /Applications/SkyDrive.app/Contents/Frameworks/MSP2P.framework/Versions/A/MSP2P
           0x1069f7000 -        0x106cdeff7 +com.microsoft.MSSyncEngine (17.0 - 2004.1119) <863C4A42-FD0A-3880-B1C2-F530FF5982E7> /Applications/SkyDrive.app/Contents/Frameworks/MSSyncEngine.framework/Versions/ A/MSSyncEngine
           0x108422000 -        0x108446ff7  com.apple.security.csparser (3.0 - 55179.11) <5C818B75-2844-3BDC-B8FA-79CE48C19931> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
        0x7fff660d4000 -     0x7fff6610893f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff8113b000 -     0x7fff812d6fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff812d7000 -     0x7fff816f4fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff817ef000 -     0x7fff81a24ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff81a25000 -     0x7fff81a82ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <D15F3FB3-BE53-3545-AD37-9A25A597FE3C> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff81a83000 -     0x7fff81a8afff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff81a8b000 -     0x7fff81ad5ff7  libGLU.dylib (8.7.25) <C243C6D3-3384-3DB1-BB15-E27B65C87294> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff81c21000 -     0x7fff81ec5ff7  com.apple.CoreImage (8.2.4 - 1.0.1) <4A6B017F-B9F7-36DA-943D-A95611F147EA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff81f0b000 -     0x7fff81f0bfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff81f0c000 -     0x7fff81f2dff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff828ff000 -     0x7fff829bcff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff829bd000 -     0x7fff829bdffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <173346B7-614C-380B-8E80-9BD1BE501674> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff82a16000 -     0x7fff82a17ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff82a18000 -     0x7fff82a27fff  com.apple.opengl (1.8.7 - 1.8.7) <26F7FF79-6BB2-3968-B70D-71D4E07C9551> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff82af7000 -     0x7fff82b19ff7  libxpc.dylib (140.42) <BBE558BD-5E55-35E4-89ED-1AA6B056D05A> /usr/lib/system/libxpc.dylib
        0x7fff82b54000 -     0x7fff82f4bfff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff82f4c000 -     0x7fff82f4cfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff82f4d000 -     0x7fff82f77ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff82fad000 -     0x7fff8303aff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff832f6000 -     0x7fff8332cfff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8332d000 -     0x7fff83334fff  libGFXShared.dylib (8.7.25) <869580B2-39CB-30C3-B76E-73BB4894B6B7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff836c1000 -     0x7fff836d3ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff837ee000 -     0x7fff83815ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff83816000 -     0x7fff83872ff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff838c4000 -     0x7fff838c9fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8390e000 -     0x7fff83948ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff83949000 -     0x7fff8396bff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8396c000 -     0x7fff8396efff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8396f000 -     0x7fff83972fff  libRadiance.dylib (849) <F7D9A0FD-1195-34CB-BFE5-79DAF3F40AC3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff83973000 -     0x7fff839dcfff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff83c8c000 -     0x7fff83c90fff  libGIF.dylib (849) <6A664B4D-0A88-33F7-9064-0CD159AB9CE9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff83cce000 -     0x7fff83cdafff  libCSync.A.dylib (331.0.4) <C7043BB7-284D-3B9F-A5CB-78ADE691B2D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff83cdb000 -     0x7fff83edbfff  libicucore.A.dylib (491.11.2) <FD6282D8-DF3F-3842-8C2E-CF478D2B9669> /usr/lib/libicucore.A.dylib
        0x7fff83f3a000 -     0x7fff83f55ff7  libsystem_kernel.dylib (2050.22.13) <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
        0x7fff83f56000 -     0x7fff83f76fff  libPng.dylib (849) <F4C23A55-F17B-3E4F-9E80-BC97F778BA49> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff83f77000 -     0x7fff83fb4fef  libGLImage.dylib (8.7.25) <139A9892-A6F2-3F49-87FB-E7AC3F56E003> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff83ffd000 -     0x7fff84003ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff84004000 -     0x7fff84011fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8409d000 -     0x7fff840abff7  libkxld.dylib (2050.22.13) <4AAF0573-8632-3D06-BE32-C5675F77638D> /usr/lib/system/libkxld.dylib
        0x7fff844ee000 -     0x7fff8481efff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8481f000 -     0x7fff84820ff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
        0x7fff848cc000 -     0x7fff848f8ff7  libRIP.A.dylib (331.0.4) <4B261CE2-524E-3FA9-9437-B70DAC1EAB95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff84905000 -     0x7fff84905fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff84906000 -     0x7fff84927fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff84928000 -     0x7fff84933fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff84934000 -     0x7fff84983ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff84a76000 -     0x7fff84adefff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff84adf000 -     0x7fff84ae0fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff84e08000 -     0x7fff84e5dff7  libTIFF.dylib (849) <C4D0E196-9319-319B-AF72-8B63FB5AF71B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff84e5e000 -     0x7fff84e6cfff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff84e6d000 -     0x7fff84fbefff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <C680EE1A-B4ED-3E77-A08C-DC47922ACA33> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff84fbf000 -     0x7fff8503eff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8503f000 -     0x7fff85044fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff85045000 -     0x7fff8505aff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff8519f000 -     0x7fff85245ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff85246000 -     0x7fff85249ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8524a000 -     0x7fff85278fff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff85279000 -     0x7fff852a1fff  libJPEG.dylib (849) <5C9052F6-D0B3-39CC-8302-468B43D694D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff852b7000 -     0x7fff852fbfff  libcups.2.dylib (327.3) <71E771A1-0489-3417-8A4A-56A2C930F80C> /usr/lib/libcups.2.dylib
        0x7fff852fc000 -     0x7fff8530afff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8530b000 -     0x7fff85480fff  com.apple.CFNetwork (596.3.3 - 596.3.3) <3739DC8D-8610-3740-80EC-43E130779CB8> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff856ec000 -     0x7fff856edff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff85736000 -     0x7fff85738fff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff85739000 -     0x7fff859d4fff  com.apple.JavaScriptCore (8536 - 8536.28.10) <BC911515-D051-3E2E-8E57-D36878407C60> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff859d5000 -     0x7fff85a70fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff85a71000 -     0x7fff85af2fff  com.apple.Metadata (10.7.0 - 707.5) <4140B1F6-7D73-33C7-B3F2-4DB349C31AE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff85af3000 -     0x7fff85be8fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff85be9000 -     0x7fff85d02fff  com.apple.ImageIO.framework (3.2.0 - 849) <C52AED41-A7C2-300B-91FA-5AF73718D243> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff85d03000 -     0x7fff85d5dff7  com.apple.opencl (2.2.18 - 2.2.18) <4A78E53C-17B0-3B2D-A9EA-EF8720FE4134> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff85d5e000 -     0x7fff85dafff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff85db2000 -     0x7fff85db6fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff85db7000 -     0x7fff85dcefff  libGL.dylib (8.7.25) <15F5CB64-847B-3D3D-9663-E0523F15F513> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff85dcf000 -     0x7fff85e3dfff  com.apple.framework.IOKit (2.0.1 - 755.22.5) <1547DA6F-9793-30A2-8E92-7368DE84D46C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff85e8a000 -     0x7fff85e90fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff85e91000 -     0x7fff86116ff7  com.apple.RawCamera.bundle (4.04 - 680) <F9A2656C-CE71-326E-BD6D-077487F49D74> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff861e0000 -     0x7fff86223ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff86224000 -     0x7fff86226ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff86227000 -     0x7fff86329fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8632a000 -     0x7fff86332ff7  libsystem_dnssd.dylib (379.37) <616FC901-151E-38BF-B2C4-24A351C5FAAD> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff86333000 -     0x7fff86333fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff86338000 -     0x7fff86392fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff86393000 -     0x7fff863befff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff863c4000 -     0x7fff863c5fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff863c6000 -     0x7fff863d4ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff868fa000 -     0x7fff8690dff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8690e000 -     0x7fff86912ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff86913000 -     0x7fff869edfff  com.apple.backup.framework (1.4.2 - 1.4.2) <0B557393-CD2A-3076-BED2-F28D02E1EC1D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff869ee000 -     0x7fff879abfff  com.apple.WebCore (8536 - 8536.28.10) <89CDA119-0FC8-3D0E-87B8-AB96BE6D1A36> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff879ac000 -     0x7fff87ab7fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff87b8e000 -     0x7fff87d14fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff87d1a000 -     0x7fff87e3292f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff87e33000 -     0x7fff87e3afff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff87e3b000 -     0x7fff87e4eff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff87f86000 -     0x7fff88111ff7  com.apple.WebKit (8536 - 8536.28.10) <792FA1F3-68F2-36F8-A070-898B3682F5DE> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff88112000 -     0x7fff8811dfff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8811e000 -     0x7fff8812dff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8812e000 -     0x7fff8813bfff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff881ca000 -     0x7fff881d5ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff881d6000 -     0x7fff8820cfff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff88290000 -     0x7fff88290fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff88291000 -     0x7fff882f0fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff88338000 -     0x7fff88369ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8842d000 -     0x7fff88433fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff88446000 -     0x7fff88446fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff88447000 -     0x7fff8845dfff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8845e000 -     0x7fff884c6ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff88760000 -     0x7fff88762fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff88763000 -     0x7fff88a7aff7  com.apple.CoreServices.CarbonCore (1037.5 - 1037.5) <731D8F92-1C52-3613-BA01-EFEA54DADF41> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff88a7b000 -     0x7fff88a90fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff88c8c000 -     0x7fff88c8cfff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88f9c000 -     0x7fff88fa0fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff89859000 -     0x7fff89876ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff89881000 -     0x7fff8a4aeff7  com.apple.AppKit (6.8 - 1187.37) <FAEA8B77-210F-3C0F-B9CF-85A7595CCA26> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8a4af000 -     0x7fff8a5cffff  com.apple.desktopservices (1.7.3 - 1.7.3) <707F77D2-EC0E-3431-840F-B984BD7ABDD6> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8adb6000 -     0x7fff8af64fff  com.apple.QuartzCore (1.8 - 304.2) <234EABE1-067C-3DAE-BEAC-674526E232C2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8af65000 -     0x7fff8afbcff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8afbe000 -     0x7fff8afc0ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8b019000 -     0x7fff8b040fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8b07c000 -     0x7fff8b07cfff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8b0cf000 -     0x7fff8b1a1ff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8b1a2000 -     0x7fff8b1c1ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8b406000 -     0x7fff8b45cfff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8b4b7000 -     0x7fff8b539ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8b595000 -     0x7fff8b5a9fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8b5f5000 -     0x7fff8b60cfff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8b60d000 -     0x7fff8b610fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8b770000 -     0x7fff8b79eff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8b79f000 -     0x7fff8b7abfff  com.apple.CrashReporterSupport (10.8.3 - 417) <48EDDDF3-5720-39D6-B51F-D9AFB93327B3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8b7ac000 -     0x7fff8b7cbff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8b7cc000 -     0x7fff8b7f1ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff8ba49000 -     0x7fff8ba95ff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff8bae6000 -     0x7fff8bbe3ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8bbf0000 -     0x7fff8bca1fff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8bd5c000 -     0x7fff8bd69ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8bd70000 -     0x7fff8bf5aff7  com.apple.CoreFoundation (6.8 - 744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8bf5d000 -     0x7fff8bfacff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8c074000 -     0x7fff8c139ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8c1ab000 -     0x7fff8c22bff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8c22c000 -     0x7fff8c2f8ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff8c2f9000 -     0x7fff8c338ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8c37e000 -     0x7fff8c480fff  libJP2.dylib (849) <4EEA33EB-AF9F-365D-A572-F7D11AD1C76F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8c52c000 -     0x7fff8c52efff  libCVMSPluginSupport.dylib (8.7.25) <A45E21E3-4B40-39B0-A8B6-411526A84F47> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8c60f000 -     0x7fff8c613ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8c614000 -     0x7fff8c615ff7  libsystem_sandbox.dylib (220.2) <6838A6FD-8626-3356-BB4F-BB4787216207> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8c656000 -     0x7fff8c927ff7  com.apple.security (7.0 - 55179.11) <73958084-5BBC-3597-A751-7370B0C247E5> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8c928000 -     0x7fff8c931ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8c939000 -     0x7fff8c943fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8c945000 -     0x7fff8c945fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8c95d000 -     0x7fff8d2ed6ff  com.apple.CoreGraphics (1.600.0 - 331.0.4) <4953961C-96DC-39D7-ADF5-B767F2A7E4E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8d2ee000 -     0x7fff8d2effff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8d2f0000 -     0x7fff8d2f8fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8d2f9000 -     0x7fff8d3f6fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff8d653000 -     0x7fff8d696ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8d6f0000 -     0x7fff8d707fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8d708000 -     0x7fff8d70dfff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff8d70e000 -     0x7fff8d712fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8d713000 -     0x7fff8d7adfff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8d7ae000 -     0x7fff8d81bff7  com.apple.datadetectorscore (4.1 - 269.2) <4FD4A7CE-BB00-3AAB-B7AA-AE395D5400EC> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8d81c000 -     0x7fff8d8baff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8d8f7000 -     0x7fff8dc54ff7  com.apple.Foundation (6.8 - 945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 644
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=175.1M resident=153.8M(88%) swapped_out_or_unallocated=21.3M(12%)
    Writable regions: Total=69.7M written=3652K(5%) resident=4224K(6%) swapped_out=0K(0%) unallocated=65.5M(94%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                     8K
    CG shared images                    128K
    CoreServices                       1904K
    MALLOC                             41.7M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    STACK GUARD                        56.0M
    Stack                              11.0M
    VM_ALLOCATE                        16.1M
    __DATA                             13.6M
    __IMAGE                             528K
    __LINKEDIT                         54.6M
    __TEXT                            120.5M
    __UNICODE                           544K
    mapped file                        28.2M
    shared memory                       308K
    ===========                      =======
    TOTAL                             345.2M

    Back up all data.
    Quit the application, if it's running.
    Triple-click the line below to select it:
    ~/Library/Containers/com.microsoft.skydrive-mac.
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu. A Finder window should open with a folder selected. If it does, move the selected folder — not just its contents — to the Desktop.
    The folder you're moving has a name that begins with "com." It is not the subfolder named "Data" or anything else.
    Relaunch the problem application and test. If it works now, delete the folder you moved. Otherwise, quit again, and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.microsoft.SkyDriveLauncher
    Caution: If you delete some or all of the contents of the selected folder, but leave the folder itself in place, the application may not launch. Deleting the folder will cause it to be rebuilt automatically.

  • IChat crashes immediately after launching

    Hi there,
    I've already searched the forum a bit but did not found exactly what fits
    my problem. On a mac of a colleague (OSX Tiger 10.4.11 on PPC), iChat 3.1.8
    crashes immediately after launching the app. Strangely, the icon of the app
    has the same icon as iCal. I don't know why though ...
    What I've tried already: Starting with new prefs, deleting the plist-files
    in the preference folder of library. Searching for the iChat cache but did not
    found such a folder. Repairing the disc permissions ...
    Here, I've included the crash report. Hopefully, anyone can read the
    hieroglyphs
    Thanks very much in advance for your answer,
    Greetz,
    Sacha
    Date/Time: 2008-04-23 10:47:35.453 +0200
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: iChat
    Path: /Applications/iChat.app/Contents/MacOS/iChat
    Parent: WindowServer [59]
    Version: 3.1.8 (445)
    Build Version: 2
    Project Name: iChat
    Source Version: 4450000
    PID: 1730
    Thread: 0
    Exception: EXC_BREAKPOINT (0x0006)
    Code[0]: 0x00000001
    Code[1]: 0x92bff07c
    Thread 0 Crashed:
    0 com.apple.Foundation 0x92bff07c _NSRaiseError + 264
    1 com.apple.Foundation 0x92cb04c0 -[NSAssertionHandler handleFailureInFunction:file:lineNumber:description:] + 96
    2 com.apple.iChat 0x00003d90 0x1000 + 11664
    3 com.apple.iChat 0x00003b7c 0x1000 + 11132
    4 libobjc.A.dylib 0x90a40650 class_initialize + 300
    5 libobjc.A.dylib 0x90a402fc classlookupMethodAndLoadCache + 132
    6 libobjc.A.dylib 0x90a401d4 objc_msgSend + 244
    7 com.apple.iChat 0x00003ac0 0x1000 + 10944
    8 com.apple.iChat 0x000038e0 0x1000 + 10464
    9 com.apple.AppKit 0x937af2ac -[NSCustomObject nibInstantiate] + 260
    10 com.apple.AppKit 0x93799cb4 -[NSIBObjectData instantiateObject:] + 188
    11 com.apple.AppKit 0x93799880 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 144
    12 com.apple.AppKit 0x93870904 old_loadNib + 244
    13 com.apple.AppKit 0x93785848 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 832
    14 com.apple.AppKit 0x937dcca4 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 156
    15 com.apple.AppKit 0x9386cb68 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 344
    16 com.apple.AppKit 0x9386c908 NSApplicationMain + 344
    17 com.apple.iChat 0x00003254 0x1000 + 8788
    18 com.apple.iChat 0x000770c8 0x1000 + 483528
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000092bff07c srr1: 0x100000000202f030 vrsave: 0x0000000000000000
    cr: 0x24000472 xer: 0x0000000000000000 lr: 0x0000000092bff054 ctr: 0x0000000092bc1124
    r0: 0x0000000000000000 r1: 0x00000000bffff5c0 r2: 0x00000000a2bbe508 r3: 0x00000000a2be2b88
    r4: 0x0000000090a4fff0 r5: 0x0000000092bc0704 r6: 0x00000000bffff1f4 r7: 0x00000000000000ff
    r8: 0x00000000bffff1e0 r9: 0x0000000000409a40 r10: 0x0000000090a3e628 r11: 0x0000000022000472
    r12: 0x0000000092bc1124 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000002 r17: 0x00000000a37b5508 r18: 0x00000000a37b5508 r19: 0x00000000a37b5508
    r20: 0x00000000a37b5508 r21: 0x0000000000000000 r22: 0x00000000a37b97f0 r23: 0x00000000a37c18b4
    r24: 0x00000000a37c00b4 r25: 0x0000000000000000 r26: 0x0000000000431c50 r27: 0x0000000000432040
    r28: 0x0000000000432130 r29: 0x00000000a2bc381c r30: 0x0000000000178b00 r31: 0x0000000092bfef84
    Binary Images Description:
    0x1000 - 0x172fff com.apple.iChat 3.1.8 (445) /Applications/iChat.app/Contents/MacOS/iChat
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.8 (368.31) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b5bfff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b71000 - 0x90b83fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8a000 - 0x90e61fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec7000 - 0x90f47fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f91000 - 0x90fd3fff com.apple.CFNetwork 129.22 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe8000 - 0x91000fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91010000 - 0x91091fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d7000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918effff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91903000 - 0x91928fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193b000 - 0x9197dfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91999000 - 0x919adfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bb000 - 0x91a01fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a18000 - 0x91adffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2d000 - 0x91b42fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b47000 - 0x91b65fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6b000 - 0x91c22fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c71000 - 0x91c75fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c77000 - 0x91ce1fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce6000 - 0x91d23fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2a000 - 0x91d44fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d49000 - 0x91d4cfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4e000 - 0x91e2cfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e4c000 - 0x91e4cfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4e000 - 0x91f33fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3b000 - 0x91f5afff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc6000 - 0x92034fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203f000 - 0x920d4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ee000 - 0x92676fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a9000 - 0x929d4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a04000 - 0x92af2fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af5000 - 0x92b7dfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbe000 - 0x92de9fff com.apple.Foundation 6.4.9 (567.36) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f16000 - 0x92f34fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3f000 - 0x92f99fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb7000 - 0x92fb7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb9000 - 0x92fcdfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe5000 - 0x92ff5fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93001000 - 0x93016fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93028000 - 0x930affff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c3000 - 0x930cefff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d8000 - 0x93105fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311f000 - 0x9312efff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313a000 - 0x931a0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d1000 - 0x93220fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324e000 - 0x9326bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327d000 - 0x9328afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93293000 - 0x935a1fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f1000 - 0x936fdfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93702000 - 0x93722fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93775000 - 0x93775fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93777000 - 0x93daafff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94137000 - 0x941a9fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e2000 - 0x942a7fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942fa000 - 0x942fafff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942fc000 - 0x944bcfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94506000 - 0x94543fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9454b000 - 0x9459bfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a4000 - 0x945b8fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945fd000 - 0x94642fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9464e000 - 0x94686fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946cb000 - 0x946e7fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x946fb000 - 0x9473ffff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x947ed000 - 0x94a57fff com.apple.QuickTime 7.0.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c2e000 - 0x94d5efff com.apple.AddressBook.framework 4.0.6 (488) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94df1000 - 0x94e00fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94e08000 - 0x94e35fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94e3c000 - 0x94e4cfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94e50000 - 0x94e7ffff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94e8f000 - 0x94eacfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x951fb000 - 0x9526afff com.apple.Bluetooth 1.9.5 (1.9.5f4) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x955ce000 - 0x95689fff com.apple.WebKit 523.12 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x956f2000 - 0x957a5fff com.apple.JavaScriptCore 523.12 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x957cd000 - 0x95d4afff com.apple.WebCore 523.12 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95fd4000 - 0x96045fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x972be000 - 0x972ddfff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9794e000 - 0x97973fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x97c5e000 - 0x97c5ffff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x98465000 - 0x9858cfff com.apple.viceroy.framework 273.7.12 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x98d42000 - 0x98d45fff com.apple.DisplayServicesFW 1.8.1 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9a288000 - 0x9a293fff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a29e000 - 0x9a3f7fff com.apple.MessageFramework 2.1 (752.2) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Model: PowerMac11,2, BootROM 5.2.7f1, 2 processors, PowerPC G5 (1.0), 2 GHz, 2.5 GB
    Graphics: NVIDIA GeForce 6600LE, GeForce 6600LE, PCI, 128 MB
    Memory Module: DIMM0/J6700, 256 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM1/J6800, 256 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM2/J6900, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM3/J7000, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Network Service: Ethernet intégré 1, Ethernet, en0
    PCI Card: GeForce 6600LE, Display, SLOT-1
    PCI Card: bcom5714, network, GIGE
    PCI Card: bcom5714, network, GIGE
    Serial ATA Device: WDC WD1600JS-41MVB1, 149.05 GB
    Parallel ATA Device: HL-DT-ST DVD-RW GWA-4165B
    USB Device: USB HUB, EIZO, Up to 480 Mb/sec, 500 mA
    USB Device: EIZO USB HID Monitor, EIZO, Up to 12 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Logitech, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec

    By the last version of Tiger (10.4.11), iChat should be updated along with the OS Update to 3.1.9
    At 10.4.10 it was one less like you quoted (iChat version 3.1.8).
    My mistake about what you posted at first.
    However where you say it is working the specs don't add up here.
    I would still run the Combo Installer at the OS level you are at.
    10:46 PM Friday; May 2, 2008

  • My imac turns it self back on almost immediately after putting it to sleep.  Why and how do I fix it?

    This is new as of a few days ago.  I can't find anything in preferences to make it better nor did I change any setting.  Not sure what's going on.  The computer seems to be working fine except for that.

    It's not supposed to do that, so there is no setting for it.  Be sure you have shut down (powered off) the Mac and started it back up, if you have not since this problem occurred. 
    If you are manually putting it to sleep, make sure you are not "bumping" the mouse immediately after giving the Sleep command.  Also, does this happen when the Mac goes to sleep due to timed inactivity?
    Resetting the PRAM may help
    http://support.apple.com/kb/ht1379
    It may also help to reset "power management," which is called PMU, SMU, SMC, and other things depending on Mac model.  The reset procedure depends on iMac model.  If you can post back with the specific iMac model, I can link to the correct procedure.  This is a list of all iMac models
    http://www.everymac.com/systems/apple/imac/index-imac.html
    A faulty USB device can cause this behavior.  You can try disconnecting all USB devices including hubs, except for standard mouse and keyboard (if used).  See if the problem recurs.

  • Problems with wireless mouse/keyboard after upgrade to snow leopard

    Hi!
    I am wondering if someone has some insight for me.  I recently upgraded to Snow Leopard from Tiger. I have been using a Logitech S 530 wireless keyboard/mouse combo for a few years.  I am now having problems with them irratically.
    1. When on line and the page is large, I often cannot move the blue bar at the bottom of the screen to scroll to the right. What happens is like a stutter; as I am dragging the bar, it and the page shake rapidly side-to-side. Sometimes, I can drag it to the right, but as soon as I let go, it snaps back to the left.  This does not happen in Word.
    2. When in boxes with dropdown options, only occasionally does that happen.  The dropdown either doesn't show, or it flashes quickly.  Sometimes it will work after clicking many times. This happens with dropdown menus as well as search boxes that have dropdown choices for previous searches or suggested searches a la Google.
    3. When I use my function key or mouse to display all windows, I can't choose the one I want.  Regardless of which one I put my cursor over, only the left-most one is highlighted and comes to the front when I click.
    4. There is a varying lag. Sometimes the system is responsive, and other times there is a lag of varying lengths before the system responds to the mouse action (click, drag, zoom, etc.)
    5. For a while, my left mouse button wouldn't work.  I reconfigured it, that seems to have done the trick.
    6. Today, I can't open any of the menu items on Firefox.  I can move the cursor there, but when I click on any of them, nothing happens. This is okay in Safari.
    I have disconnected and reconnected the usb, restarted the computer, and tried to reinstall the software for the mouse and keybord. When I did that, I got a message saying it couldn't install on the current OS, so I went to Logitech and dowloaded and installed the latest version (which indicated it is for OS X 10.6.8.)
    I don't know if this is a Snow Leopard problem, but it started sometime after I upgraded.  Thanks in advance for any help!
    Donna

    Update all your third party software  or uninstall and reinstall 10.6 versions.
    If your going to 10.7, be warned a lot of software will not work at all and your 10.5 era machine will be slow, perhaps even have problems as 10.7 is problematic on older hardware.
    http://roaringapps.com/apps:table
    IMO save for a new 10.8 machine after this summer.
    See #1-15 here, tune yourself up good.
     Step by Step to fix your Mac

  • ITunes stops responding immediately after opening

    My iTunes stops responding immediately after opening and even force-quit doesn't do.
    Baically it freezes between pressing it and opening the window. In my large library, I can see that it loads it and then nothing more. The menu appears and then the wheel. Force quitting doesn't shut the program, no matter how I do it. It leaves the arrow and the only way is to restart the computer and start again.
    I tried using another account, and it does the same. I tried with a new library. I tried with new prefs folder both on the user and on the Mac HD. I tried reinstalling iTunes. I even tried reinstalling the whole OS X - but nothing. The only thing is that after zapping PRAM it might work once or twice, but no more.
    This is with iTunes 7.0.2, QuickTime 7.1.3 and OS 10.4.8
    I don't know what else to do.
    Any ideas?

    I'm having the same problem. It started recently - maybe about two weeks ago - and occasionally when I launch iTunes it just freezes. I can't force quit it completely - it still shows in the Dock as though it's running, though it's not present in Activity Monitor.
    Curiously, I've also had a couple of kernel panics when clicking iTunes buttons in the past week. I don't recall any system update that might have affected either iTunes or QuickTime, so I'm stumped... The only way to get iTunes back is to log out or restart.
    Kirk

  • Adobe CC won't launch, Photoshop freezes immediately after launch, help!

    Hello, I would appreciate any suggestions on how to solve this issue. It started with Photoshop CC freezing, as in spinning color wheels of death immediately after launch. I have tried launching with a file, without a file, from Lightroom, independently, nothing works, but spinning wheel until I force quit.
    So I tried to update, thinking it wpould help. Adobe CC won't launch at all, no error message, no force quit, just nothing happens. I tried uninstalling both, but unistall just hangs, bouncing in the dock for all eternity until I force quit. The Adobe Application Manager will not launch, and also hangs until a force quit.
    The machine is a MacPro OSX 10.7.5 with 3.2 GHz Quad-Core 8GB with no other issues. I have done no updates, no new programs, apps, fonts or plugins in weeks, and the Adobe CC stuff has been working until two days ago. No other issues with the machine I have noticed, and Lightroom and PS CS6 are both working as usual. Restarts have no effect.
    I have attempted to start PS CC using command-shift-option thinking the preferences might be causing an issue, but got the same hanging result. Renaming the OOBE file has not worked. Help!

    Have you had any luck with this? I've been experiencing the same since Creative Cloud started... happens with all creative cloud apps. I removed the creative cloud desktop app as that was the most troublesome and would often hang everything after waking from sleep. Helped a little but waking from sleep still creates the issue and I have to restart the computer. If I do get an app working and I go to update through the help menu, that app hangs. I've read in other discussions that you need to change the user (which is ******** and very time consuming) but like an idiot I did that and... surprise, suprise, same problem. Never seen adobe come back on this one.
    MacPro OS X 10.7.5 2x3GHz Dual Core 24Gb RAM

Maybe you are looking for

  • How do I create several pdf files from one large original pdf?

    Good afternoon- Newby here-  New to Acrobat.com.  How can I convert/save 1 large pdf into several smaller pdf files using acrobat.com?

  • MacBook Pro 15" running very slow

    Hi all, My MacBook Pro is running very slow since I updated OS X 10.5.7 to Snow Leopard OS X 10.6.3 Since then, it has updated itself to OS X 10.6.8 I notice that when I am downloading from the internet, I am only getting around 1.3 mb per second and

  • How to include file-separator in fileName?

    I'm retrieving the file name from a function and that function returns me the string and now I can't change this. String fileName="C:\jdk1.2\hello.java" Now next with this file Name I'm making a file object File f=new File(fileName); FileInputStream

  • Itunes UNinstall = bad idea??

    Just a quick & possibly dumb question: If I uninstall then reinstall itunes on my pc, will it affect any content on the ipod itself?? I got almost 25gb on there & wont unintall itunes if it messes it up. Reason being is I accidentally deleted the itu

  • Does Apple provide "pay" support.

    It's beginning to look like my issues require contacting someone proficient with iTunes on a PC whom I can speak to directly. The whole -support-service-by-responding- to-prompts falls apart at the very end - in everything I've tried you have to prov