Play code snippet isn't working??

I am using the following code snippet:
but this error occurs  Line 6 1061: Call to a possibly undefined method play through a reference with static type flash.media:Video.
img1.addEventListener(MouseEvent.CLICK, fl_ClickToPlayVideo);
function fl_ClickToPlayVideo(event:MouseEvent):void
video_1.play(); //the error is referring to this line here
Would i have to add something there?

if designer is the movieclip that you want to play, use:
designer.play();
instead of
video_1.play();

Similar Messages

  • Audio captcha is not working in mac safari 5.1.7. We used below code snippet that is working in other browser like IF 7,8,9, crome and firefox. Audio refresh is also not happening. When submit Audio Captcha then jcapcha framework giving InvocationTargetEx

    Audio captcha is not working in mac safari 5.1.7.
    We used a code snippet that is working in other browser like IF 7,8,9, crome and firefox.
    Audio refresh is also not happening.
    When submit Audio Captcha then jcapcha framework giving InvocationTargetException.
    <Edited By Host>

    Audio captcha is not working in mac safari 5.1.7.
    We used a code snippet that is working in other browser like IF 7,8,9, crome and firefox.
    Audio refresh is also not happening.
    When submit Audio Captcha then jcapcha framework giving InvocationTargetException.
    <Edited By Host>

  • BUG - Process Code Validator isn't working when creating a plsql process

    Steps to reproduce:
    1. New Process
    2. Type: PL/SQL
    3. Give it a name
    4. Enter process body (note I have just entered a random value which obviously isnt valid plsql code - no semi-colon, no procedure called abc, etc.)
    abc5. Click Create Process
    It succeeds!
    Alternatively, if I click next - the validator fires properly.
    Ta,
    Trent

    Some more observations in this regard
    <li>After opening the saved invalid PLSQL code for edit , it doesn't let you save it again , so the validation is firing at this point.
    <li>If you click on next and then click on back to return to PLSQL code page, and then press next once again, it validates and hence is working as expected.
    Now the weird part
    <li> If you check and then uncheck the "Do not validate PL/SQL code (parse PL/SQL code at runtime only)." checkbox the first time itself when creating , the validation will be fired.
    So my guess is that, the validation is fired based on the value of some item which is not set correctly during the first arrival on the PLSQL code page,possibly the item is null without any default value and the SQL query doesn't handle the null case (like an equals to check with NULL).

  • Code Snippet issue?

    So ... I'll try to explain this the best I can.
    I have a flash file that is nothing more than a slide presentation.
    I go from one slide to another using buttons.
    There are global buttons (navigation: Next Previous, Home) ... and their are screen specific buttons (go to frame X and stop).
    That's it.
    For some reason ... navigation never works on the last slide.
    None of the navigation, global OR local.
    There is nothing different about this screen than any other screen.
    It shares the same global navigation as the previous screens ... but once published ... the code snippets do not work.
    When you arrive to the last slide ... it does nothing.
    The buttons are active in the sense that the cursor changes on roll-over, but the action does not take place.
    I have even tried to make that last slide seperate by giving it it's own set of buttons.
    Still ... it does not work.
    I have RACKED my brain trying to figure out why this would happen.
    If I delete the last slide (say ... #20) then publish ... #19 stops working.
    Is this a bug with the software?
    The file is SO simple it stupid.
    It could be done in html ... but it needed to be done in Flash to create a .swf so it could be displayed on a PlayBook.
    The whole project is now a flop.
    Does ANYONE know why this might happen?   :|
    I know this is hard to explain ... but there really is nothing to this file.
    Thanks in advance.

    What this is ... is a demo for an phone app.
    They are doing the demo on a PlayBook.
    There are 20 screens and the design looks like a BlackBerry Torch.
    The bottom navigation takes the user back to screen One.
    I have a button on Frame 1 of the timeline that runs across all 20 screens.
    The Code Snippet for that button is:
    HomeLeft.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_9);
    function fl_ClickToGoToAndStopAtFrame_9(event:MouseEvent):void
    gotoAndStop(1);
    So .. if the user is on say ... screen 10 and clicks the "HomeLeft" button .. it takes them to screen #1.
    That works.
    All the navigation works up to screen 19.
    Then ... when you navigate to screen 20 ... nothing.
    The buttons react ... but the script is not activated.
    I have looked EVERYWHERE for rogue code.
    I even deleted the frames for screen 20 and then built it again.
    Still ... it does not work.
    If I could show you a screen shot of the timeline ... I think it would make more sense.

  • Code Snippet for buttons problem

    Why would a code snippet from PayPal work with some items I have listed for sale on my website, but not others? I have made sure that nothing is overlapping, and that the buttons are actually on the page.

    What's the URL to the page?

  • Working code snippet for JSSE 1.0.2

    This code works only with JSSE 1.0.2. JSSE 1.0.1 has a bug I believe which give null cert chain
    error when using client authorization.
    Below is a java code snippet to create a SSL server and client sockets.
    SocketsFactory.java
    This class is an utility class which gets you the Secure Socket for server and the client.
    It reads from the properties file.
    public class SocketsFactory{
    /** Creates a SSL client socket. It uses the properties obtained from the
    * sslPropsFile to create the client socket.
    * @param sslPropsFile The ssl properties file that contains information about the provider etc.
    * @param host The host to connect to.
    * @param port The port on which this socket should attempt to connect
    * @throws IOException if there was any exceptions in creating the sockets or if the properties file
    * was not found or corrupted.
    * @return returns the socket that was created.
         public static Socket createSecureSocket(final String sslPropsFile, String host,int port)throws IOException{
              Properties props = readPropertiesFile(sslPropsFile);
              SSLSocketFactory factory = null;
              System.setProperty("javax.net.ssl.trustStore",(String)props.get("com.ibm.idmg.ssl.keyStore"));
              //Getting a secure client socket using sun..
              try {
                   addProvider(props);
                   // Set up a key manager for client authentication
                   // if asked by the server. Use the implementation's
                   // default TrustStore and secureRandom routines.
                   SSLContext ctx = getSSLContext(props);
                   factory = ctx.getSocketFactory();
              catch (Exception e) {
                   e.printStackTrace();
                   throw new IOException(e.getMessage());
              SSLSocket client =(SSLSocket)factory.createSocket(host, port);
              client.startHandshake();
              return client;
    /** Creates a SSL server socket based on sun's implementation using JSSE. Uses the
    * sslPropsFile to get the keystore used for validating certificates and their
    * passwords.
    * @param sslPropsFile The properties file containing SSL provider, key passwords etc.,
    * @param port The port to which this socket should listen at.
    * @throws IOException If the properties file was not found or it was corrupted or if there was any
    * other errors while socket creation.
    * @return the serversocket object.
         public static ServerSocket createSecureServerSocket(final String sslPropsFile,int port) throws IOException{
              Properties props = readPropertiesFile(sslPropsFile);
              String trustStore = (String)props.get("com.ibm.idmg.ssl.keyStore");
              System.setProperty("javax.net.ssl.trustStore",trustStore);
              //     Getting a sun secure server socket
              SSLServerSocketFactory ssf = null;
              try {
                   addProvider(props);
                   // set up key manager to do server authentication
                   SSLContext ctx = getSSLContext(props);
                   ssf = ctx.getServerSocketFactory();
              } catch (Exception e) {
                   e.printStackTrace();
                   throw new IOException(e.getMessage());
              SSLServerSocket socket = (SSLServerSocket)ssf.createServerSocket(port);
              socket.setNeedClientAuth(true);
              return socket;          
         * Internally used function to read a provider from the properties and
         * add it as the current ssl provider. The properties should have the
         * property <i>com.ibm.idmg.ssl.sslProvider</i> defined. Otherwise
         * throws NullPointerException.
         private static void addProvider(Properties props) throws Exception{
              String provider = (String)props.get("com.ibm.idmg.ssl.sslProvider");
              if (provider == null)
                   throw new NullPointerException("com.ibm.idmg.ssl.sslProvider is not specified!");
              java.security.Security.addProvider((java.security.Provider)Class.forName(provider).newInstance());
         * Internally used function to read a file and return it as java properties.
         * It uses java.util.Properties. Throws FileNotFoundException if the file
         * was not found. Otherwise returns the properties.
         private static Properties readPropertiesFile(final String file) throws IOException{
              if (file == null)
                   throw new IOException("SSL Context File name not specified!");
              FileInputStream in = new FileInputStream(file);
              Properties properties = new Properties();
              properties.load(in);
              in.close();
              in = null;
              return properties;
         * Internal function used to retrieve a SSLContext object. It is used primarily
         * for creating SSL sockets that can authenticate each other based on the
         * keystores specified using the properties.
         private static SSLContext getSSLContext(Properties props) throws Exception{
              SSLContext ctx;
              KeyManagerFactory kmf;
              KeyStore ks;
              String password = (String)props.get("com.ibm.idmg.ssl.keyStorePassword");
              if (password == null)
                   password = System.getProperty("javax.net.ssl.keyStorePassword");
              char[] passphrase = password.toCharArray();
              ctx = SSLContext.getInstance("TLS");
              kmf = KeyManagerFactory.getInstance("SunX509");
              ks = KeyStore.getInstance("JKS");
              String keyStoreFile = (String)props.get("com.ibm.idmg.ssl.keyStore");
              if (keyStoreFile == null)
                   keyStoreFile = System.getProperty("javax.net.ssl.keyStore");
              FileInputStream in = new FileInputStream(keyStoreFile);
              ks.load(in, passphrase);
              in.close();
              in = null;
              //     All keys in the KeyStore must be protected by the same password.
              String keyPassword = (String)props.get("com.ibm.idmg.ssl.keyPassword");
              if (keyPassword != null)
                   passphrase = keyPassword.toCharArray();
              kmf.init(ks, passphrase);
              ctx.init(kmf.getKeyManagers(), null, null);
              return ctx;
    The Server properties file looks like this.
    #     Specify the SSL provider here.
    #     Using sun's reference implementation for testing..
    com.ibm.idmg.ssl.sslProvider=com.sun.net.ssl.internal.ssl.Provider
    #     Specify the keystore file that this ssl socket should use
    com.ibm.idmg.ssl.keyStore=server.ks
    #     Specify the password for this keystore file
    com.ibm.idmg.ssl.keyStorePassword=servercanpass
    #     Specify the password used to protect the keys in the keystore
    #     Note: all the keys should have the same password
    com.ibm.idmg.ssl.keyPassword=icanpass
    The client properties file
    #     Specify the SSL provider here.
    #     Using sun's reference implementation for testing..
    com.ibm.idmg.ssl.sslProvider=com.sun.net.ssl.internal.ssl.Provider
    #     Specify the keystore file that this ssl socket should use
    com.ibm.idmg.ssl.keyStore=client.ks
    #     Specify the password for this keystore file
    com.ibm.idmg.ssl.keyStorePassword=clientshouldpass
    #     Specify the password used to protect the keys in the keystore
    #     Note: all the keys should have the same password
    com.ibm.idmg.ssl.keyPassword=canipass
    Now to create the certificates..
    Its a 5 step process
    1) Create the keystore file.
         keytool -genkey -alias mohan -dname "CN=Mohan Tera OU=IS O=IM L=sanjose S=NY C=US" -keystore server.ks -storepass servercanpass -validity 180 -keypass icanpass
    2) Create a self signed certificate. If you need to get it signed from
         verisign then you have to create a certificate request. For testing purposes,
         you can create a self signed certificate.
         keytool -selfcert -alias mohan -dname "CN=Mohan Tera OU=IS O=IM L=sanjose S=NY C=US" -keystore server.ks -storepass servercanpass -validity 180 -keypass icanpass
    3) Export the public key from the keystore to a certificate file that is to be imported to the client keystore.
         keytool -export -alias mohan -file fromserver.cer -keystore server.ks -storepass servercanpass
    4) Repeat the above steps for the client also..
         a)
         keytool -genkey -alias moks -dname "CN=Jennifer Poda OU=Javasoft O=Sun L=Edison S=NJ C=US" -keystore client.ks -storepass clientshouldpass -validity 180 -keypass canipass
         b)
         keytool -selfcert -alias moks -dname "CN=Jennifer Poda OU=Javasoft O=Sun L=Edison S=NJ C=US" -keystore client.ks -storepass clientshouldpass -validity 180 -keypass canipass
         c)
         keytool -export -alias moks -file fromclient.cer -keystore client.ks -storepass clientshouldpass
    5) Import the certificates that were exported in steps 3 and 4c in client and server keystore respectively.
         keytool -import -trustcacerts -alias new -file fromserver.cer -keypass keypass -storepass clientshouldpass -keystore client.ks
         keytool -import -trustcacerts -alias new -file fromclient.cer -keypass keypass -storepass servercanpass -keystore server.ks
    And voila you are all set to go..
    Hope this explains to all the people who are struggling with JSSE..
    Regards,
    Moks

    when i using your method in my code i get the following exception
    pl. help me.
    java.security.UnrecoverableKeyException: Cannot recover key
    at sun.security.provider.KeyProtector.recover(KeyProtector.java:301)
    at sun.security.provider.JavaKeyStore.engineGetKey(JavaKeyStore.java:103
    at java.security.KeyStore.getKey(KeyStore.java:289)
    at com.sun.net.ssl.internal.ssl.X509KeyManagerImpl.<init>(DashoA6275)
    at com.sun.net.ssl.internal.ssl.KeyManagerFactoryImpl.engineInit(DashoA6
    275)
    at javax.net.ssl.KeyManagerFactory.init(DashoA6275)
    at ClassFileServer.getServerSocketFactory(ClassFileServer.java:145)
    at ClassFileServer.main(ClassFileServer.java:115)
    Exception in thread "main" java.lang.NullPointerException
    at ClassFileServer.main(ClassFileServer.java:117)

  • HT1267 My iPod player in my iPhone isn't working properly it will play for a few seconds then stop and also the volume level will appear then disappear what can I do to remedy this?

    My iPod player within my iPhone isn't working properly when playing videos it will start then stop after a few seconds and also the sound bar appears then disappears, and when playing music no sound is coming out when I'm on a call I can hear everything properly and also on loud speaker! What can I do to remedy this? Please help!!!

    If you haven't tried it yet, I'd eliminate memory issues first.  Close all of the apps with the double tap on the home button method
    http://support.apple.com/kb/HT5137
    then restart the device.
    http://support.apple.com/kb/HT1430
    My experience has been that this fixes a lot of issues.

  • The sound on my iPhone isn't working I tried putting headphones in and it worked, but as soon as I take th out and the sound countinues playing the sound stops help please

    The sound on my iPhone isn't working I don't understand why it was working fine an hour ago I haven't dropped it or anything simply just out it on silent... The music I was trying to listen to didn't want to make a sound when I turned it in , I put a pair of headphones in and and it worked as soon as I took it off it completely stopped the music was playing still I could see it in the top column that  the play button was on ... Then I made a call an the same thing happened I turned it on speaker and then I could hear them... The sound is completely off even tho i looked at the seettings and put the volume on high noting is sounding on its own not even when i tap the buttons... I took it off the silent before I tried this stuff I don't understand please help !!!

    make sure that your head phones are not attached to the phone then use the volume buttons on the side, if when using them you see a pic of headphones on the screen, then you have some lint in the headphone jack, use some compressed air and blow it out.
    If you dont see that then try to reset the phone, hold down the home and power buttons for 20 seconds or untill you see the silver apple.
    If you are still having a problem restore the phone and set up as new to see if that clears it up.
    http://support.apple.com/kb/ht1414

  • My phone randomly shut off. When I turned it back on it said it needed to restore, to plug it into itunes. When I did, and tried to restore it, it failed with a code 21. I have followed all the instructions, it still isn't working. Please help!

    My phone randomly shut off. When I turned it back on it said it needed to restore, to plug it into itunes. When I did, and tried to restore it, it failed with a code 21. I have followed all the instructions, it still isn't working. I've uninstalled and reinstalled all that the steps told me to, I've updated everything in my computer. I don't know what else to do. My phone will just show the apple sign and the itunes plug in sign.

    Hey Carolefromthelou,
    The following link will provide steps on how to best remove all traces of iTunes from your PC and then reinstall it:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    Welcome to Apple Support Communities!
    Best,
    Delgadoh

  • Html snippet is not working on iweb 9. i can't write a code, Html snippet is not working on iweb 9. i can't write a code

    Html snippet is not working on iweb 9. i can't write a code, Html snippet is not working on iweb 9. i can't write a code

    You don't get this window when you insert an HTML snippet on the page?
    Click to view full size
    If you don't try the following:
    delete the iWeb preference files, com.apple.iWeb.plist and com.apple.iWeb.plist.lockfile, that resides in your Home() /Library/Preferences folder.
    go to your Home()/Library/Caches/com.apple.iWeb folder and delete its contents.
    Click to view full size
    launch iWeb and try again.
    OT

  • [svn:osmf:] 9850: Removed full screen code since it isn't working properly.

    Revision: 9850
    Author:   [email protected]
    Date:     2009-08-31 13:01:06 -0700 (Mon, 31 Aug 2009)
    Log Message:
    Removed full screen code since it isn't working properly.
    Modified Paths:
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/src/DynamicStreamingSample.mxml

    You have a tool, that doesn't work in a new version of java.
    The tool vendor would be the one to determine whether the tool and/or the new VM has a problem.

  • The $5 Savings Code I got in an email isn't working.

    The email says 
    "shop with confidence, whenever and wherever you want. Take advantage of $5 off your next in-store or online purchase¹. All backed up with our Low Price Guarantee. Offer ends 1/19/2015."
    "FOR BESTBUY.COM ORDERS, ENTER THE SERIAL NUMBER AND PIN INTO THE "GIFT CARD & SAVINGS CODE" FIELD DURING CHECKOUT."
    But when I try that, it says the code is invalid. Is it only for specific things? 

    Hello, frist, and welcome to the forum,
    The $5.00 savings code you received in your email is meant to be our gift to you, so I apologize if it isn’t working as it should. Unless it was previously used at one point, I’m not sure what would be causing such an error; however, I’m glad you reached out to us for assistance.
    Please know I’ve sent you a private message to gather some more information from you. You may view it by logging into the forum and clicking on the envelope icon in the upper right-hand corner of the page.
    Thank you for posting,
    Alex|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Trying to download Lightroom onto a new iMAC and my serial code isn't working - how do I fix this?

    Trying to download Lightroom onto a new iMAC and my serial code isn't working - how do I fix this?

    What does "isn't working" actually mean? Any error message?

  • Precedence and Associativity code snippet

    Look at this code snippet and assume the value of i is 2:
    ((k = (++i)) + (j = (2 * (++i))))We have the pre-increment operator showing up twice and that operator is the highest level precedence in this example. Next in line as far as precedence goes is the multiply operator. So what I did was I went to the far right and raised i from 2 to 3
    and then I figured since multiplication is the next in level of precedence I multiplied 3 * 2 to get 6.
    But I guess that's not the correct way to evaluate this. The author said when you have two operators that are of the same level of precedence, Java uses associativity rules to "break the tie."
    So I guess the correct thing to do is first increment i from 2 to 3 at the far left and then assign that to k.
    I'm just a bit confused I guess. I thought step 1 would be to go to the far right and increment i from 2 to 3. Then step 2 would be to carry out the multiply operation.
    Now the increment operator and the assignment operator are right associative. So the increment operator binds to variable i and the assignment operator binds to the result of incrementing i.
    But I don't see the connection between being right associative and proceeding to evaluate expressions from left to right. I'm still not completely understanding why we evaluate the far left expression first and not do the far right one first.
    Edited by: 357mag on Jun 6, 2010 7:46 PM
    Edited by: 357mag on Jun 6, 2010 7:48 PM
    Edited by: 357mag on Jun 6, 2010 7:49 PM

    Savitch said Java first does binding; that is it fully parenthesizes the expression using precedence and associativity rules. Then it evaluates expressions left to right.If that's what he says he is wrong. There is no such thing as 'binding; that is it fully parenthesizes the expression using precedence and associativity rules,' and I've already shown that 'evaluates expressions left to right' isn't correct either. See also the JLS, where none of this fantasy is mentioned. Compilers don't 'fully parenthesize' expressions. They parse them according to the grammar, which defines precedence and associativity; then they evaluate the operators in order of precedence, evaluating the operands of each operator in left-to-right order.
    Walter Savitch is apparently a professor of CS and should know better than that. I'd like to see what he really said.
    Since multiplication has a higher level of precedence than addition we perform the multiply operation first.Of course we do. That's not the point at issue.
    Java is actually doing this:
    d = a + (b * c)
    That is the point at issue. This is incorrect. Java isn't 'actually doing this' at all. That's just begging the question. There is no compilation step that corresponds to the insertion of those parentheses. What is actually happening is that operator precedence dictates that the multiplication be evaluated before the addition.
    As I said above, to a compiler writer, () is just another operator. Explaining operator precedence in terms of parentheses is putting the cart before the horse. It works the other way round.
    Answer is 7Of course it is. That's not in dispute.
    It's like the BODMAS you learned in 3rd grade.
    The way it is actually done is (a) turning the expression into a parse tree, with the operators already in the correct place due to precedence, as dictated by the grammar, and (b) outputting a Reverse-Polish representation of the expression, which in the above case would look like this:
    PUSH 1
    PUSH 2
    PUSH 3
    MULTIPLY ; pop the top two elements on the stack, multiply them, and push the result
    ADD ; pop the top two elements on the stack, add them, and push the result.
    No parentheses there.

  • My iPhoto isn't working, I open it and a second later its saying "iphoto quit unexpectedly while using the Flip4Mac WMV Import Plug in"

    As i said in my topic My iPhoto isn't working, I open it and a second later its saying hoto quit unexpectedly while using the Flip4Mac WMV Import Plug in. i press ok and try to open it again but than says to repair so i do so, but it doesnt seem to repair its problem. I have tried opening a new photo library through it with the alt/option key but that doesnt seem to work either. i thought it did for a min because it didnt log out but once i pressed open photo stream it seemed to have the same problem. this is what i see
    Process:         iPhoto [661]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.2 (9.4.2)
    Build Info:      iPhotoProject-710042000000000~2
    App Item ID:     408981381
    App External ID: 11723545
    Code Type:       X86 (Native)
    Parent Process:  launchd [149]
    User ID:         502
    PlugIn Path:       /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    PlugIn Identifier: net.telestream.wmv.import
    PlugIn Version:    2.4.0.11 (2.4.0.11)
    Date/Time:       2013-03-17 14:23:46.000 -0700
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          2036 sec
    Crashes Since Last Report:           13
    Per-App Interval Since Last Report:  413 sec
    Per-App Crashes Since Last Report:   13
    Anonymous UUID:                      4D8E93A6-DD18-B081-7D86-BA37E751C35B
    Crashed Thread:  27  Import thread 0
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/iPhoto.app/Contents/MacOS/iPhoto
        VM_ALLOCATE            0000000000001000-00000000000c3000 [  776K] ---/--- SM=NUL 
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.AppKit                        0x9604dd81 -[NSApplication isActive] + 1
    1   com.apple.iPhoto                        0x005ea4d8 0xc3000 + 5403864
    2   com.apple.AppKit                        0x9608e3a4 -[NSView _drawRect:clip:] + 3706
    3   com.apple.AppKit                        0x9608b909 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 2156
    4   com.apple.AppKit                        0x9608c1fd -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4448
    5   com.apple.AppKit                        0x9608c1fd -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4448
    6   com.apple.AppKit                        0x9608ae8f -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 290
    7   com.apple.AppKit                        0x96086bf3 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4425
    8   com.apple.AppKit                        0x9604f3f1 -[NSView displayIfNeeded] + 1468
    9   com.apple.AppKit                        0x9604edad -[NSWindow displayIfNeeded] + 306
    10  com.apple.AppKit                        0x9604ea44 _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 994
    11  com.apple.AppKit                        0x9668caeb __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke_01253 + 58
    12  com.apple.CoreFoundation                0x94642ced _runLoopObserverWithBlockContext + 29
    13  com.apple.CoreFoundation                0x9461385e __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 30
    14  com.apple.CoreFoundation                0x9461379d __CFRunLoopDoObservers + 381
    15  com.apple.CoreFoundation                0x945ed806 __CFRunLoopRun + 886
    16  com.apple.CoreFoundation                0x945ed02a CFRunLoopRunSpecific + 378
    17  com.apple.CoreFoundation                0x945ece9b CFRunLoopRunInMode + 123
    18  com.apple.HIToolbox                     0x94229f5a RunCurrentEventLoopInMode + 242
    19  com.apple.HIToolbox                     0x94229cc9 ReceiveNextEventCommon + 374
    20  com.apple.HIToolbox                     0x94229b44 BlockUntilNextEventMatchingListInMode + 88
    21  com.apple.AppKit                        0x9604b9aa _DPSNextEvent + 724
    22  com.apple.AppKit                        0x9604b1dc -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    23  com.apple.AppKit                        0x9604163c -[NSApplication run] + 855
    24  com.apple.AppKit                        0x95fe4666 NSApplicationMain + 1053
    25  com.apple.iPhoto                        0x000d2c99 0xc3000 + 64665
    26  com.apple.iPhoto                        0x000d22e5 0xc3000 + 62181
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x92d489ae kevent + 10
    1   libdispatch.dylib                       0x979e0c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x979e07a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 7:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x92d47c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x97777a55 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x9777791e usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x96230c9d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    5   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 16:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x026cc48f -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   libobjc.A.dylib                         0x96ea4586 -[NSObject performSelector:] + 62
    8   com.apple.proxtcore                     0x02078df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   libobjc.A.dylib                         0x96ea45d3 -[NSObject performSelector:withObject:] + 70
    10  com.apple.proxtcore                     0x0207122c -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore                     0x02070aef -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore                     0x02070313 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore                     0x0206ef10 -[XTThread run:] + 434
    14  com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    15  com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    16  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    17  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 18:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 19:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x92d47be6 __select + 10
    1   com.apple.CoreFoundation                0x94631660 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    3   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 20:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x92d457d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92d44cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x945e7f89 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x945ed96f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x945ed02a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x945ece9b CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x9825463a +[NSURLConnection(Loader) _resourceLoadLoop:] + 395
    7   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    8   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    9   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 21:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x977780e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.apple.JavaScriptCore                0x94ed37a8 ***::ThreadCondition::timedWait(***::Mutex&, double) + 120
    4   com.apple.JavaScriptCore                0x950eaf63 JSC::BlockAllocator::blockFreeingThreadMain() + 115
    5   com.apple.JavaScriptCore                0x94ed172c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x951008a0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 22:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97778095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x95055b76 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
    4   com.apple.JavaScriptCore                0x95055a6e JSC::MarkStackThreadSharedData::markingThreadMain() + 238
    5   com.apple.JavaScriptCore                0x94ed172c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x951008a0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 23:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97778095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x95055b76 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
    4   com.apple.JavaScriptCore                0x95055a6e JSC::MarkStackThreadSharedData::markingThreadMain() + 238
    5   com.apple.JavaScriptCore                0x94ed172c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x951008a0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 24:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97778095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x95055b76 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
    4   com.apple.JavaScriptCore                0x95055a6e JSC::MarkStackThreadSharedData::markingThreadMain() + 238
    5   com.apple.JavaScriptCore                0x94ed172c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x951008a0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib                  0x92d457d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92d44cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x945e7f89 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x945ed96f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x945ed02a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x945ece9b CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x982bdf36 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.apple.proxtcore                     0x0207106c -[XTRunLoopThread run:] + 469
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97778095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x982b6d24 -[NSCondition wait] + 274
    4   com.apple.iPhoto                        0x00114a64 0xc3000 + 334436
    5   com.apple.iPhoto                        0x00114672 0xc3000 + 333426
    6   com.apple.CoreFoundation                0x946437cd __invoking___ + 29
    7   com.apple.CoreFoundation                0x94643707 -[NSInvocation invoke] + 279
    8   com.apple.RedRock                       0x026e885b -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                       0x026f95f4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  libobjc.A.dylib                         0x96ea45d3 -[NSObject performSelector:withObject:] + 70
    11  com.apple.proxtcore                     0x02078df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    12  libobjc.A.dylib                         0x96ea45d3 -[NSObject performSelector:withObject:] + 70
    13  com.apple.proxtcore                     0x0207122c -[XTSubscription postMessage:] + 191
    14  com.apple.proxtcore                     0x02070aef -[XTDistributor distributeMessage:] + 681
    15  com.apple.proxtcore                     0x02070313 -[XTThread handleMessage:] + 515
    16  com.apple.proxtcore                     0x0206ef10 -[XTThread run:] + 434
    17  com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    18  com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    19  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    20  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 27 Crashed:: Import thread 0
    0   net.telestream.wmv.import               0x16eb179a ACWma1DecoderEntry + 1418
    1   net.telestream.wmv.import               0x16eb1a3c ACWma1DecoderEntry + 2092
    2   net.telestream.license                  0x1642c562 TSLicenseF4M::GetLevel(bool) + 42
    3   net.telestream.wmv.import               0x16e9b975 MjpgDecompressorComponentDispatch + 71957
    4   net.telestream.wmv.import               0x16ea00d5 MjpgDecompressorComponentDispatch + 90229
    5   net.telestream.wmv.import               0x16e84180 MmsMediaHandlerComponentDispatch + 14368
    6   com.apple.CoreServices.CarbonCore          0x9536dadb callComponentStorage_44 + 25
    7   com.apple.CoreServices.CarbonCore          0x9535eabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    8   com.apple.CoreServices.CarbonCore          0x9535eaff CallComponentFunctionWithStorageProcInfo + 30
    9   net.telestream.wmv.import               0x16e8432d M4s2DecompressorComponentDispatch + 205
    10  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    11  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    12  com.apple.CoreServices.CarbonCore          0x9536bad7 CallComponentOpen + 43
    13  com.apple.CoreServices.CarbonCore          0x952d86a5 OpenAComponent + 443
    14  com.apple.CoreServices.CarbonCore          0x952d84e2 OpenComponent + 24
    15  com.apple.CoreServices.CarbonCore          0x952d8aeb CallComponent + 164
    16  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    17  com.apple.CoreServices.CarbonCore          0x9536bc5b CallComponentGetPublicResource + 57
    18  com.apple.QuickTime                     0x990d4c91 cchaMissing + 326
    19  com.apple.CoreServices.CarbonCore          0x952d7653 GetComponentPublicResourceList + 749
    20  com.apple.QuickTime                     0x990d40fb startUsingCachedCodecCharacterizations + 267
    21  com.apple.QuickTime                     0x990d3c14 FindBestChain + 30
    22  com.apple.QuickTime                     0x990d2af9 ICMSequenceGetChain + 514
    23  com.apple.QuickTime                     0x990cdca5 DoBandedDecompress + 5528
    24  com.apple.QuickTime                     0x990cc6a0 ICMAction + 1286
    25  com.apple.QuickTime                     0x990cbf90 ICMDeviceLoop + 3924
    26  com.apple.QuickTime                     0x990d2060 DecompressSequenceFrameWhen + 803
    27  com.apple.QuickTime                     0x990d1d34 DecompressSequenceFrameS + 61
    28  com.apple.QuickTimeImporters.component          0x9a2b57ad importGraphicDrawInternal + 1834
    29  com.apple.QuickTimeImporters.component          0x9a2af1ea importGraphicDrawOrDecide + 1782
    30  com.apple.CoreServices.CarbonCore          0x9535eabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    31  com.apple.CoreServices.CarbonCore          0x9535eaff CallComponentFunctionWithStorageProcInfo + 30
    32  com.apple.QuickTimeImporters.component          0x9a2add31 ImportGraphicComponentDispatch + 81
    33  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    34  com.apple.CoreServices.CarbonCore          0x952d8b55 DelegateComponentCall + 24
    35  com.apple.QuickTimeImporters.component          0x9a24c768 ImportJFIFComponentDispatch + 98
    36  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    37  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    38  com.apple.QuickTimeComponents.component          0x93f3db61 0x933ab000 + 12135265
    39  com.apple.QuickTimeComponents.component          0x93c7abe0 0x933ab000 + 9239520
    40  com.apple.CoreServices.CarbonCore          0x9536d91f callComponentStorage_444 + 32
    41  com.apple.CoreServices.CarbonCore          0x9535eabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    42  com.apple.CoreServices.CarbonCore          0x9535eaff CallComponentFunctionWithStorageProcInfo + 30
    43  com.apple.QuickTimeComponents.component          0x93c79b92 ExportBaseComponentDispatch + 81
    44  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    45  com.apple.CoreServices.CarbonCore          0x952d8b55 DelegateComponentCall + 24
    46  com.apple.QuickTimeComponents.component          0x93c7e3e2 ExportJFIFComponentDispatch + 98
    47  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    48  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    49  com.apple.QuickTimeComponents.component          0x93f3e825 0x933ab000 + 12138533
    50  com.apple.QuickTimeComponents.component          0x93c7a125 0x933ab000 + 9236773
    51  com.apple.CoreServices.CarbonCore          0x9536dadb callComponentStorage_44 + 25
    52  com.apple.CoreServices.CarbonCore          0x9535eabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    53  com.apple.CoreServices.CarbonCore          0x9535eaff CallComponentFunctionWithStorageProcInfo + 30
    54  com.apple.QuickTimeComponents.component          0x93c79b92 ExportBaseComponentDispatch + 81
    55  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    56  com.apple.CoreServices.CarbonCore          0x952d8b55 DelegateComponentCall + 24
    57  com.apple.QuickTimeComponents.component          0x93c7e3e2 ExportJFIFComponentDispatch + 98
    58  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    59  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    60  com.apple.QuickTime                     0x992bd8b3 GraphicsExportDoExport + 43
    61  com.apple.iPhoto                        0x001e75b9 0xc3000 + 1197497
    62  com.apple.iPhoto                        0x001e70e1 0xc3000 + 1196257
    63  com.apple.iPhoto                        0x001e2212 0xc3000 + 1176082
    64  com.apple.iPhoto                        0x001e0ead 0xc3000 + 1171117
    65  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    66  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 27 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x16eb1799  ecx: 0x9265ad96  edx: 0x17050908
      edi: 0xb1cc49ac  esi: 0x00000000  ebp: 0xb1cc48c8  esp: 0xb1cc48bc
       ss: 0x00000023  efl: 0x00010292  eip: 0x16eb179a   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 3
    Binary Images:
       0xc3000 -   0xdaffeb  com.apple.iPhoto (9.4.2 - 9.4.2) <3AC6405B-33E2-3184-9F20-4C9CC5256A3A> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xf41000 -  0x101bffc  org.python.python (2.6.7 - 2.6.7) <FA305A16-14DB-3062-BB61-3944ED836202> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x1066000 -  0x106efff  com.apple.PhotoFoundation (1.0 - 10.17) <D48FDC95-21FC-328C-9F4F-89C28A260C2D> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x10dd000 -  0x12b9ffb  com.apple.geode (1.5.3 - 270.7) <DFD97416-FD86-3AF1-BFF0-79A47DADE257> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x134a000 -  0x134fff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <65A74F18-5020-31EC-B7E9-EBC14E2D9CA1> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x1359000 -  0x1388ff7  com.apple.iLifeAssetManagement (2.7 - 40.34) <2B65BA8A-2C25-360D-B50E-0A9EECA1CE57> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x13aa000 -  0x13d1ff3  com.apple.iPhoto.Tessera (1.1 - 70.18) <F190FD9B-9CC9-3D4D-9744-113F7CA36097> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x13e6000 -  0x140affb  com.apple.iPhoto.Tellus (1.3 - 70.18) <768463A7-60B4-3D50-B36B-D6E5AFA43DC9> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1421000 -  0x142cfff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <86E53BF3-BCAD-36F9-999B-013E359EF079> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x1438000 -  0x144dffb  com.apple.iLifeFaceRecognition (1.0 - 30.11) <4A781CBF-9764-3531-91E0-94C5B4DFCFDF> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x1459000 -  0x1482ff3  com.apple.DiscRecordingUI (7.0 - 7000.2.4) <C38D0A24-E868-362A-A195-8510CF36F66E> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x149d000 -  0x149ffff  com.apple.ExceptionHandling (1.5 - 10) <D565F065-B45F-37FF-BA46-C675F95BBC00> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x14a7000 -  0x14b2ff7  com.apple.UpgradeChecker (9.2 - 9.2) <D34CC218-8200-34D7-816C-B747EE4BF5F7> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x14bd000 -  0x153cff7  com.apple.iLifeMediaBrowser (2.7.3 - 546.4) <41C10827-7C8E-3241-922A-9E1A6CD48866> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x1581000 -  0x16a0ffb  com.apple.WebKit (8536 - 8536.28.10) <C181C3FB-91E3-38AB-A709-6B61935B3AD8> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x1751000 -  0x1766fff  com.apple.iChat.InstantMessage (7.0.1 - 3305) <BDC60881-195C-3C36-B863-AAA6BDA76C18> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x1774000 -  0x1b0dff3  com.apple.iLifeSlideshow (3.1 - 1151.4) <B03978EF-A395-30D4-833B-7C474E1F5F12> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1c0b000 -  0x1e9cff3  com.apple.iLifePageLayout (1.3 - 200.9) <067ACE80-5B73-39EE-850B-E392F6573AAC> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1f76000 -  0x200dff7  com.apple.MobileMe (13 - 1.0.4) <5E6C6DEC-1F48-358F-8117-40FAAEB8AFAD> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x206b000 -  0x20d3ff3  com.apple.proxtcore (1.4.1 - 250.56) <BBADA727-FB78-32AF-8D45-4498F68343A7> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x2116000 -  0x2214ff7  com.apple.iLifeSQLAccess (1.7.1 - 60.5) <845C6292-8EC2-3B4A-8E2E-8D98986148C2> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x225e000 -  0x2289ffb  com.apple.ProUtils (1.1 - 200.36) <E286BD1F-0BE8-3151-B758-89870AB4AC89> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x22a3000 -  0x230efff  com.apple.iLifeKit (1.3.1 - 156.11) <F93283F4-046D-3653-9607-8B0F850E6318> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x2353000 -  0x258cff3  com.apple.prokit (7.3.2 - 1944.10) <5276C99B-E10E-3B92-AB06-1B546A6291D1> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x26a9000 -  0x2bd5ffb  com.apple.RedRock (1.9.4 - 310.33) <548258F5-3AE9-3AD4-B986-A9674D131164> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2dd2000 -  0x2df6fff  com.apple.AOSAccounts (1.1.2 - 1.1.95) <6C931BC9-7C14-3F67-86F5-EBE2916E0670> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2e10000 -  0x2e10fff  com.apple.SafariServices.framework (8536 - 8536.28.10) <38360619-29CB-30E2-8031-B8BCF393372E> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
    0x2e16000 -  0x2e1dff7  com.apple.AOSNotification (1.7.0 - 636.3) <520524D9-B14F-3DED-9281-8FAFEFFBA863> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x2e28000 -  0x2e28ffc  com.apple.SafariDAVNotifier (1.1.1 - 1) <0626242D-C677-3B1D-BCC0-75F5857E9E37> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2e2e000 -  0x309eff3  com.apple.CalendarStore (6.0 - 1249) <A6C4BC52-A53D-38F9-B938-AF2E885AAC0E> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x31a2000 -  0x31feffb  com.apple.corelocation (1239.40 - 1239.40) <DF504BBD-A9D5-3AF0-AAF7-F7C06753A13C> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x322b000 -  0x325dff3  com.apple.GeoServices (1.0 - 1) <E42ABF31-2FE8-303E-908F-2510E69B70CE> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x326f000 -  0x3278fff  com.apple.ProtocolBuffer (2 - 104) <54ACBE43-3E02-38C0-81D1-A9EB40E5655A> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x3280000 -  0x3288ff3  com.apple.AppSandbox (2.0 - 1) <EA5C2F87-F046-349E-B276-6B9F252B2AD5> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x3290000 -  0x32d4ff3  com.apple.CalDAV (6.0 - 112.6) <EF9166E6-A80B-3C8D-BD22-F1555DB0649D> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x3307000 -  0x3310ff3  com.apple.CalendarAgentLink (1.0 - 37) <2D0AFE12-0235-3B60-B786-0EC07AC9F52C> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x3321000 -  0x3332fff  com.apple.CalendarFoundation (1.0 - 29) <6BC68447-ED79-3ABD-8A6E-FA5416D09E2E> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x3345000 -  0x33a7fff  com.apple.coredav (1.0.1 - 179.7) <FE9A6204-03DA-3183-A793-3FA8EEBFA1C4> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x33e5000 -  0x3432ffb  com.apple.ExchangeWebServices (3.0 - 157) <B519C697-55B7-3588-945D-55A7C9C9F375> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x3488000 -  0x34d6fff  com.apple.iCalendar (6.0 - 126.5) <C30CAF95-3D02-3E2E-8855-51DCDF8DB219> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x3501000 -  0x3501fff +cl_kernels (???) <C95C2C6C-E8D9-4FB7-8D3B-9BC35740A414> cl_kernels
    0x3503000 -  0x3510ffb  com.apple.KerberosHelper (4.0 - 1.0) <527E53D2-F8D2-31D1-8576-B725B42C97D9> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x351c000 -  0x3668ff7  com.apple.syncservices (7.1 - 713.1) <0A9790C9-1D95-3B46-84FA-43848FCB476E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x36e4000 -  0x3751ffb  com.apple.WhitePagesFramework (10.7.0 - 141.0) <569589AA-CBE2-3B49-8690-D2977E209499> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x377f000 -  0x37a6ffb  libsandbox.1.dylib (220.2) <3DBD15B6-ABFC-3395-9F6A-3061C8C1AC35> /usr/lib/libsandbox.1.dylib
    0x37b0000 -  0x37c3fff  com.apple.AppContainer (2.0 - 1) <A2C97877-F90D-34CB-BAC7-811D62BABDF0> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x37d2000 -  0x37d3ff5 +cl_kernels (???) <B3AF783E-16EA-4713-B50F-CEF8B240316F> cl_kernels
    0x37d5000 -  0x37d9ff7  com.apple.SecCodeWrapper (2.0 - 1) <2ADFEC5C-ECC7-3CF5-89B9-0B461E014F12> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x37e3000 -  0x37e7ffe  libMatch.1.dylib (17) <29090908-32A9-3087-B197-00128F5954CD> /usr/lib/libMatch.1.dylib
    0x37ee000 -  0x37f1ffb  com.apple.LibraryRepair (1.0 - 1) <C6A079B1-1FD5-39FF-B141-E6C99ECBAA77> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
    0x37fb000 -  0x3855fff  com.apple.proapps.MIO (1.0.6 - 512) <8321DF77-4AD8-376B-9465-83F471AA61D2> /Applications/iPhoto.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x386f000 -  0x4502ffb  com.apple.WebCore (8536 - 8536.28.10) <AA738A8C-808D-302A-B58D-404C58075C45> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x4c8a000 -  0x4c8bfff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
    0x4c93000 -  0x4cb8ff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
    0x4cc4000 -  0x4cf8fe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
    0x4d03000 -  0x4e6afff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
    0x4e71000 -  0x4ecdfff  com.apple.NyxAudioAnalysis (12.4 - 12.4) <096185BF-14F0-385C-88FF-1ABB418697A8> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x4ee7000 -  0x5001ffb  com.apple.avfoundation (2.0 - 361.32) <7EDA9CE4-6147-302E-8B98-9F753E2849EB> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x50a0000 -  0x50d8ff3  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311.1) <224D00BA-092E-38A6-9BBB-6E8B51202227> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x50f5000 -  0x511cff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <277A523B-0808-366A-A6E4-99C765C38387> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x5131000 -  0x5162ff3  com.apple.FWAVCPrivate (52.47 - 47) <0A275296-00A0-3227-9201-1F8CB0E054AF> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x5179000 -  0x51c1ffb  com.apple.CoreMediaIOServices (171.0 - 3244) <A54BCA4B-40BD-3B8C-BDA9-FFB50DA5FDC9> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x51e3000 -  0x5282ff7  com.apple.imcore (8.0 - 900) <E17C2E05-730E-3157-9FC4-6B67456054C8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x52a9000 -  0x52fdff7  com.apple.imfoundation (8.0 - 900) <94D754EA-3FCB-30A8-8C96-7A0FA2DB7D9A> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    0x5329000 -  0x5331ff7  com.apple.marco (8.0 - 900) <FAE5B666-B0A2-3348-9DAF-55D6851139E6> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x5339000 -  0x5360ff7  com.apple.ExpressCheckout (1.0 - 1.0) <ACE460FA-35FB-3C0E-9BA8-937F560F0847> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/ExpressCheckout.framework/Versions/A/ExpressCheckout
    0x537b000 -  0x53a9ffb  com.apple.iLifeImageAnalysis (3.0 - 3) <82BEE3DD-958D-35A6-B167-C8C0C31227DB> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/iLifeImageAnalysis.framework/Versions/A/iLifeImageAnalysis
    0x67fc000 -  0x6854fff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x6878000 -  0x687bffb +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0xcf4b000 -  0xcf58ff3  com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0xe96c000 -  0xe96dffe  com.apple.AddressBook.LocalSourceBundle (2.1 - 1169) <5184600D-D93E-3267-A3C0-1927BD7DB823> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x12602000 - 0x12796ffb  GLEngine (8.7.25) <37CEB6BA-0A46-3A34-BE81-7A0ED7DE1830> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x127cd000 - 0x1294efff  libGLProgrammability.dylib (8.7.25) <CE1A4DFC-EEB2-37C1-B574-0338666C4017> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x12980000 - 0x1298bfff  libGPUSupport.dylib (8.7.25) <08BED1B3-FD0C-3137-BC0C-39EED6029D84> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x12992000 - 0x129bdff7  GLRendererFloat (8.7.25) <2173CC9F-3A9A-37EB-BB50-3E60ABF7F5A3> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x129c6000 - 0x129ceffd  libcldcpuengine.dylib (2.2.16) <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x129d5000 - 0x129d8ffe  com.apple.DirectoryServicesSource (2.1 - 1169) <F49E7180-F3CF-3C63-8AF3-76C088BA779C> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x1311f000 - 0x131b1fff  unorm8_bgra.dylib (2.2.16) <1298D118-0B14-3F3D-B2CA-348A1C67183E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x131c3000 - 0x13205fff  com.apple.facetimeservices (8.0 - 900) <1C565FAC-C1EE-3327-BB19-6DB8987E703A> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x1321d000 - 0x1326eff7  com.apple.AddressBook.CardDAVPlugin (10.8 - 333) <A8099206-0C6D-3114-A908-F8992CA5CA88> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x1328b000 - 0x1329affd  com.apple.NSServerNotificationCenter (5.0 - 5.0) <86494495-4C08-3673-8B73-04931F3D9345> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x13329000 - 0x1332effe  com.apple.iphoto.accountconfig.Email (9.2 - 9.2) <50B32E94-2383-3409-A2AE-8367DE6CD6EF> /Applications/iPhoto.app/Contents/PlugIns/Email.accountconfigplugin/Contents/Ma cOS/Email
    0x13418000 - 0x1341bfff  com.apple.iphoto.accountconfig.Facebook (1.2 - 1.2) <A69EF05F-5213-3D42-B6C5-97D4C8C5E7A7> /Applications/iPhoto.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents /MacOS/Facebook
    0x15405000 - 0x15408fff  com.apple.iphoto.accountconfig.Flickr (1.1 - 1) <4002CDBC-05C4-3DEF-ADE3-9917FB7050E9> /Applications/iPhoto.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents/M acOS/Flickr
    0x1540e000 - 0x1540fffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x15476000 - 0x15534ff3  ColorSyncDeprecated.dylib (400) <A959DD25-E448-3563-B74E-E58C69961C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x15678000 - 0x1567dff8  com.apple.iphoto.accountconfig.MobileMe (1.1 - 1) <433656FC-3D8F-3088-BCF3-C6765E788E20> /Applications/iPhoto.app/Contents/PlugIns/MobileMe.accountconfigplugin/Contents /MacOS/MobileMe
    0x15683000 - 0x156aaffb  com.apple.iPhoto.FacebookPublisher (1.2 - 1.2) <17607BF1-A294-33E6-B454-49F815BA72C1> /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x156b6000 - 0x156d5ffb  com.apple.iPhoto.FlickrPublisher (1.2 - 1.2) <BEFEC249-367D-30EA-B2C3-DC0AA41A8FED> /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x156df000 - 0x15715ffb  com.apple.iPhoto.MobileMePublisher (1.2 - 1.2) <D3890130-951A-3F09-9D10-04008FEAF6E2> /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x15724000 - 0x1572bfff  com.apple.iPhoto.RSSPublisher (1.1 - 1.1) <C13A2FCB-178C-3CA9-AB1C-44B4C76D26BD> /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x15732000 - 0x15746ff7  com.apple.iPhoto.SharedPhotoStreamPublisher (1.0 - 1.0) <6EA7F7AB-936F-384F-ABD1-D9BDF69B48B3> /Applications/iPhoto.app/Contents/PlugIns/SharedPhotoStreamPublisher.publisher/ Contents/MacOS/SharedPhotoStreamPublisher
    0x16427000 - 0x16434ff7 +net.telestream.license (1.0.8.2-GC - 1.0.8.2-GC) <A61005C5-E6A4-84A6-2A85-38E53CFBD6AF> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x167de000 - 0x16889fff  libcrypto.0.9.7.dylib (106) <B96063DD-DBFC-320E-97C7-9ED5099051AC> /usr/lib/libcrypto.0.9.7.dylib
    0x16e44000 - 0x17039ff2 +net.telestream.wmv.import (2.4.0.11 - 2.4.0.11) <83F7489B-3935-E1BA-B934-69179217A26D> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x8e2fb000 - 0x8ec49ff3  com.apple.GeForceGLDriver (8.10.44 - 8.1.0) <4B231127-7885-33A3-9FC7-7EF42A066FD7> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fec2000 - 0x8fef4e57  dyld (210.2.3) <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x90403feb  com.apple.VideoToolbox (1.0 - 926.87) <D6460276-E1CF-317D-B32F-80EAE916168C> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90404000 - 0x90561ffb  com.apple.QTKit (7.7.1 - 2599.24) <39CC892D-2874-33FE-BE30-87FE07D875BD> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x90562000 - 0x90568fff  com.apple.phonenumbers (1.1 - 47) <0D9B4A12-C1D3-374C-B320-11806C0CCF2A> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x90569000 - 0x905c0ff7  com.apple.ScalableUserInterface (1.0 - 1) <4B538E02-4F41-37FF-81F6-ED43DE0E78CC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x905f7000 - 0x90651ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90652000 - 0x90656fff  com.apple.OpenDirectory (10.8 - 151.10) <E3D2E1A4-6E55-3C23-BCB4-7B9D31EFD605> /

    You may need to update your version of Flip4Mac:
    http://www.telestream.net/flip4mac/overview.htm

Maybe you are looking for

  • Tip: Keyboard remapping for Dvorak layout

    (thanks go to Alex Donald for pointing out the Key Codes program) I use the Dvorak layout program which is not 100% compatible with Aperture's shortcuts, because Aperture's shortcuts are hardwired to the keyboard. fortunately, you can 'rewire' the sh

  • HT4534 Mac Mini HD Video Conferencing

    I am considering purchase of a mac-mini for video conferencing.  This article (http://support.apple.com/kb/HT4534?viewlocale=en_US) refers to "built in camera".  Of course, the mac-mini has no built in camera.  I would be using my HDTV for a monitor.

  • SAP HR certification

    Hi Experts, I am in SAP HR module for the past 2 years.I am preparing for the certification for the same.If anyone has the idea regarding the same please send me the thorough details.I have the hardcopy of THR10 and THR12.Apart from these materials h

  • ALV tree editable

    Hi all,   I have a requirement to display the Data in ALV tree format with some fields as editable.I have to display data in 3 levels,which are of differents structures. To achieve editable in ALV tree display,I have used ALV GRID along with Tree dis

  • Goods movement accounting in Cross Company Code Sales

    Hi everybody, I´m implementing cross company code sales and i have a question about the goods movement accounting in the selling company. In the process, the goods are delivered directly to the final customer by the delivering company. These goods ne