Air iOS Camera Uploading Photo

Currently, I am encountering problem with Adobe Flash CS6 tutorial at http://www.fizixstudios.com/labs/do/view/id/air-ios-camera-and-uploading-photos. After creating and naming the instances & type the coding in ActionScript file, I can't seems to execute and make it work and looking forward to hear from you all soon.

Currently, I am encountering problem with Adobe Flash CS6 tutorial at http://www.fizixstudios.com/labs/do/view/id/air-ios-camera-and-uploading-photos. After creating and naming the instances & type the coding in ActionScript file, I can't seems to execute and make it work and looking forward to hear from you all soon.

Similar Messages

  • Air iOS Camera Upload

    Currently, I am encountering problem with Adobe Flash CS6 tutorial at http://www.fizixstudios.com/labs/do/view/id/air-ios-camera-and-uploading-photos. After creating and naming the instances & type the coding in ActionScript file, I can't seems to execute and make it work and looking forward to hear from you all soon.

    Thanks
    Attached is the screenshot to my button instance name and Below is the code
    package 
      import flash.display.MovieClip;
      import flash.events.MouseEvent;
      import flash.events.TouchEvent;
      import flash.ui.Multitouch;
        import flash.ui.MultitouchInputMode;
      import flash.media.Camera;
      import flash.media.CameraUI;
      import flash.media.CameraRoll;
      import flash.media.MediaPromise;
        import flash.media.MediaType;
      import flash.events.MediaEvent;
      import flash.events.Event;
      import flash.events.ErrorEvent;
      import flash.utils.IDataInput;
      import flash.events.IEventDispatcher;
      import flash.events.IOErrorEvent;
      import flash.utils.ByteArray;
      import flash.filesystem.File;
      import flash.filesystem.FileMode;
      import flash.filesystem.FileStream;
      import flash.errors.EOFError;
      import flash.net.URLRequest;
      import flash.net.URLVariables;
      import flash.net.URLRequestMethod;
      public class CameraTest extends MovieClip
      // Define properties
      var cameraRoll:CameraRoll = new CameraRoll(); // For Camera Roll
      var cameraUI:CameraUI = new CameraUI(); // For Taking a Photo
      var dataSource:IDataInput; // Data Source
      var tempDir; // Our temporary directory
      public function CameraTest()
      Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;
      // Start the home screen
      startHomeScreen();
      // =================================================================================
      // startHomeScreen
      // =================================================================================
      public function startHomeScreen()
      trace("Main Screen Initialized");
      // Add main screen event listeners
      if(Multitouch.supportsGestureEvents)
      mainScreen.startCamera.addEventListener(TouchEvent.TOUCH_TAP, initCamera);
      mainScreen.startCameraRoll.addEventListener(TouchEvent.TOUCH_TAP, initCameraRoll);
      else
      mainScreen.startCamera.addEventListener(MouseEvent.CLICK, initCamera);
      mainScreen.startCameraRoll.addEventListener(MouseEvent.CLICK, initCameraRoll);
      // =================================================================================
      // initCamera
      // =================================================================================
      private function initCamera(evt:Event):void
      trace("Starting Camera");
      if( CameraUI.isSupported )
      cameraUI.addEventListener(MediaEvent.COMPLETE, imageSelected);
      cameraUI.addEventListener(Event.CANCEL, browseCancelled);
      cameraUI.addEventListener(ErrorEvent.ERROR, mediaError);
      cameraUI.launch(MediaType.IMAGE);
      else
      mainScreen.feedbackText.text = "This device does not support Camera functions.";
      // =================================================================================
      // initCameraRoll
      // =================================================================================
      private function initCameraRoll(evt:Event):void
      trace("Opening Camera Roll");
      if(CameraRoll.supportsBrowseForImage)
      mainScreen.feedbackText.text = "Opening Camera Roll.";
      // Add event listeners for camera roll events
      cameraRoll.addEventListener(MediaEvent.SELECT, imageSelected);
      cameraRoll.addEventListener(Event.CANCEL, browseCancelled);
      cameraRoll.addEventListener(ErrorEvent.ERROR, mediaError);
      // Open up the camera roll
      cameraRoll.browseForImage();
      else
      mainScreen.feedbackText.text = "This device does not support CameraRoll functions.";
      // =================================================================================
      // imageSelected
      // =================================================================================
      private function imageSelected(evt:MediaEvent):void
      mainScreen.feedbackText.text = "Image Selected";
      // Create a new imagePromise
      var imagePromise:MediaPromise = evt.data;
      // Open our data source
      dataSource = imagePromise.open();
      if(imagePromise.isAsync )
      mainScreen.feedbackText.text += "Asynchronous Mode Media Promise.";
      var eventSource:IEventDispatcher = dataSource as IEventDispatcher;
      eventSource.addEventListener( Event.COMPLETE, onMediaLoaded );
      else
      mainScreen.feedbackText.text += "Synchronous Mode Media Promise.";
      readMediaData();
      // =================================================================================
      // browseCancelled
      // =================================================================================
      private function browseCancelled(event:Event):void
      mainScreen.feedbackText.text = "Browse CameraRoll Cancelled";
      // =================================================================================
      // mediaError
      // =================================================================================
      private function mediaError(event:Event):void
      mainScreen.feedbackText.text = "There was an error";
      // =================================================================================
      // onMediaLoaded
      // =================================================================================
      function onMediaLoaded( event:Event ):void
      mainScreen.feedbackText.text += "Image Loaded.";
      readMediaData();
      // =================================================================================
      // readMediaData
      // =================================================================================
      function readMediaData():void
      mainScreen.feedbackText.text += "Reading Image Data.";
      var imageBytes:ByteArray = new ByteArray();
      dataSource.readBytes( imageBytes );
      tempDir = File.createTempDirectory();
      // Set the userURL
      var serverURL:String = "http://www.example.com/upload.php";
      // Get the date and create an image name
      var now:Date = new Date();
      var filename:String = "IMG" + now.fullYear + now.month + now.day + now.hours + now.minutes + now.seconds;
      // Create the temp file
      var temp:File = tempDir.resolvePath(filename);
      // Create a new FileStream
      var stream:FileStream = new FileStream();
      stream.open(temp, FileMode.WRITE);
      stream.writeBytes(imageBytes);
      stream.close();
      // Add event listeners for progress
      temp.addEventListener(Event.COMPLETE, uploadComplete);
      temp.addEventListener(IOErrorEvent.IO_ERROR, ioError);
      // Try to upload the file
      try
      mainScreen.feedbackText.text += "Uploading File";
      //temp.upload(new URLRequest(serverURL));
      // We need to use URLVariables
      var params:URLVariables = new URLVariables();
      // Set the parameters that we will be posting alongside the image
      params.userid = "1234567";
      // Create a new URLRequest
      var request:URLRequest = new URLRequest(serverURL);
      // Set the request method to POST (as opposed to GET)
      request.method = URLRequestMethod.POST;
      // Put our parameters into request.data
      request.data = params;
      // Perform the upload
      temp.upload(request);
      catch( e:Error )
      trace(e);
      mainScreen.feedbackText.text += "Error Uploading File: " + e;
      removeTempDir();
      // =================================================================================
      // removeTempDir
      // =================================================================================
      function removeTempDir():void
      tempDir.deleteDirectory(true);
      tempDir = null;
      // ==================================================================================
      // uploadComplete()
      // ==================================================================================
      function uploadComplete(event:Event):void
      mainScreen.feedbackText.text += "Upload Complete";
      // ==================================================================================
      // ioError()
      // ==================================================================================
      function ioError(event:Event):void
      mainScreen.feedbackText.text += "Unable to process photo";

  • Problem with iOS 8 uploading photos to Facebook

    WWith iOS 7 no problem uploading pictures to facebook...iOS 8 won't do it...what's the fix for my iPad air?

    Which app are you using for uploading to Facebook?
    If you do not use  the built-in sharing button in the Photos.app, add the photos you want to share to an album. Older apps may need updating, or will only be able to access photos in the "Recently added" album.

  • Major problem with AIR iOS Camera

    Wen I open the camera dialog and then either hit cancel or take a pic and return to my app.... my entire stage zooms.  It looks like its zooming to show any off stage content. If I then rotate the app 180 degrees it readjusts to be normal again. My app is a landscape app.
    If I set the app to be EXACT_FIT the problem happens and then auto corrects itself. Still looks really bad for the second that it happens though.
    The camera portion is crucial to my app .. so hoping there is a known fix for this.
    Any help appreciated as always!

    I just need to use the camera on iOS and Android to take a picture and have that picture as bitmap data on the stage. Pretty simple.  App is in landscape mode.
    Hmmm .. I've never used the Flash Camera class
    I'm using this
      function initCamera(evt:Event):void{
      endTouchX = mouseX;
      endTouchY = mouseY;
      if (startTouchX - endTouchX < 25 && startTouchX - endTouchX >-25 && startTouchY - endTouchY < 25 && startTouchY - endTouchY >-25) {
      takePhotoBTN.alpha = 1;
      trace("Starting Camera");
                            if( CameraUI.isSupported )
                                    cameraUI.addEventListener(MediaEvent.COMPLETE, imageSelected);
                                    cameraUI.addEventListener(Event.CANCEL, browseCancelled);
                                    cameraUI.addEventListener(ErrorEvent.ERROR, mediaError);
                                    cameraUI.launch(MediaType.IMAGE);
                            else
                                   trace("This device does not support Camera functions.");

  • Photo stream on iOS 7 selectively uploads photos to iCloud!?

    Hi all,
    Today I took a dozen of photos with my iPhone 4s running iOS 7 while I was outside (without WiFi connection). When I came back home, and connected to WiFi I exected all photos to be uploaded to iCloud (I have Photo Stream enabled and this worked always fine under iOS 6). After having waited for a couple of hours, I noticed that even one photo hadn't been uploaded. I took a couple of more photos to test it and they were uploaded rather quickly. I even tried to take photos without WiFi connection and as soon as I was connected the test photos were uploaded. So why is Photo Stream uploading photos selectively or does any of you experienced the same problem?
    Thanks!

    this exact same thing is happening to me.
    my 2 iphones, ipad, and mac use the same apple id. i updated one of the iphones (both are iphone 5s) to ios 7 and notices that none of the new photos being taken by this iphone was uploading to the photo stream (although it had no problem displaying photos taken by the other devices on the photo stream).
    after reading the above post, i tried the same thing. i used the updated iphone to take some new photos and they quickly appeared on the photostream. but only these new ones do, and not the others i took over yesterday and earlier today.
    really confused about this selective uploading to photo stream. please help
    thanks!

  • My iPhone 4 is unable to upload photos from the camera roll onto facebook. Keep getting the message "unable to upload now"

    My iPhone 4 is unable to upload photos from the camera roll onto facebook. I keep getting the message "unable to upload now, try later"

    I suffer same.  AppleCare can't seem to solve the problem.  I did a restore from backup. Then I did a restore as new phone (virgin). Then I did a restore as a new device and then backed up from a stored backup (which does not replace media).  To no avail.  Some days it works fine, and on others it's extremely bothersome. The major symptoms:
    1. It can take 5+ seconds to delete a photo.
    2. It can take 10+ seconds for the camera app to activate. In many instances, the moment is long gone.
    3. Switching from camera to video can take 5+ seconds.
    4. Saving a photo that's been optimized in iOS 5 can take 30 seconds. Absurd.
    Note that Photos and Camera aren't the only affected applications. What'sApp can have the same issues on occasion. Voice Memos don't respond like they should, either.  I suspect that there's some behind-the-scenes operations with network feed to which iOS gives its full attention (contrary to the UX getting full attention is is historically the case). This makes the user interface painfully slow at times — and, as most of us here would agree — painfully annoying.  This might have to do with changes designed around iCloud, but I'm not even (yet) using it.
    The bottom line is that what used to be a quick, pretty good phone camera is now totally lackluster and unreliable for fast shots.  Sometimes I think Apple spends too much time worrying about form and not enough about function.

  • How do I upload photos from my iPad to my mac book air

    How do I upload photos on iPhoto from my iPad 2 to my mac book air please?

    Hello Lisamet,
    The following article goes into detail on how to import photos from your iPad to iPhoto.
    iOS: Importing personal photos and videos from iOS devices to your computer
    http://support.apple.com/kb/HT4083
    Also, if you'd like to sync any of those photos BACK to the iPad, follow the steps outlined here:
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    Cheers,
    Allen

  • Hi, does anyone have issues with the Camera app uploading photos to the photo album? This happens after I downloaded iOS8.1.2

    I have just updated my iPhone iOS to 8.1.2. Since then, the camera is not able to upload photos to the album immediately and some are even lost. Does anyone have the same issue or know how to fix this?

    I found it much easier to have my apps on the last page and let the pre-loaded apps stay where they are on the first couple of pages.  While I'd prefer to have my apps first, at least they are all together.  I found it far too much work to try to move them around another way, plus it shifts some things around in a way that I did not intend.
    BTW, I definitely prefer the Fascinate's arrangement of the icons over the Droid X2, which is always in alphabetical order in a vertical non-stop continuum.

  • I am trying to upload photos from my digital camera. Every time I try to plug it into my USB, the following error message comes up: "Because a usb device was drawing too much power from your computer, one or more of your USB devices have been disabled."

    I am trying to upload photos from my digital camera. Every time I try to plug it into my USB, the following error message comes up: "Because a usb device was drawing too much power from your computer, one or more of your USB devices have been disabled."
    I don't have anything else plugged into my MBP, so I am confused as to what's going on.  This problem has never happened before.  MBP is less than a year old - about 9 months old.  HELP

    Get a powered USB hub.
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents

  • After iOS 8 update can't upload photos to Facebook using the FB app, it says no connection

    SInce iOS 8.1 update which was hours ago im not able to upload photos to Facebook using its app, I can straight from the photo album but that's not how I'm used to neither how I like it, I get a "no internet connection" error, it's happening either ways on 3G or Wifi

    Wife had the same problem which I have just fixed by deleting the FB app and reloading it.  Works fine now.

  • I recently upgraded to iPhoto 11 v. 9.2 and now iPhoto crashes every time I try to upload photos from my camera, iPhone, or memory card...

    I recently upgraded to iphoto 11 v. 9.2 and now iphoto crashes every time I try to upload photos.  I have tried to upload from my camera via usb, from my iphone, and from the memory card directly and it crashes every time.  What can I do to fix this problem?

    It was the folder that I trashed. 
    Here is the crash log from a few hours ago:
    Process:         iPhoto [5206]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.2 (9.2)
    Build Info:      iPhotoProject-626000000000000~2
    Code Type:       X86 (Native)
    Parent Process:  launchd [137]
    Date/Time:       2011-10-14 17:37:04.883 -0500
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Crashed Thread:  45  Import thread 0
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000001f7f5140
    VM Regions Near 0x1f7f5140:
        __TEXT                 000000001f71d000-000000001f7ee000 [  836K] r-x/rwx SM=COW  /Library/Application Support/3ivx/*.dylib
    --> __DATA                 000000001f7ee000-000000001f829000 [  236K] rw-/rwx SM=COW  /Library/Application Support/3ivx/*.dylib
        __DATA                 000000001f829000-000000001f849000 [  128K] rw-/rwx SM=PRV  /Library/Application Support/3ivx/*.dylib
    Application Specific Information:
    objc[5206]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9bc8e0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9bc97214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9bc968ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9bc96798 CFRunLoopRunInMode + 120
    6   com.apple.HIToolbox                     0x9065da7f RunCurrentEventLoopInMode + 318
    7   com.apple.HIToolbox                     0x90664d9b ReceiveNextEventCommon + 381
    8   com.apple.HIToolbox                     0x90664c0a BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x92fe9040 _DPSNextEvent + 678
    10  com.apple.AppKit                        0x92fe88ab -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    11  com.apple.AppKit                        0x92fe4c22 -[NSApplication run] + 911
    12  com.apple.AppKit                        0x9327918a NSApplicationMain + 1054
    13  com.apple.iPhoto                        0x000114d0 0x1000 + 66768
    14  com.apple.iPhoto                        0x00010ad9 0x1000 + 64217
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x941e9b5e __select_nocancel + 10
    1   libdispatch.dylib                       0x95bbdb11 _dispatch_mgr_invoke + 642
    2   libdispatch.dylib                       0x95bbc6a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9bc8e0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9bc97214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9bc968ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9bc96798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x97a2a607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.apple.proxtcore                     0x0175daed -[XTRunLoopThread run:] + 509
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9bc8e0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9bc97214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9bc968ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9bc96798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x97a2a607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.apple.proxtcore                     0x0175daed -[XTRunLoopThread run:] + 509
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9bc8e0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9bc97214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9bc968ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9bc96798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x97a2a607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.apple.proxtcore                     0x0175daed -[XTRunLoopThread run:] + 509
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLifeSQLAccess                0x0184ef41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x0184edc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLifeSQLAccess                0x0184ef41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x0184edc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x01d38ac1 -[RKAsyncImageRenderer _backgroundRenderThread:] + 177
    7   com.apple.CoreFoundation                0x9bcfe53a -[NSObject performSelector:] + 58
    8   com.apple.proxtcore                     0x01766626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    9   com.apple.CoreFoundation                0x9bcf6091 -[NSObject performSelector:withObject:] + 65
    10  com.apple.proxtcore                     0x0175dcb5 -[XTSubscription postMessage:] + 181
    11  com.apple.proxtcore                     0x0175d406 -[XTDistributor distributeMessage:] + 726
    12  com.apple.proxtcore                     0x0175cf55 -[XTThread handleMessage:] + 1285
    13  com.apple.proxtcore                     0x0175b6c6 -[XTThread run:] + 438
    14  com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    15  com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    16  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    17  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 27:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x90c8f42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x97a7fd40 -[NSCondition wait] + 304
    4   com.apple.iPhoto                        0x0005c59a 0x1000 + 374170
    5   com.apple.iPhoto                        0x0005c4f2 0x1000 + 374002
    6   com.apple.CoreFoundation                0x9bcf8e1d __invoking___ + 29
    7   com.apple.CoreFoundation                0x9bcf8d59 -[NSInvocation invoke] + 137
    8   com.apple.RedRock                       0x01d5ae61 -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                       0x01d6c6c4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  com.apple.CoreFoundation                0x9bcf6091 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore                     0x01766626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    12  com.apple.CoreFoundation                0x9bcf6091 -[NSObject performSelector:withObject:] + 65
    13  com.apple.proxtcore                     0x0175dcb5 -[XTSubscription postMessage:] + 181
    14  com.apple.proxtcore                     0x0175d406 -[XTDistributor distributeMessage:] + 726
    15  com.apple.proxtcore                     0x0175cf55 -[XTThread handleMessage:] + 1285
    16  com.apple.proxtcore                     0x0175b6c6 -[XTThread run:] + 438
    17  com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    18  com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    19  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    20  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97ab0507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x97a7692a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x97a767fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 29:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9bc8e0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9bc97214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9bc968ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9bc96798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x97a8a21c +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    8   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 30:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x941e9b42 __select + 10
    1   com.apple.CoreFoundation                0x9bce5195 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 31:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLifeSQLAccess                0x0184ef41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x0184edc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 32:: MRSlideProvider 17B09CB0: Loading
    0   libsystem_kernel.dylib                  0x941ea02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x90cdcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x90cde6fe start_wqthread + 30
    Thread 33:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x98a2d5a3 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x98a2d319 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x98a2d12a TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x961fcde6 0x95c10000 + 6213094
    7   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 34:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x98a2d5a3 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x98a2d319 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x98a2d12a TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x98a60033 AIOFileThread(void*) + 1019
    7   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 35:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x90c8f3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.apple.JavaScriptCore                0x9a57a06c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    4   com.apple.JavaScriptCore                0x9a76df43 JSC::Heap::blockFreeingThreadMain() + 323
    5   com.apple.JavaScriptCore                0x9a76df7f JSC::Heap::blockFreeingThreadStartFunc(void*) + 15
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 36:: MRImageManager: Cleanup Picture Cache
    0   libsystem_kernel.dylib                  0x941e9bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x90c8f7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib                       0x90c8f5d7 sleep$UNIX2003 + 63
    3   com.apple.iLifeSlideshowRenderer          0x0270dca2 +[MRImageManager(PictureCacheCleanup) cleanupPictureCache] + 850
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 37:
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x98a2d5a3 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x98a2d319 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x98a2d12a TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x98aa246c TimerThread + 292
    7   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 38:: Dispatch queue: com.apple.root.default-priority
    0   com.apple.iLMBiPhoto9Plugin             0x18ad2f84 0x18a00000 + 864132
    1   com.apple.iLMBiPhoto9Plugin             0x18acd48d 0x18a00000 + 840845
    2   com.apple.iLMBiPhoto9Plugin             0x18ad65e3 0x18a00000 + 878051
    3   com.apple.iLMBiPhoto9Plugin             0x18ad7577 0x18a00000 + 882039
    4   com.apple.iLMBiPhoto9Plugin             0x18ad75c4 0x18a00000 + 882116
    5   com.apple.iLMBiPhoto9Plugin             0x18ad76df 0x18a00000 + 882399
    6   com.apple.iLMBiPhoto9Plugin             0x18ae2a66 0x18a00000 + 928358
    7   com.apple.iLMBiPhoto9Plugin             0x18afd076 0x18a00000 + 1036406
    8   com.apple.iLMBiPhoto9Plugin             0x18b01994 sqlite3_step + 2436
    9   com.apple.iLMBiPhoto9Plugin             0x18abd1a4 0x18a00000 + 774564
    10  com.apple.iLMBiPhoto9Plugin             0x18a7fe4b 0x18a00000 + 523851
    11  com.apple.iLMBiPhoto9Plugin             0x18a8cfdc 0x18a00000 + 577500
    12  com.apple.iLMBiPhoto9Plugin             0x18a03140 0x18a00000 + 12608
    13  com.apple.iLMBiPhoto9Plugin             0x18a75784 0x18a00000 + 481156
    14  com.apple.iLifeMediaBrowser             0x91f065f0 -[ILMediaGroup addMediaObjects:] + 60
    15  com.apple.iLMBiPhoto9Plugin             0x18a09e03 0x18a00000 + 40451
    16  com.apple.iLMBiPhoto9Plugin             0x18a08984 0x18a00000 + 35204
    17  com.apple.iLMBiPhoto9Plugin             0x18a052fd 0x18a00000 + 21245
    18  com.apple.iLifeMediaBrowser             0x91f3fd3e -[ILMediaManager _performLoadData] + 242
    19  com.apple.iLifeMediaBrowser             0x91f3fa95 -[ILMediaManager _loadDataThreaded] + 514
    20  com.apple.CoreFoundation                0x9bcf8e1d __invoking___ + 29
    21  com.apple.CoreFoundation                0x9bcf8d59 -[NSInvocation invoke] + 137
    22  com.apple.Foundation                    0x97b5066f -[NSInvocationOperation main] + 267
    23  com.apple.Foundation                    0x97a6b323 -[__NSOperationInternal start] + 797
    24  com.apple.Foundation                    0x97a6afff -[NSOperation start] + 67
    25  com.apple.Foundation                    0x97a7f152 ____NSOQSchedule_block_invoke_2 + 135
    26  libdispatch.dylib                       0x95bbbe11 _dispatch_call_block_and_release + 15
    27  libdispatch.dylib                       0x95bbce70 _dispatch_worker_thread2 + 231
    28  libsystem_c.dylib                       0x90cdcb24 _pthread_wqthread + 346
    29  libsystem_c.dylib                       0x90cde6fe start_wqthread + 30
    Thread 39:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLMBiPhoto9Plugin             0x18abda71 0x18a00000 + 776817
    3   com.apple.iLMBiPhoto9Plugin             0x18abe178 0x18a00000 + 778616
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 40:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLMBiPhoto9Plugin             0x18abda71 0x18a00000 + 776817
    3   com.apple.iLMBiPhoto9Plugin             0x18abe178 0x18a00000 + 778616
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 41:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLMBiPhoto9Plugin             0x18abda71 0x18a00000 + 776817
    3   com.apple.iLMBiPhoto9Plugin             0x18abe178 0x18a00000 + 778616
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 42:
    0   libsystem_kernel.dylib                  0x941e7c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x941e71f6 mach_msg + 70
    2   com.apple.iLMBiPhoto9Plugin             0x18abda71 0x18a00000 + 776817
    3   com.apple.iLMBiPhoto9Plugin             0x18abe178 0x18a00000 + 778616
    4   com.apple.Foundation                    0x97a7df7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x97a7df2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 43:
    0   libsystem_kernel.dylib                  0x941ea02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x90cdcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x90cde6fe start_wqthread + 30
    Thread 44:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x941e983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x90cdee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x90cdef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreVideo                     0x96c192e8 CVDisplayLink::waitUntil(unsigned long long) + 306
    4   com.apple.CoreVideo                     0x96c1843a CVDisplayLink::runIOThread() + 706
    5   com.apple.CoreVideo                     0x96c18161 _ZL13startIOThreadPv + 160
    6   libsystem_c.dylib                       0x90cdaed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x90cde6de thread_start + 34
    Thread 45 Crashed:: Import thread 0
    0   ???                                     0x1f7f5140 get_feature_flags + 0
    1   lib3ivxEnc.dylib                        0x1f772f38 InitHooks + 5088
    2   lib3ivxEnc.dylib                        0x1f774d4e InitThrivex + 68
    3   lib3ivxEnc.dylib                        0x1f788bdc l3_init + 11
    4   com.3ivx.videocodec                     0x169fe56d ThrivXCDOpen + 676
    5   com.apple.CoreServices.CarbonCore          0x98a31514 callComponentStorage_44 + 25
    6   com.apple.CoreServices.CarbonCore          0x98ae045d _ZL38CallComponentFunctionCommonWithStoragePPcP19ComponentParametersPFlvEm + 45
    7   com.apple.CoreServices.CarbonCore          0x98ae049d CallComponentFunctionWithStorageProcInfo + 30
    8   com.3ivx.videocodec                     0x169fdd5e ThrivXCDComponentDispatch + 173
    9   com.apple.CoreServices.CarbonCore          0x98a565f5 CallComponent + 223
    10  com.apple.CoreServices.CarbonCore          0x98a5663e CallComponentDispatch + 29
    11  com.apple.CoreServices.CarbonCore          0x98ac2898 CallComponentOpen + 43
    12  com.apple.CoreServices.CarbonCore          0x98a552b4 OpenAComponent + 426
    13  com.apple.CoreServices.CarbonCore          0x98a55334 OpenComponent + 24
    14  com.apple.CoreServices.CarbonCore          0x98a5657c CallComponent + 102
    15  com.apple.CoreServices.CarbonCore          0x98a5663e CallComponentDispatch + 29
    16  com.apple.CoreServices.CarbonCore          0x98ac2722 CallComponentGetPublicResource + 57
    17  com.apple.QuickTime                     0x9c89065f cchaMissing + 329
    18  com.apple.CoreServices.CarbonCore       

  • I have a G5 which I intend to keep.  Now that I have updated my iphone 4s to iOS 7.0.  I cannot add music to my iphone or upload photos to iphoto.  I have the last itunes 10.6.3. which was supported by apple.  itunes will not interact with my iphone on an

    I have a G5 which I intend to keep.
    Now that I have updated my iphone 4s to iOS 7.0.
    I cannot add music to my iphone or upload photos to iphoto.
    I have the last itunes 10.6.3. which was supported by apple.
    itunes will not interact with my iphone on any level.
    Apple made all the equipment I use.
    Bentley and Ferrari etc do not stop making parts for their cars?
    The least Apple could is.
    A. Update itunes to run on a G5
    Regarding iOS 7.0 you have totally lost the plot.
    We buy apple why?
    Quality.
    Intuitive interface.
    Stable software.
    Design.
    All that Steve Jobs consider sacrosanct.
    Quality is about ongoing support longevity of product.
    Its not about trying to sell to every person on the planet, others are way ahead of you.
    So try respective the customers you have, it wont be long before theirs a better operating system and your lead in hardware is marginal. 
    Regards
    Glyn Evans
    My post on facebook this morning.
    If you have an iPhone or iPad do not update to ISO 7 unless you want an operating system that looks like windows 8. The graphics looks like it was designed by a artistically challenged mongoose and the operating system is not intuitive something apple users expect. Overly complicated ugly and generally change for the sake of apples paranoia since the death of Steve Jobs.

    You need to update iTunes to 11.1 on your PC

  • Hi i was in the process of uploading photos from my phone three days ago- and have tried to re start  my computer but cannot get out   of " Photos are being import to photo library please wait for import to complete"there are 90 photos and this came

    Hi I was in the procces of uploading photos from my phone three days ago as i have an important art project to finish today. I have tried to restart my computer log off come back on but every time i put my phone to the computer and press up load photos its comes up with "Photos are baeing import to photo library- please wait for import to complete".
    There are 90 photos and this came after it uploaded a few - can you help me - i have tried to quit iphone but this keeps coming up and i need these pics imported from my phone to my computer.
    please help
    thank you

    Apple menu ==> forec quit
    LN

  • Is it possible to upload photos directly from a digital camera to the Zen Sle

    Hello
    My girlfriend and I are going to South America. Therefore, I am not only looking for a MP3-player, but also a place to store photos. The Zen Sleek court my attention.
    Though, I would like to know whether it is possible to upload photos directly from a digital camera to the Zen Sleek? Does it require any extra cables or software? Or is it only possible to store photos through a ordinary computer and then transfer photos to the harddisc on the Zen Sleek?
    Regards
    Mads Lyngby Petersen

    Short answer, I've never seen anyone try it.
    Long answer, it might be possible using one of these USB bridge devices. Some of these devices are supposed to be able to bridge between a camera and a USB mass storage device, and then deal with hosting the connection and moving/copying the files.
    I would be intruiged to know if someone's managed it, but as mentioned so far I've not seen anyone mention it.

  • How to upload photos on Facebook "via iOS"

    Who do I upload photos to Facebook and make it say "via iOS"?
    It seems all my friends when they post photos it says "via iOS to the photo album iOS photos"
    How do I make my iPhone4s do this?

    If you are syncing photos from folders on your computer then they should be sorted by capture date order (though some people have said that isn't happening). If you want to change the order then you if you are using a Mac you can use iPhoto or Aperture, if you are syncing from folders then you'll need to change the capture dates of the photos : http://support.apple.com/kb/HT4221

Maybe you are looking for

  • Installing ORA 816 on Win2K Server

    Hi, I am installing Ora 816 on Win 2K Server. I am encountering Problem in the Instance creation and Copying Data files while creating a database. Its giving me the error Oracle Database Configuration Assistant Alert "ORA-12638: Credential retrieval

  • Issue in Flat File load through FTP set up

    Hi All, I am trying to load the  flat file using FTP set up ( through process chain ). I put a file in the FTP server, the file is being picked up from the FTP server but I cannt see the same in Interface file manager (ZIFM) under unfinished or comle

  • I REALLY NEED to update my graphics - please

    Please, someone help me. The blue shape does not update when you scroll the panel. It happens because i am using variable to set the shape coordinates. i need to make it possible (update the shapes using variables). understood ??? thanks. here's the

  • [svn] 4138: * Added support for SWC reuse.

    Revision: 4138<br />Author:   [email protected]<br />Date:     2008-11-19 08:15:59 -0800 (Wed, 19 Nov 2008)<br /><br />Log Message:<br />-----------<br />* Added support for SWC reuse.  This isn't just reusing the bytes to<br />  lower I/O, which we

  • Database Monitor module missing in 4.2.2 ?

    Hi all, When login as a administrator, am unable to find the above in SQL Workshop / Utilities. Hope it's not drop from 4.2.2 , very useful functions. Regards Zack