Copy/paste metadata

Can someone help me with copy / paste Metadata in LR 4?  It works perfectly for me in LR 3, put I can get the past metadata function to work.

I went back into LR4 and checked to see if the boxes were checked, and they were not. I use this feature all the time in LR3, and had simply forgotten that I had to go into LR4 and check the boxes again the first time(s) I was using it.  Thanks for your help! I work in the latest version of Lion.  I have not checked all of the boxes for all of the metadata items, but the ones that I have checked now do work.  This would be: keywords, caption, title, copyright, etc.
Again, than you for your prompt answer.

Similar Messages

  • Aperture 3 - Copy/paste metadata to external database

    Hi all, I'm trying to create an external database of the lat., lon, direction, date and other metadata for ~1000 photos. I can see see the metadata alongside the image in browser mode or have it appear at the bottom of the image in full-screen view. I'd like to be able to a) create a table to those data to a text file that I can put in a spreadsheet (fast way) or, b) be able to copy/paste those data separately into the spreadsheet. As it stands now, I cannot do either. I cannot highlight and copy the text. Does someone know where those data are stored or have a solution?
    I appreciate your help.

    I have the same issue. This is what I get when exorting the data:
    Version Name          Title          Urgency          Categories          Suppl. Categories          Keywords          Instructions          Date Created          Contact Creator          Contact Job Title          City          State/Province          Country          Job Identifier          Headline          Provider          Source          Copyright Notice          Caption          Caption Writer          Rating          IPTC Subject Code          Usage Terms          Intellectual Genre          IPTC Scene          Location          ISO Country Code          Contact Address          Contact City          Contact State/Providence          Contact Postal Code          Contact Country          Contact Phone          Contact Email          Contact Website          Label          Latitude          Longitude          Altitude          AltitudeRef
    DSC09894                                                                                                                                                                                                          0
    What am I missing that actually will have it export the real values?

  • Copy and paste metadata

    I'd like to be able to copy and paste metadata from one to many. I envisage it as a process similar to copying and pasting Adobe Camera Raw settings, with a Paste Special style dialog. Camera EXIF data would be excluded, but you'd be choose to paste just the keywords, or the keywords and the description etc.
    While you can always save a metadata template, that's not ideal for routine work. And you have to edit a metadata template manually before risking applying it to other images.
    John

    You could modify the code to suit as an example I have added Description to Keywords
    This just appends the description, if you want to replace uncomment the marked line..
    #target bridge
    DataCopy();
    function DataCopy(){
    var SP = new TabbedPalette( app.document, "Copy MetaData", "CMtab", "script", "left", "top");
    SP.content.onResize = function(){
      var b = this.bounds;
      pnl.bounds = b;
      this.layout.resize(true);
      SP.content.layout.layout(true);
        Keywords=[];
        Description =[];
        Title=[];
        Headline='';
    var pnl = SP.content.add("panel", undefined , "");
    pnl.alignChildren = ["center", "fill"];
    var mainBtnGp = pnl.add("group");
    mainBtnGp.orientation = "column";
    var titleGp = mainBtnGp.add("group");
    titleGp.alignment ="column";
    var title = titleGp.add("statictext", undefined, "Copy/Paste Metadata");
    var g = title.graphics;
    g.font = ScriptUI.newFont ("Arial", 14);
        var gp2 = mainBtnGp.add("group");
    gp2.p1 = gp2.add('panel');
         gp2a = gp2.p1.add('group');
        gp2a.orientation = "column";
    gp2a.alignment ="left";
        gp2a.cb1 = gp2a.add("checkbox",undefined,'Key Words');
        gp2a.cb2 = gp2a.add("checkbox",undefined,'Description');
        gp2a.cb3 = gp2a.add("checkbox",undefined,'Title');
        gp2a.cb4 =gp2a.add("checkbox",undefined,'Headline');
        gp2a.cb5 =gp2a.add("checkbox",undefined,'Desc to Key Words');
        gp2b = gp2.p1.add('group');
        gp2b.orientation = "column";
    gp2b.alignment = "fill"
        gp2b.bu1 = gp2b.add('button',undefined,'Select Data');
         gp2b.bu2 = gp2b.add('button',undefined,'Reset');
         gp2b.bu2.onClick = function(){
         Keywords=[];
         Description=[];
         Title=[];
         Headline='';
         gp2a.cb1.value  = false;
         gp2a.cb2.value  = false;
         gp2a.cb3.value  = false;
         gp2a.cb4.value  = false;
         gp2a.cb5.value  = false;
        gp2b.bu1.onClick = function(){
            var dat = false;
            if(gp2a.cb1.value) dat = true;
            if(gp2a.cb2.value) dat = true;
            if(gp2a.cb3.value) dat = true;
            if(gp2a.cb4.value) dat = true;
            if(gp2a.cb5.value) dat = true;
            if(!dat) {
                alert("Please select at least one checkbox");
                return;
            loadXMPLib();
            var thumb = app.document.selections[0];
    if(!app.document.selections.length) return;
        if(thumb.type != "file") return;
    var selectedFile = thumb.spec;   
    var myXmpFile = new XMPFile( selectedFile.fsName, XMPConst.UNKNOWN, XMPConst.OPEN_FOR_READ);
    myXmp = myXmpFile.getXMP();
    try{
    if(gp2a.cb1.value){
    Keywords = getArrayItems(XMPConst.NS_DC,'subject');
    if(gp2a.cb2.value){
    Description =  getArrayItems(XMPConst.NS_DC, "description");
    if(gp2a.cb3.value){
    Title = getArrayItems(XMPConst.NS_DC, "title");
    if(gp2a.cb4.value){
    Headline =  "\"" + myXmp.getProperty(XMPConst.NS_PHOTOSHOP, "Headline") + "\"";
    Headline=Headline.replace(/\"/g,'');
    if(gp2a.cb5.value){
    Description =  getArrayItems(XMPConst.NS_DC, "description").toString().replace(/\r|\n/g,'');
    unloadXMPLib();
    }catch(e){alert(e +" Line: "+ e.line);}
    gp2b.bu3 = gp2b.add('button',undefined,'Use Metadata');
    gp2b.bu3.onClick = function(){
    var sels = app.document.selections;
    loadXMPLib();
    for (var a in sels){
    var thumb = new Thumbnail(sels[a]);
       if(thumb.hasMetadata){
          var selectedFile = thumb.spec;   
          var myXmpFile = new XMPFile( selectedFile.fsName, XMPConst.UNKNOWN, XMPConst.OPEN_FOR_UPDATE);
      var myXmp = myXmpFile.getXMP();
            try{
            if(gp2a.cb1.value){
            myXmp.deleteProperty(XMPConst.NS_DC,'subject');
            for(var s in Keywords){
            myXmp.appendArrayItem(XMPConst.NS_DC, "subject", Keywords[s], 0,XMPConst.PROP_IS_ARRAY);
        if(gp2a.cb2.value){
            myXmp.deleteProperty(XMPConst.NS_DC, "description");
            myXmp.setLocalizedText( XMPConst.NS_DC, "description", null, "x-default", Description );
        if(gp2a.cb3.value){
            myXmp.deleteProperty(XMPConst.NS_DC, "title");
            myXmp.appendArrayItem(XMPConst.NS_DC, "title", Title, 0, XMPConst.ALIAS_TO_ALT_TEXT);
            myXmp.setQualifier(XMPConst.NS_DC, "title[1]", "http://www.w3.org/XML/1998/namespace", "lang", "x-default");
        if(gp2a.cb4.value){
            myXmp.deleteProperty(XMPConst.NS_PHOTOSHOP, "Headline");
            myXmp.setProperty(XMPConst.NS_PHOTOSHOP, "Headline", Headline);
        if(gp2a.cb5.value){
            //uncomment the line below to remove all keywords before adding the description
           // myXmp.deleteProperty(XMPConst.NS_DC,'subject');
            myXmp.appendArrayItem(XMPConst.NS_DC, "subject", Description, 0,XMPConst.PROP_IS_ARRAY);
        if (myXmpFile.canPutXMP(myXmp)) {
            myXmpFile.putXMP(myXmp);
             myXmpFile.closeFile(XMPConst.CLOSE_UPDATE_SAFELY);
        }catch(e){alert(e+" Line : "+e.line);}
        unloadXMPLib();
    SP.content.layout.layout(true);
    function getArrayItems(ns, prop){
    var arrItem=[];
    try{
    var items = myXmp.countArrayItems(ns, prop);
       for(var i = 1;i <= items;i++){
         arrItem.push(myXmp.getArrayItem(ns, prop, i));
    return arrItem;
    }catch(e){alert(e +" Line: "+ e.line);}
    function loadXMPLib(){
    if (ExternalObject.AdobeXMPScript == undefined) {
        ExternalObject.AdobeXMPScript = new ExternalObject("lib:AdobeXMPScript");
    function unloadXMPLib(){
       if( ExternalObject.AdobeXMPScript ) {
          try{
             ExternalObject.AdobeXMPScript.unload();
             ExternalObject.AdobeXMPScript = undefined;
          }catch (e){ }

  • Shortcut-Bug in Bridge CS6 for Mac / Bridge cant' copy and paste metadata

    The cmd-keys / shortcuts doesn't work in the file info panel btw. in the xmp / iptc fields (e.g. cmd+c, cmd+v, ...) of Adobe Bridge CS6 (Mac OS 10.6.8 and 10.7.3). You are not able to cut and paste info from one box to another like previous versions.
    This bug only appears in the file info window (opened via alt+i) in Bridge CS6 - if you edit information or metadata in the file info panel in Photoshop CS6, the shortcuts or copy and paste from one field to another works.
    The shortcuts also work under Windows (tested under Vista).
    I noticed this minor bug already one in the Photoshop CS6 Beta more than one months ago. I hoped that this was corrected in the official test version, but unfortunately it is not. Although it is a minor bug, it is IMHO a basic function and would be very helpful in my daily work. Bridge CS6 and ACR 7 are very good and meet my expect ions or needs - it is too bad, that such a small thing is making working with the application a little bit annoying.
    It would be nice, if you could forward this to Adobe engineers that they can fix it.
    Thanks so much!

    Thanks! If there is a workaround or simple solution, I would be very glad if you could inform me.
    Christian
    (signature removed by the Admin)
    Am 14.05.2012 um 13:49 schrieb FrankBiederich:
    Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    created by FrankBiederich in XMP SDK - View the full discussion
    Thanks for your report; we'll look into it.
    Frank
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    To unsubscribe from this thread, please visit the message page at Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in XMP SDK by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.
    Message was edited by: Arpit Kapoor

  • Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata

    The cmd-keys / shortcuts doesn't work in the xmp file info panel btw. in the xmp / iptc fields (e.g. cmd+c, cmd+v, ...) of Adobe Bridge CS6 (Mac OS 10.6.8 and 10.7.3). You are not able to cut and paste info from one box to another like previous versions.
    This bug only appears in the xmp file info window (opened via alt+i) in Bridge CS6 - if you edit information or metadata in the file info panel in Photoshop CS6 copy and paste from one field to another works.
    The shortcuts also work under Windows (tested under Vista).
    I noticed this minor bug already one in the Photoshop CS6 Beta more than one months ago. I hoped that this was corrected in the official test version, but unfortunately it is not. Although it is a minor bug, it is IMHO a basic function and would be very helpful in my daily work - it is too bad, that such a small thing is making working with the application a little bit annoying.

    Thanks! If there is a workaround or simple solution, I would be very glad if you could inform me.
    Christian
    (signature removed by the Admin)
    Am 14.05.2012 um 13:49 schrieb FrankBiederich:
    Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    created by FrankBiederich in XMP SDK - View the full discussion
    Thanks for your report; we'll look into it.
    Frank
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    To unsubscribe from this thread, please visit the message page at Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in XMP SDK by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.
    Message was edited by: Arpit Kapoor

  • How to copy paste a table structure from word document into Text Field [field format Rich Text]

    In our current implementation we have a Blank page with Text Field [field format Rich Text] on generated PDF Document.
    Once the PDF document is generated, user can copy paste content form any word/rtf document to into the Text Field.
    Pasted content retains all text formatting [Bold, Italic, Underline, Indentation] except the Table format. Text Field is removing table metadata from the content and converting it into plant text.
    Is there anyway to copy paste table structure as it is from word document into Text Field?

    Hi,
    I don't think you can! While you can paste formatted text into the rich text field, the table metadata means nothing to the textfield.
    Niall

  • Can't Copy / Paste from Skype

    Me and my friend often exchange story ideas in skype, and to ensure I don't lose these, I save them into Microsoft Word. Skype, however, has started giving me serious copy / paste problems. I'll select all, then either right click or crtl + v, go to word... and my clipboard doesn't even register as having picked up anything. Only when I manually drag my cursor to select text (which takes an agonizing amount of time--we talk a lot!) will the stupid thing allow me to copy it.
    This problem has been ongoing for quite a few months, but usually restarting my computer would restart the copy / paste functionality, provided I didn't copy anything else before copying from skype. It's now been close to a straight month without it working in skype at all, though, whether I restart my laptop or not.
    Any suggestions? I'm running the latest version of skype.

    If I recall correctly, the Windows clipboard system allows the developer to place different types of data in the clipboard, and convert between them. It is often possible, for example, to paste formatted text as plain text and so on. Large amounts of data are sometimes stored as "links" back to the producing program, so that it can transfer data directly.
    Now this is just a guess, but when you select all with Ctrl+A, there's a chance that Skype in fact puts all the information about the whole message into the clipboard, including its metadata such as time, sender, etc. Dragging would just select the text.
    If the receiving program cannot interpret the metadata, and the plain-text version is not also stored in the clipboard, then pasting would fail.
    Again, as I say, this is just a guess. We would have to get confirmation from the Skype developers as to whether this is true.
    Have you tried pasting into different programs? (Word, plain text editor, Powerpoint...) If one of them can accept the clipboard contents then we may get a further clue.
    EDIT: I found this program which inspects clipboard contents directly - http://www.peterbuettner.de/develop/tools/clipview/ which may also be of use.
    Sean Ellis - uses Skype chat for serious work
    Click here to read my blog post on Skype 7 and basic principles of GUI design

  • Copy-Paste from info Panel

    Info Panel is useful when you wanna count words, spaces, etc.
    But today i wanted to send my client a small note about "we calibrated the frame for a thousand signs and 160 words, there's a few more"
    It would have been very practical to get an easy copy paste of the values in the panel, and their labels.
    Of course, i proposed an official Feature Request there.

    Thanks! If there is a workaround or simple solution, I would be very glad if you could inform me.
    Christian
    (signature removed by the Admin)
    Am 14.05.2012 um 13:49 schrieb FrankBiederich:
    Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    created by FrankBiederich in XMP SDK - View the full discussion
    Thanks for your report; we'll look into it.
    Frank
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    To unsubscribe from this thread, please visit the message page at Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in XMP SDK by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.
    Message was edited by: Arpit Kapoor

  • How Do I Paste Metadata in Bridge?

    In CS5 you can paste metadata in the Bridge>Get Info panel. I can't do it in CS6. How do I copy all my keywords and descriptions?
    Mac 10.6.8

    This is a known issue, thanks for the report Danny!
    You can copy/paste from within Photoshop, but seems the copy/paste in Bridge's file info does nothing at this point.

  • Copy/Paste Settings mystery?

    OK. I've searched this forum and either haven't used the appropriate phrase or it's just not covered.
    I have tried and tried to use "Develop > Copy Settings..." and "Develop > Paste Settings" to transfer various settings from one image to one or more other images in the Develop module. No go.
    I have also tried the "Sync..." button in the Develop Module and THAT doesn't work as expected.
    The *only* way that appears to work is to change to "Auto Sync..." and work from there.
    Now, please, before someone says this is a 'design feature' save your breath. If what I see is correct, then this is a bug. If I'm missing something then please educate me.
    Thanks,
    Bob Peters

    LR is using Ctrl-C or Ctrl-V only for editing text in Keywords, Metadata, etc., it seems. There is no reason not to also use it for image changes as well. It only requires LR check what was selected before the key combination: text in a field? Or an image from filmstrip or grid?
    As there are already ways of copying/templating text for metadata, keywords, etc. such as Sync button, dragging/drop keyword tags, assignment at import,etc. I'm guessing that copying and pasting changes to image are a good additional and logical use for Ctrl/Cmd-C and Ctrl/Cmd-V.
    I disagree with your comparison to MS Office applications. Images in LR are like Powerpoint slides that you receive and edit via MS Powerpoint. There are direct analogs in Powerpoint for LR metaphors: slide sorter (grid), slide outline (filmstrip), slide master formats (develop pre-sets), and on and on... including inserting/updating/deleting/copying/pasting modifications
    Copy and Paste of image edits should be as straightforward as RSP and Office and the most logical action for Ctrl/Cmd-C and -V ... especially because it was so elegant in RSP, the developer(s) of which Adobe brought onto the LR team.
    Nothing wrong with modifiers keys (shift, alt, etc.) for the lesser used contexts of Copy and Paste operations, but get the most important/frequently used contexts using the fewest keys!
    The more I use 1.0 version of LR in trial, the more convinced I am that it's still rough around the edges and a half-step backwards in productivity compared to my current workflow, though I see it's potential. I'm probably going to wait for 1.5 or Service Pack 1 or whatever the next update release is and re-evaluate then.
    I think LR needs to be a little more flexible to better work the way individual photographers would like it to work instead of (what seems to be) imposing a more rigid, uniform discipline on the way all LR users work.
    "Your mileage may vary".

  • Posting Feature Requests for others to Copy/Paste

    I recently posted a Feature Request I sent to Adobe for another member to copy/paste as his own FR since he liked the suggestion (see the FR below). 
    After doing so, I got the idea that we could all do this: copy/paste FRs we send to Adobe into threads on this forum to help each other support the idea with similar requests, or even copy/paste the FR as our own.  With limited resources and time, there's only so many requests Adobe can implement in every new version.   That why it's so important that new features the Premiere Pro team invests their hard work and time on be the tools that would benefit the greatest number of editors.  The more people back up certain ideas, the more likely they'll be implemented sooner than later.
    There's power in numbers, so how about using this forum to share our best ideas and make it easier for others to add their voice of support?  It's great that Adobe provides us with a way to send them feedback, but it's too bad that it's a one-way conversation with very little, if any, dialogue back and forth between the submitter and Adobe.  That's why I thought it would be great to bring more of that potential dialogue here, where we can share ideas and support the creation of an ever better Premiere Pro!
    If you've never posted a FR or BR (Bug Report) before, you can easily join the effort to make Premiere Pro become all that it can be, here: www.adobe.com/go/wish
    Comments?  Ideas?  Please share!
    Here's the FR I pasted in another thread, as an example. 
    *******Enhancement / FMR*********
    Brief title for your desired feature:  Drag&Drop Modified clips into Project Window
    How would you like the feature to work?
    Ability to Drag&Drop clips with effects, motion settings, keyframes and/or markers back into the Project Window from the Timeline for later use.
    Why is this feature important to you?
    The Project Window is far better than Sequences for storing/organizing modified clips for future use, since it is:
    Searchable
    Sortable
    Viewable in Icon and List views
    Full of helpful metadata columns such as 'Video/Audio Usage'
    Foolproof in that the original sequence can be deleted without losing any created subclips
    Given these advantages, why only allow us to store modified clips in Sequences? Please fix this by allowing users to Drag&Drop clips from the Timeline to the Project Window while preserving all of their modifications (effects, keyframes, motion settings and/or markers).

    Comments?  Ideas?  Please share!
    As it has already been discussed in this thread (and duplicated threads are not allowed in Adobe Forums), the aforementioned feature request is mainly based on the false statement that an editor can either store raw clips in the Project panel or modified clip in the timeline. That's false because an editor can nest modified clip right in the timeline and the nested sequence will be automatically stored in the Project panel, turning into a regular reusable asset.
    Unfortunately, the OP, as was also outlined in the duplicated thread, carefully avoids any mentioning this ability, which becomes your second nature if you use After Effects (which is unlike FCP is a part of Adobe Suite).
    However, since the OP asks for sharing ideas, I do not hesitate to do this once again. Here is the feature request intended to improve the usability of such PrPro assets as 'Sequences' without breaking existing workflow:
    *******Managing Sequences*******
    It would be nice if managing capabilities for such assets as 'Sequences' were extended with the following features:
    - similar live thumbnail view, which was introduced for footages in CS6. A small 'Sequence' badge in the top left corner of the thumbnail would allow to differentiate between sequences and clips;
    - enabled metadata and ability to handle them like for any other regular asset;
    - ability to remove empty audio or video tracks completely, i.e. get a sequence as an Audio or Video asset only;
    - pop-up dialog box on hitting 'Nest' command, which would allow to give meaning name instead of default 'Nested Sequence XXX', contain 'Delete All Empty Tracks' checkbox and a button for advanced dialog for logging metadata right on a brand new asset creation.
    These features would improve an ability to exploit sequences as reusable assets and preserve consistent applications behaviour throughout the Suite instead of breaking existing workflow by inventing new FCP style 'subclip with effects' type of asset. See this discussion in PrPro Forum for some more details:
    http://forums.adobe.com/thread/1204107?tstart=0

  • Copy/pasting date dimension to different project

    Hi all,
    We need to copy the date dimension from one project to another. Normally copy/paste can be used, but... not on the date dimension! I tried export/import with mdl but that imports it back to the same project?!
    Thanks,
    Ed

    Hi Ed,
    look at this thread (steps for importing MDL to different project name)
    Re: How to Import Metadata into another projec
    Regards,
    Oleg

  • Copy - Pasting .mov clips causes QT crash?

    I don't have occassion to do this often but for some (long!) time now I find that when I've copy-pasted a few short clips together (to make a longer clip), QT will suddenly quit without warning. This is accompanied by the message asking if I want to make a report to Apple. (Lately - I've given up on reporting - the problem has existed over a couple generations of QT (6.x and 7.x) on two different Macs (a G4 eMac and an Intel Mac Pro).
    Apparently this will never be fixed - but does anyone have any "work around" to avoid these crashes?

    Hello David,
    All the video clips I take are done with one of two Canon cameras - both are "still" cameras which take outstanding video (stored as .AVI files). When I'm copy-pasting or as happened this morning, just changing the size of these files (whether or not I've already saved them as .mov files), - QuickTime quits like a pathetic, sick little puppy. This has been happening for *a year!* now! (before around v. 6.5) used to be a rock solid foundation for "basic video" editing and conversion.
    Ironically - I'm running QT 7.4 on the Mac Pro right now and it does not have any problem with MPEG4 files - which is what you're asking about.
    I did send Apple another report on this just before replying to your post - here is that (with crash report). -->>
    "Definitely since v. 7.0 - on a G4 eMac running 10.3.9 w/ max RAM and on a Intel Mac Pro running 10.4.9 w/ 5 GB RAM - QuickTime is always quitting while performing the basic tasks ---
    just changed the size of a movie from 640 x 480 to 320 x 240 and the %$#@&* application QUIT!~!"
    Date/Time: 2008-01-25 10:48:20.263 -0500
    OS Version: 10.4.9 (Build 8P2137)
    Report Version: 4
    Command: QuickTime Player
    Path: /Applications/QuickTime Player.app/Contents/MacOS/QuickTime Player
    Parent: WindowServer [65]
    Version: 7.4 (92)
    Build Version: 3
    Project Name: QuickTime
    Source Version: 7270000
    PID: 745
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x65006400
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x90a594c7 objc_msgSend + 23
    1 com.apple.AppKit 0x93794377 -[NSNavOutlineDelegate outlineView:willDisplayCell:forTableColumn:item:] + 103
    2 com.apple.AppKit 0x933df361 -[NSOutlineView _delegateWillDisplayCell:forColumn:row:] + 85
    3 com.apple.AppKit 0x933c7065 -[NSTableView _drawContentsAtRow:column:clipRect:] + 506
    4 com.apple.AppKit 0x933c6813 -[NSOutlineView _drawContentsAtRow:column:clipRect:] + 296
    5 com.apple.AppKit 0x933c602b -[NSTableView drawRow:clipRect:] + 335
    6 com.apple.AppKit 0x933c5ed2 -[NSOutlineView drawRow:clipRect:] + 240
    7 com.apple.AppKit 0x9378eeab -[NSNavOutlineView drawRow:clipRect:] + 670
    8 com.apple.AppKit 0x933c37ce -[NSTableView drawRowIndexes:clipRect:] + 99
    9 com.apple.AppKit 0x933c26a4 -[NSTableView drawRect:] + 2499
    10 com.apple.AppKit 0x932ee3b1 -[NSView _drawRect:clip:] + 3228
    11 com.apple.AppKit 0x932ed40b -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 614
    12 com.apple.AppKit 0x932ff36f _recursiveDisplayInRect2 + 149
    13 com.apple.CoreFoundation 0x9083fb30 CFArrayApplyFunction + 307
    14 com.apple.AppKit 0x932ed613 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1134
    15 com.apple.AppKit 0x932ff36f _recursiveDisplayInRect2 + 149
    16 com.apple.CoreFoundation 0x9083fb30 CFArrayApplyFunction + 307
    17 com.apple.AppKit 0x932ed613 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1134
    18 com.apple.AppKit 0x932ff36f _recursiveDisplayInRect2 + 149
    19 com.apple.CoreFoundation 0x9083fb30 CFArrayApplyFunction + 307
    20 com.apple.AppKit 0x932ed613 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1134
    21 com.apple.AppKit 0x932ff36f _recursiveDisplayInRect2 + 149
    22 com.apple.CoreFoundation 0x9083fb30 CFArrayApplyFunction + 307
    23 com.apple.AppKit 0x932ed613 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1134
    24 com.apple.AppKit 0x932ff36f _recursiveDisplayInRect2 + 149
    25 com.apple.CoreFoundation 0x9083fb30 CFArrayApplyFunction + 307
    26 com.apple.AppKit 0x932ed613 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1134
    27 com.apple.AppKit 0x932ff36f _recursiveDisplayInRect2 + 149
    28 com.apple.CoreFoundation 0x9083fb30 CFArrayApplyFunction + 307
    29 com.apple.AppKit 0x932ed613 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1134
    30 com.apple.AppKit 0x932ff36f _recursiveDisplayInRect2 + 149
    31 com.apple.CoreFoundation 0x9083fb30 CFArrayApplyFunction + 307
    32 com.apple.AppKit 0x932ed613 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1134
    33 com.apple.AppKit 0x932ec473 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 217
    34 com.apple.AppKit 0x932ed041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    35 com.apple.AppKit 0x932ed041 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    36 com.apple.AppKit 0x932ebb78 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 290
    37 com.apple.AppKit 0x932eb362 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 523
    38 com.apple.AppKit 0x932eac8e -[NSView displayIfNeeded] + 439
    39 com.apple.AppKit 0x932eaa32 -[NSWindow displayIfNeeded] + 168
    40 com.apple.AppKit 0x9333ad6c _handleWindowNeedsDisplay + 206
    41 com.apple.CoreFoundation 0x9082ed6e __CFRunLoopDoObservers + 342
    42 com.apple.CoreFoundation 0x9082de10 CFRunLoopRunSpecific + 827
    43 com.apple.CoreFoundation 0x9082dace CFRunLoopRunInMode + 61
    44 com.apple.HIToolbox 0x92de98d8 RunCurrentEventLoopInMode + 285
    45 com.apple.HIToolbox 0x92de8f19 ReceiveNextEventCommon + 184
    46 com.apple.HIToolbox 0x92de8e39 BlockUntilNextEventMatchingListInMode + 81
    47 com.apple.AppKit 0x9326f465 _DPSNextEvent + 572
    48 com.apple.AppKit 0x9326f056 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    49 com.apple.quicktimeplayer 0x0000c13a 0x1000 + 45370
    50 com.apple.AppKit 0x93268ddb -[NSApplication run] + 512
    51 com.apple.AppKit 0x9325cd2f NSApplicationMain + 573
    52 com.apple.quicktimeplayer 0x0006186a 0x1000 + 395370
    53 com.apple.quicktimeplayer 0x00061791 0x1000 + 395153
    Thread 1:
    0 libSystem.B.dylib 0x90009bf7 machmsgtrap + 7
    1 com.unsanity.ape 0xc0001d48 _apeagent + 307
    2 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90009bf7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082e2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082dace CFRunLoopRunInMode + 61
    3 com.apple.audio.CoreAudio 0x9146841e HALRunLoop::OwnThread(void*) + 158
    4 com.apple.audio.CoreAudio 0x91468239 CAPThread::Entry(CAPThread*) + 93
    5 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce20b7 TSWaitOnSemaphoreCommon + 163
    2 ...ickTimeComponents.component 0x97efca7e ReadSchedulerThreadEntryPoint + 4723
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce20b7 TSWaitOnSemaphoreCommon + 163
    2 ...ple.CoreServices.CarbonCore 0x90cebff0 AIOFileThread(void*) + 1068
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce20b7 TSWaitOnSemaphoreCommon + 163
    2 ...ple.CoreServices.CarbonCore 0x90ce909d TimerThread + 87
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce20b7 TSWaitOnSemaphoreCommon + 163
    2 ...ple.CoreServices.CarbonCore 0x90cecbad DeferredTaskThread + 57
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x90048e07 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce20b7 TSWaitOnSemaphoreCommon + 163
    2 com.apple.QuickTime 0x9440facf VideoDecodeThread + 63
    3 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 8:
    0 libSystem.B.dylib 0x900247e7 semaphorewait_signaltrap + 7
    1 com.apple.CoreVideo 0x940e398e CVDisplayLink::runIOThread() + 1104
    2 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 9:
    0 libSystem.B.dylib 0x900247e7 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x9284726c -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.AppKit 0x93346270 -[NSUIHeartBeat _heartBeatThread:] + 377
    3 com.apple.Foundation 0x927f12e0 forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 10:
    0 libSystem.B.dylib 0x90026c7c kevent + 12
    1 ...ple.CoreServices.CarbonCore 0x90cb8f94 PrivateMPEntryPoint + 51
    2 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 11:
    0 libSystem.B.dylib 0x900247e7 semaphorewait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90cb9139 MPWaitOnQueue + 198
    2 com.apple.DesktopServices 0x92718953 TNodeSyncTask::SyncTaskProc(void*) + 143
    3 ...ple.CoreServices.CarbonCore 0x90cb8f94 PrivateMPEntryPoint + 51
    4 libSystem.B.dylib 0x90024147 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x65006400 ebx: 0x934690cd ecx: 0x90ac1fc8 edx: 0x15fc0dd0
    edi: 0x65006408 esi: 0x15fc0dd0 ebp: 0xbfffd0a8 esp: 0xbfffd014
    ss: 0x0000001f efl: 0x00010202 eip: 0x90a594c7 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x152fff com.apple.quicktimeplayer 7.4 (92) /Applications/QuickTime Player.app/Contents/MacOS/QuickTime Player
    0x1f5000 - 0x1f6fff com.Logitech.Control Center.Scroll Enhancer 2.2.2 /Library/Application Enhancers/LCC Scroll Enhancer.ape/Contents/MacOS/LCC Scroll Enhancer
    0x3d3000 - 0x3dafff com.unsanity.smartcrashreports Smart Crash Reports version 1.2.1 (1.2.1) /Users/jacknoel/Library/InputManagers/Smart Crash Reports/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
    0x1601b000 - 0x16174fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x161a0000 - 0x16312fff com.apple.GeForceFXGLDriver 1.4.52 (4.5.2) /System/Library/Extensions/GeForceFXGLDriver.bundle/Contents/MacOS/GeForceFXGLD river
    0x16338000 - 0x16354fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x1635b000 - 0x1637ffff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x16729000 - 0x16765fff com.apple.QuickTimeFireWireDV.component 7.4 (92) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x16771000 - 0x1678bfff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x16790000 - 0x16795fff com.apple.AppleMPEG2Codec 1.0 (211) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x1679b000 - 0x167b4fff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x167b8000 - 0x167b9fff com.apple.DataRefInspector 7.4 (92) /Applications/QuickTime Player.app/Contents/PlugIns/DataRefInspector.propPane/Contents/MacOS/DataRefIns pector
    0x167fa000 - 0x16a3afff net.telestream.wmv.import 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x16a72000 - 0x16c34fff net.telestream.wmv.advanced 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x172e8000 - 0x172ebfff com.apple.AnnotationInspector 7.4 (92) /Applications/QuickTime Player.app/Contents/PlugIns/AnnotationInspector.propPane/Contents/MacOS/Annotat ionInspector
    0x172f1000 - 0x172f5fff com.apple.AudioSettingsInspector 7.4 (92) /Applications/QuickTime Player.app/Contents/PlugIns/AudioSettingsInspector.propPane/Contents/MacOS/Audi oSettingsInspector
    0x172fb000 - 0x172fcfff com.apple.HintTrackInspector 7.4 (92) /Applications/QuickTime Player.app/Contents/PlugIns/HintTrackInspector.propPane/Contents/MacOS/HintTrac kInspector
    0x1735b000 - 0x1735efff com.apple.StreamingNetworkInspector 7.4 (92) /Applications/QuickTime Player.app/Contents/PlugIns/NetworkInspector.propPane/Contents/MacOS/NetworkIns pector
    0x17363000 - 0x17366fff com.apple.SettingsInspector 7.4 (92) /Applications/QuickTime Player.app/Contents/PlugIns/SettingsInspector.propPane/Contents/MacOS/SettingsI nspector
    0x1736c000 - 0x17371fff com.apple.VisualTrackInspector 7.4 (92) /Applications/QuickTime Player.app/Contents/PlugIns/VisualTrackInspector.propPane/Contents/MacOS/Visual TrackInspector
    0x175fa000 - 0x17786fff com.apple.audio.codecs.Components 1.5.1 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x70000000 - 0x700fbfff com.apple.audio.units.Components 1.4.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8f4f0000 - 0x8f4f3fff com.apple.CoreMediaAuthoringPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x8f760000 - 0x8f79dfff com.apple.CoreMediaIOServicesPrivate 1.4 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x8f840000 - 0x8f86afff com.apple.CoreMediaPrivate 1.4 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x8f8c0000 - 0x8f95ffff com.apple.QuickTimeImporters.component 7.4 (92) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x8fe00000 - 0x8fe4afff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x90172fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c2000 - 0x901c4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c6000 - 0x90203fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9022a000 - 0x90300fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90320000 - 0x90775fff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080c000 - 0x908d4fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90912000 - 0x90912fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90914000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91046fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91059000 - 0x91069fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91074000 - 0x910f3fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112d000 - 0x9114bfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91157000 - 0x91165fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91168000 - 0x91307fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91405000 - 0x9140dfff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91414000 - 0x9143afff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9144c000 - 0x91453fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91457000 - 0x914cdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151e000 - 0x9151efff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91520000 - 0x9154cfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9155f000 - 0x91633fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166e000 - 0x916e1fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170f000 - 0x917b8fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917de000 - 0x91829fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91848000 - 0x9185efff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186a000 - 0x91885fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91890000 - 0x918cdfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e1000 - 0x918edfff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f4000 - 0x91933fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91946000 - 0x919f8fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a3e000 - 0x91a54fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a59000 - 0x91a77fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7c000 - 0x91adbfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aed000 - 0x91af1fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af3000 - 0x91b77fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b7b000 - 0x91bb8fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bbe000 - 0x91bd8fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bdd000 - 0x91bdffff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be1000 - 0x91cbffff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cdc000 - 0x91cdcfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cde000 - 0x91d6cfff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d73000 - 0x91d73fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d75000 - 0x91dcefff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dd7000 - 0x91dfbfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e03000 - 0x9220cfff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92246000 - 0x925fafff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92627000 - 0x92714fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92716000 - 0x92793fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d4000 - 0x92a04fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b1e000 - 0x92b35fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b40000 - 0x92b98fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bac000 - 0x92bacfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bae000 - 0x92bbefff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bcd000 - 0x92bd5fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bdb000 - 0x92be1fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92be7000 - 0x92c78fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c8c000 - 0x92c90fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c93000 - 0x92cb1fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cc3000 - 0x92cc9fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92ccf000 - 0x92d32fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d59000 - 0x92d9afff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dc1000 - 0x92dcffff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dd6000 - 0x92ddbfff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de0000 - 0x930d5fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931db000 - 0x931e6fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93256000 - 0x93256fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93258000 - 0x9390efff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c8f000 - 0x93d0afff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d43000 - 0x93dfdfff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e40000 - 0x93e40fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e42000 - 0x94003fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94049000 - 0x9408afff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94092000 - 0x940ccfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940d1000 - 0x940e7fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9427b000 - 0x9428afff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94291000 - 0x9429cfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942e8000 - 0x94302fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94308000 - 0x9461ffff com.apple.QuickTime 7.4.0 (92) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9550a000 - 0x95592fff com.apple.QTKit 7.4 (92) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96563000 - 0x96563fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96add000 - 0x96bb4fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96bcf000 - 0x96bd0fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96bd2000 - 0x96bd7fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96cba000 - 0x96cddfff com.apple.AppleVAFramework 3.3.10 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x975ae000 - 0x97685fff com.apple.QuartzComposer 1.2.4 (32.22) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97ee5000 - 0x98d27fff com.apple.QuickTimeComponents.component 7.4 (92) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98f75000 - 0x9904cfff com.apple.QuickTimeH264.component 7.4 (92) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9931c000 - 0x993e5fff com.apple.QuickTimeMPEG4.component 7.4 (92) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0xc0000000 - 0xc000efff com.unsanity.ape 2.0.3 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Model: MacPro1,1, BootROM MP11.005C.B04, 4 processors, Dual-Core Intel Xeon, 2.66 GHz, 5 GB
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Memory Module: DIMM Riser A/DIMM 1, 512 MB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser A/DIMM 2, 512 MB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser A/DIMM 3, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser A/DIMM 4, 1 GB, DDR2 FB-DIMM, 667 MHz
    Network Service: Built-in Ethernet 2, Ethernet, en1
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-1
    Serial ATA Device: ST3250820AS P, 232.89 GB
    Serial ATA Device: Hitachi HDT725040VLA360, 372.61 GB
    Serial ATA Device: Hitachi HDP725050GLA360, 465.76 GB
    Serial ATA Device: Hitachi HDP725050GLA360, 465.76 GB
    Parallel ATA Device: OPTIARC DVD RW AD-7170A
    USB Device: Mass Storage Device, Generic, Up to 480 Mb/sec, 500 mA
    USB Device: Hub, Up to 480 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: USB-PS/2 Optical Mouse, Logitech, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Logitech USB Speaker, Logitech, Up to 12 Mb

  • ITunes 10.4.0.80 does not allow copy / paste for album artwork.

    Only importing picture now works.  Any one else having this problem?

    Have you tried to drag & drop artwork instead of copy & paste? It seems to work just fine too.
    The only issue I've faced with album artwork is what turingtest2 has mentioned, which is hardly an issue for me since I use MP3tag to edit ID3 metadata.
    Hope that helps,

  • Copy/paste in save as dialog box

    I am using your pdf plugin with Safari but when I click the save icon I cannot paste text into the file name box.  I have to manually type it in.  Can I copy & paste in the save dialog box?

    Safari 6.0.1 OS X 10.8.2 Reader 10.1.4
    The plugin works for me I just need copy/paste ability when saving the file.

Maybe you are looking for