Fonts won't load into Leopard Font Book

My fonts won't load into my font book, but they are loading into the system. I reloaded my OS software hoping it would fix the problem, but it hasn't. Anyone with suggestions on what to do would be greatly apprecitated!!!

My fonts won't load into my font book, but they are loading into the system.
That's kind of contradicting. Are you saying you can manually place the fonts into a Fonts folder and they'll work, but can't be added to Font Book? Or they aren't working at all? If they're Type 1 PostScript fonts, read on.
Type 1 PostScript fonts are a set. One file is a suitcase containing all of the low res bitmap screen fonts. The rest are the outline printer fonts. As an example, here's Adobe Garamond.
Adobe Garamond
AGarBol
AGarBolIta
AGarIta
AGarReg
AGarSem
AGarSemIta
The first file which I highlighted in green is the font suitcase of bitmap screen fonts. The rest are the outline printer fonts.
1) The files for a Type 1 PostScript font must have both the screen and printer fonts for a given set in order to work. They also must be in the same folder.
2) The suitcase of bitmap fonts will work alone, but output will be terrible since the system will print the fonts using the 72 dpi screen fonts in the suitcase if the outline portions are missing.
3) Having only the outline fonts will not work. You will get exactly what you are having problems with. You can see the fonts, but they will not load. That's not a problem with Font Book, Suitcase or other font manager. None of them, nor the system itself will load outline fonts without the matching suitcase of screen fonts present.

Similar Messages

  • My MacBook running 10.5.8 won't load Snow Leopard. Any advise?

    My MacBook running 10.5.8 won't load Snow Leopard. I can hear the disk drive trying, but then it just ejects. I have run the repair disk permissions, no luck still. Any advise?

    CD/DVD Loading Problems                        
    CD/DVD Drive - Troubleshooting See troubleshooting section.
    CD/DVD Drive - Troubleshooting (2)

  • The file just won't load into array...Please Help!

    hi i need some help in loading a binary file into an array so that i can edit the data that was saved from previous run..
    i could save the file but after that when i try to load it back to memory...i can't...ie. all the information keyed in were lost...please help
    this is the Code for the loading process...
         public static void loadAircraft (ArrayList aircraft) {
              try {
                   FileInputStream filein = new FileInputStream(".\\Data\\Aircraft.bin");
                   ObjectInputStream objectin = new ObjectInputStream(filein);
                   Aircraft craft = (Aircraft) objectin.readObject();
                   aircraft.add(craft);
                   objectin.close();
                   filein.close();
              catch (Exception e) {}
         }the above code won't load anything into memory...is there a way for overcoming this?
    inside the Aircraft class there are four different data of which they contain two differen data types.
    one of which is String and the other three are in int.
    Awaiting for reply...thanks

    yes...its some objects of an array that i am trying to load back...
    erm...i'll show you the whole code maybe...
    //to reference the swing library
    import javax.swing.*;
    import java.util.*;
    import java.io.*;
    public class SetupAircraft {
         static ArrayList aircraft;
         public static void init () {
              aircraft = new ArrayList(5);
              loadAircraft(aircraft);
         //opens up another sub group while the user
         //entered 1 as his/her option in the SetupSystem
         //menu
         public static void Setup () {
              //this will create a string that is going to be displayed
              //in the input dialog box
              String menu = "  Please select an option:  \n"
                              +"----------------------------\n"
                              +"1) Add New Aircraft\n"
                              +"2) Edit Existing Aircraft\n"
                              +"3) List Aircraft\n"
                              +"4) Delete Existing Aircraft\n"
                              +"5) Save\n"
                              +"6) Return to Main Menu\n\n"
                              +"   Enter a number between 1-6\n";
              //declare a field named option for selection through menu
              int option = 0;
              //continue the loop until the user inputs the number 6
              do {
                   //error handling for the input from the menu
                   //if the input is not integer the error is caught and
                   //reassigning option to be 0
                   try {
                        option = Integer.parseInt(JOptionPane.showInputDialog(null, menu,
                                   "Setup Aircraft", JOptionPane.QUESTION_MESSAGE));
                   catch (NumberFormatException e) {
                        option = 0;
                   //determine which option the user has chosen
                   //and enters the respective section
                   switch (option) {
                        case 1: add(aircraft);
                                  break;
                        case 2: edit(aircraft);
                                  break;
                        case 3: list(aircraft);
                                  break;
                        case 4: //delete(aircraft);
                                  break;
                        case 5: save(aircraft);
                                  break;
                        case 6:     return;
                        default: JOptionPane.showMessageDialog(null, "Please enter a number between 1-6",
                                   "Alert", JOptionPane.ERROR_MESSAGE);
                                   option = 0;
              while (true);
         public static void add (ArrayList aircraft) {
              String type = "";
              int first = 0;
              int business = 0;
              int economy = 0;
              do {
                   try {
                        type = JOptionPane.showInputDialog(null,"Enter Aircraft Type", "Prompt for Type",
                        JOptionPane.QUESTION_MESSAGE);
                        try {
                             if(aircraft.contains(type)) {
                                  JOptionPane.showMessageDialog(null, type + " already exist!",
                                  "Error", JOptionPane.ERROR_MESSAGE);
                                  type = "-100";
                        catch (Exception e) {}
                        if (type=="-100");
                        else if (type.length()==0) {
                             JOptionPane.showMessageDialog(null, "Please enter an aircraft type",
                             "Error", JOptionPane.ERROR_MESSAGE);
                        else if (!(type.startsWith("-",3))) {
                             JOptionPane.showMessageDialog(null, "Please enter the aircraft type with XXX-XXX format where X is integer.",
                             "Error", JOptionPane.ERROR_MESSAGE);
                             type = "0";
                   //catch the input error that the user has produces.
                   catch (Exception e) {
                        return;
              while (!(type.startsWith("-",3)));
              //try to ask the user for the passenger's name and if the name field contains
              //no characters at all repeat the prompt for name field until the user presses
              //Cancel.
              try {
                   first = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter First Class Capacity",
                   "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
              catch (Exception e) {
                   String error = "For input string:";
                   if (e.getMessage() == "null") {
                        return;
                   else if (e.getMessage().startsWith(error)) {
                        JOptionPane.showMessageDialog(null, "Please enter only numbers",
                        "Error", JOptionPane.ERROR_MESSAGE);
              try {
                   business = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter Business Class Capacity",
                   "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
              catch (Exception e) {
                   String error = "For input string:";
                   if (e.getMessage() == "null") {
                        return;
                   else if (e.getMessage().startsWith(error)) {
                        JOptionPane.showMessageDialog(null, "Please enter only numbers",
                        "Error", JOptionPane.ERROR_MESSAGE);
              try {
                   economy = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter Economy Class Capacity",
                   "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
              catch (Exception e) {
                   String error = "For input string:";
                   if (e.getMessage() == "null") {
                        return;
                   else if (e.getMessage().startsWith(error)) {
                        JOptionPane.showMessageDialog(null, "Please enter only numbers",
                        "Error", JOptionPane.ERROR_MESSAGE);
              Aircraft newAircraft = new Aircraft (type, first, business, economy);
              aircraft.add(newAircraft);
              JOptionPane.showMessageDialog(null, "Aircraft Sucessfully Added",
              "Successful", JOptionPane.INFORMATION_MESSAGE);
         public static void edit (ArrayList aircraft) {
              String type = "";
              int first = 0;
              int business = 0;
              int economy = 0;
              do {
                   try {
                        type = JOptionPane.showInputDialog(null, "Enter Aircraft Type to Edit",
                        "Prompt for Type", JOptionPane.QUESTION_MESSAGE);
                        if (type.length()==0) {
                             JOptionPane.showMessageDialog(null,"Please enter an aircraft type",
                             "Error",JOptionPane.ERROR_MESSAGE);
                        else if (!(type.startsWith("-",3))) {
                             JOptionPane.showMessageDialog(null, "Please enter the aircraft type with XXX-XXX format where X is integer.",
                             "Error", JOptionPane.ERROR_MESSAGE);
                             type = "0";
                   catch (Exception e) {
                        return;
              while (!(type.startsWith("-",3)));
              try {
                   int edited = aircraft.indexOf(new UniqueAircraft(type));
                   Aircraft craft = (Aircraft)aircraft.get(edited);
                   try {
                        first = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter First Class Capacity",
                        "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
                   catch (Exception e) {
                        String error = "For input string:";
                        if (e.getMessage() == "null") {
                             return;
                        else if (e.getMessage().startsWith(error)) {
                             JOptionPane.showMessageDialog(null, "Please enter only numbers",
                             "Error", JOptionPane.ERROR_MESSAGE);
                   try {
                        business = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter Business Class Capacity",
                        "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
                   catch (Exception e) {
                        String error = "For input string:";
                        if (e.getMessage() == "null") {
                             return;
                        else if (e.getMessage().startsWith(error)) {
                             JOptionPane.showMessageDialog(null, "Please enter only numbers",
                             "Error", JOptionPane.ERROR_MESSAGE);
                   try {
                        economy = Integer.parseInt(JOptionPane.showInputDialog(null, "Enter Economy Class Capacity",
                        "Prompt for Capacity", JOptionPane.QUESTION_MESSAGE));
                   catch (Exception e) {
                        String error = "For input string:";
                        if (e.getMessage() == "null") {
                             return;
                        else if (e.getMessage().startsWith(error)) {
                             JOptionPane.showMessageDialog(null, "Please enter only numbers",
                             "Error", JOptionPane.ERROR_MESSAGE);
                   Aircraft newAircraft = new Aircraft (type, first, business, economy);
                   aircraft.add(newAircraft);
                   aircraft.add(newAircraft);
                   JOptionPane.showMessageDialog(null, "Successfully edited aircraft\n"+type+" to capacities\n"
                   +"First: "+first+"\n"+"Business: "+business+"\n"+"Economy: "+economy,
                   "Successful", JOptionPane.INFORMATION_MESSAGE);
              catch (Exception e) {
                   JOptionPane.showMessageDialog(null,e.getMessage(),"Error",JOptionPane.ERROR_MESSAGE);
         public static void list (ArrayList aircraft) {
              JOptionPane.showMessageDialog(null, aircraft.size()+" aircraft found", "Found",JOptionPane.INFORMATION_MESSAGE);
              Object[] aircrafts;
              aircrafts = aircraft.toArray();
              for (int i=0;i<aircraft.size();i++) {
                   Aircraft a = (Aircraft) aircrafts;
                   JOptionPane.showMessageDialog(null, a, "Aircrafts" + (i+1), JOptionPane.INFORMATION_MESSAGE);
         public static void save (ArrayList aircraft) {
              try {
                   FileOutputStream fileout = new FileOutputStream(".\\Data\\Aircraft.bin");
                   ObjectOutputStream objectout = new ObjectOutputStream(fileout);
                   Object[] aircrafts;
                   aircrafts = aircraft.toArray();
                   objectout.writeObject(aircrafts);
                   objectout.close();
                   fileout.close();
                   JOptionPane.showMessageDialog(null,aircraft.size()+" aircrafts saved", "Sucessful", JOptionPane.INFORMATION_MESSAGE);
              catch (IOException e) {
                   JOptionPane.showMessageDialog(null,e.getMessage(),"Error",JOptionPane.ERROR_MESSAGE);
         public static void loadAircraft (ArrayList aircraft) {
              try {
                   FileInputStream filein = new FileInputStream(".\\Data\\Aircraft.bin");
                   ObjectInputStream objectin = new ObjectInputStream(filein);
                   Aircraft craft = null;
                   while ((craft=(Aircraft)objectin.readObject())!=null) {
                        aircraft.add(craft);
                   objectin.close();
                   filein.close();
              catch (Exception e) {
                   JOptionPane.showMessageDialog(null,e.toString());
                   e.printStackTrace();
    i think thats a bit too long..but it would explain what i am trying to save...its linking to the class Aircraft tho...
    thanks...i appreciate your help...

  • MP3s Won't Load into iTunes

    The other day I bought some mp3s from Amazon (with no DRM). The Amazon download application loaded them straight into iTunes just fine. But I noticed that the application stored the files in a place I didn't like (I like to organize my music myself). So, I removed the songs from iTunes, moved the files to a proper location, adjusted the volume of the songs (so they match the rest of my music), adjusted the artist name in the tags, and then tried to re-load the songs into iTunes. No luck. Now, I can't get iTunes to recognize and load the songs. They are standard mp3 files that I can play with any other application. But iTunes won't load them, not a folder at a time, not one by one, not using "import." Nothing works. Any ideas? I really want to enjoy this new album that I bought.
    I tried upgrading to the latest version of iTunes. It didn't help.
    Thanks

    I have a very similar, if not, the same problem. I got my music from other sources, but they were all standard unprotected mp3s with nothing special at all about them. I load them into iTunes fine, and they play fine. But sometimes iTunes will randomly just not play a song. The album art is lost for the song, and I cannot modify it because in "Get Info" the tab for album artwork just isn't there. Most of the time single songs are not affected, it's usually a whole album that will just stop being playable to iTunes.
    The songs also disappear off of my iPod, and if I remove them from my iTunes library (but keep the files) and then add them back, well, they simply do not add back. It's as if iTunes didn't even recognize the files as music files. If I keep the songs in my library and try "Convert Selection to MP3," iTunes gives me a useless "Unknown Error -50"
    This happens incredibly rarely, but it has happened to me at least four times in the past year, and the problem has never been fixed. I am convinced that this is just a random failure of iTunes and cannot find any possible explanation for it. It's extremely frustrating because there seems to be any cause at all for this problem to occur.

  • Project won't load into timeline

    When I click on a specific project to open in the timeline the arrow icon showing the "film reel" (in the bottom left corner) switches directions like it's loading it into the timeline, but I still see everything in my project library. FCPX behaves like I'm seeing the timeline, but I'm not. I'm in the middle of editing a documentary and this is really bad timing for the software to give me serious issues like this.
    I trashed preferences using "Preference Manager" and restarted, but it's not fixing the issue.  This happened once before a couple of months ago and that trick fixed it, but it's not working this time.
    Please help!
    I'm using FCPX v10.0.8 on a MacBookPro 2.7 Ghz Intel Core i7 with 16GB of RAM.  My media is on a Pegasus RAID connected via Thunderbolt. 

    This happened again! It has to be a bug, and it's a debiltating bug. FCPX loads your chosen project into the timeline, but the project library does not move out of the way. The software thinks it's moved out of the way and behaves like you are viewing the timeline, but you can't see any clips.
    I trashed prefs, emptied the trash, shut down the computer, started up, launched FCPX, didn't open any other apps.  One project loaded into the timeline (a shorter, less complex one), and then when I went to the one I need to work on....boom! It's broken again.
    I worked almost all day today and it was fine, but now it got into this mode again. I had to quit and restart the program because other things were starting to get buggy (zoom viewer adjustment wasn't working correctly and the graphics on the audio weren't redrawing properly). 
    I'm quite frustrated.

  • Ipod won't load into "My Library," HELP!

    I was using two Ipods. One was loading music into My Library and the other was loading into a file called "Mark's IPOD." I gave the one of the Ipods away - the one that loaded into the library and deleted the songs out of the library. Now I want my remaining Ipod to download into the library when I hook it up to the computer, but it continues to open a separate file: Mark's Ipod.
    I've uninstalled the ipod software and itunes software and reinstalled it, and deleted the files in "My Music," however the problem is still unresolved. Do I need to find a backup file and get rid of that?
    Thanks for your help.

    Hey,
    did you already checked your past purchases? You can try to locate the missing music using the past purchase menu in iTunes Store.
    The missing songs should be visible with the cloud symbol. Just click on the cloud and download the songs.
    If the music isn't displayed here, maybe it is hidden. You can unhide your purchases in your account information. Please select "Store" > "account" and enter your password. Under the subject "iTunes in the Cloud" you should find a menu "hidden purchases" or something. Unhide the music and you should see it on the past purchases like described.

  • Songs won't load into ipod nano from new computer.

    Load itunes library from old computer.  Installed iTunes& authorized new computer.  iTunes recognizes my iPod nano (4th generation), but won't load songs when synchronizing.
    Any suggestions on how to fix?

    I am having a similar problem. I recent reset my iPod as some songs were just skipping during play (they showed on the screen but after a second would just skip to next song), and have been trying to re-sync with no success. I have over 8,000 songs and when I attempt to update songs iTunes puts about 100 or so songs on then stops and states all songs have been updated. When I select update again it adds another 100 or so. Counting to 8,000 is going to take a while!! Don't know what to do...iTunes 5.0.1.4 9/23/2005 firmware. HELP!

  • IMovies won't load into iDVD

    I'm running iDVD 6.0.3 on OS 10.4.9. On the right of my iDVD screen, it says Audio, Photo, Movies, and below this is a window with a folder that says Movies. This folder has a sub-folder named DivX Movies.
    So my first question is, how do I get my projects that I created with iMovie HD (also 6.0.3) into that Movies folder?
    Second, is it possible to combine two separate movies in iMovie HD and import the whole thing to an iDVD project? I opened one movie and tried to import a second, but got an error message that Quicktime couldn't parse it: -43.
    My third question is more complicated. I have a series of movies in various folders on an external firewire drive. Each folder contains 2-3 movies that I want to burn on a single disc, with menus. Last night I dragged one of these folders into the top window on iDVD that I mentioned above, and the thumbnails of those (two) movies appeared in the bottom window. I dragged them onto the Fish theme screen, and the first title appeared at the top in large letters. Below that, it said Play Movie and Scene Selection in smaller text, and below these the second movie title appeared, in the same smaller font size.
    Then, when I tried to rename the bottom title, everything disappeared. The top title reverted to the default "Fish" title and jumped to the right, and the second movie vanished. I quit the project and started over, dragged my folder with the two movies into the window again, and now I find that the thumbnails are no longer loading.
    I tried one of the other folders which contained three movies, but only one of them appeared. It also doesn't load as a picture, but as a Quicktime icon with the large Q in the center and a small iDVD logo on the bottom left.
    Hopefully someone with more experience can offer advice.

    Do all of your movies have chapters?
    When you drag the first movie (let's call it Movie A) onto iDVD, you will get the 'Play Movie' and 'Scene Selection' options (if you have chapters) on the main menu. Selecting the 'Scene Selection' will take you to a submenu with the chapters(scenes) that you created in Movie A.
    When you drag the second movie (call it Movie B), you will get a text button with the Movie B's name, that when selected, will take you to a submenu for Movie B that has the 'Play Movie' and 'Scene Selection' options for Movie B.
    Same thing for subsequent movies (Movie C, etc).
    It sounds as if you wish to have all the movie choices on the main menu like this;
    Movie A Movie B Movie C
    Play MovieA Play MovieB Play MovieC
    Scene SelectA Scene SelectB Scene SelectC
    To do this, go ahead and drop in Movie A. Use the ''free position" option for the buttons so that you can place the 'play movie' and 'scene selection' for Movie A under its title.
    Then, drop in Movie B. Click on its name to go to its submenu. From that submenu, select the 'Play Movie' text, and COPY. Go back to the main menu and PASTE under MovieB's title. Navigate back to the submenu by clicking on Movie B's title again, and DELETE 'Play Movie' from the submenu. Now do the same COPY/PASTE with 'Scene Selection' and return back to the submenu to DELETE it. Now the submenu has been entirely deleted, and the two movie options on are the main iDVD menu.
    Repeat with MovieC, etc.
    Post back if this is not what you are wanting to do.

  • G5 won't boot into Leopard

    Hello everyone,
    I've got a weird issue with my PowerMac G5 and Leopard. My 11 year old was experimenting with the GUI, and it's possible that he ended up interfering with the online OS update, or something along these lines (I wasn't there to see what he did). Or maybe it's a totally different issue. Right now the G5 won't boot. When powered on, it chimes, displays the large brown-ish apple, and stops dead in its tracks. I've tried unplugging it for 5 minutes, pushing the PMU reset button, resetting PRAM, but haven't made much progress. Same result when trying to boot off OS X DVD. When it was working, I noticed that it was having trouble keeping time, I thought the CMOS battery may need replacing soon. Can a dead battery be causing this issue, even after all the resets? When the apple is displayed, does it mean it tried booting the OS and failed, or did it not even get that far? I don't hear any sounds coming from the hard disk. Another oddity: about a minute after it's been powered on with the apple still up on the screen, it starts to sound like a jet engine spooling up. It's a gradual increase in fan RPM (power supply fans also) to the point that it becomes VERY loud and sounds like it's about to blow up. What's going on here?
    Thanks in advance for any ideas / suggestions.

    I have more info... I was able to get the G5 into the boot device selection screen; when I tell it to boot off the hard disk, I hear the hard disk chirp, the G5 throws up the apple screen, and everything goes dead.
    I also booted into the OpenFirmware (as suggested in another forum), and ran the reset-nvram command, followed by reset-all. Now when it boots into the device selection screen, I don't see the DVD at all anymore!
    Thanks!

  • My itunes video won't load into my ipod

    I just received my ipod and have been using it for a week now and I have been purchasing music videos and stand up comedians through itunes.
    One video (about 22 min. long) was purchased and downloaded fine into my ipod. The video played fine, no problems. That is until I realized that a few days later, I could no longer see the video in my ipod. It is still in my itunes but no matter what I do, I cannot get it to load back into my ipod.
    Any suggestions? I am at a total loss.
    Lauren
      Windows XP  

    Thank you for the tip Jeff but I still cannot get the video to load onto my ipod.
    It is in my itunes and plays there fine, but no matter what I do, I am still unsuccessful. And Apple's customer service is NO help at all.
    Lauren
      Windows XP  

  • Aperture won't load with Leopard

    hi,
    i have been through several article in both Aperture and Leopard forum... and i haven't find any answer yet to why Aperture doesn't load since i have installed Leopard.
    i have perform twice a Leopard "erase & installed" followed by Aperture installation and upgrade to 1.5.6 without activating Time Machine. Each time i try to start Aperture, it will crash right after the splash screen. I have not even been able to see the Aperture window since i have installed Leopard. I'm quite desperate.
    here is the report i got. if anyone have any suggestion, it will be appreciate, thanks,
    Process: Aperture [723]
    Path: /Applications/Aperture.app/Contents/MacOS/Aperture
    Identifier: com.apple.Aperture
    Version: 1.5.6 (1.5.6)
    Build Info: Aperture-710231815~3
    Code Type: PPC (Native)
    Parent Process: launchd [70]
    Date/Time: 2007-10-30 22:37:52.749 -0400
    OS Version: Mac OS X 10.5 (9A581)
    Report Version: 6
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000001, 0x0000000090964ee8
    Crashed Thread: 0
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSCellAuxiliary setObject:forKey:]: unrecognized selector sent to instance 0x7906fb0'
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x90964ee8 __TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION__ + 0
    1 libobjc.A.dylib 0x903626a8 objcexceptionthrow + 68
    2 com.apple.AppKit 0x90e24084 -[NSView _drawRect:clip:] + 2972
    3 com.apple.AppKit 0x90e2302c -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 844
    4 com.apple.AppKit 0x90e232d0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1520
    5 com.apple.AppKit 0x90e232d0 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1520
    6 com.apple.AppKit 0x90e21eec -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 640
    7 com.apple.AppKit 0x90eef460 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 304
    8 com.apple.AppKit 0x90e1e6fc -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2328
    9 com.apple.AppKit 0x90d726f8 -[NSWindow displayIfNeeded] + 188
    10 com.apple.AppKit 0x90e1ae64 -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1244
    11 com.apple.prokit 0x0061f430 NSProCenterRect + 30036
    12 com.apple.prokit 0x0061fa80 NSProCenterRect + 31652
    13 com.apple.Aperture 0x0000ce5c 0x1000 + 48732
    14 com.apple.AppKit 0x90d69c2c -[NSApplication run] + 96
    15 com.apple.prokit 0x00620510 NSProApplicationMain + 284
    16 com.apple.Aperture 0x00003608 0x1000 + 9736
    17 com.apple.Aperture 0x0000330c 0x1000 + 8972
    Thread 1:
    0 libSystem.B.dylib 0x90a6e3ec _semwaitsignal + 12
    1 libSystem.B.dylib 0x90aaafa0 pthread_condwait + 1580
    2 libGLProgrammability.dylib 0x94f2ea28 glvmDoWork + 120
    3 libSystem.B.dylib 0x90aa9bf8 pthreadstart + 316
    Thread 0 crashed with PPC Thread State 32:
    srr0: 0x90964ee8 srr1: 0x0202f030 dar: 0x00809000 dsisr: 0x42000000
    r0: 0x903626ac r1: 0xbfffe770 r2: 0xa01255f0 r3: 0x005fc038
    r4: 0x00000000 r5: 0x0000001d r6: 0x00001623 r7: 0x0000001c
    r8: 0x079fc080 r9: 0x0011e580 r10: 0x005fc070 r11: 0x24042442
    r12: 0x90a72094 r13: 0xbfffee38 r14: 0xa0252ce0 r15: 0xbfffee18
    r16: 0xa0252ce0 r17: 0xa0252ce0 r18: 0xa0252ce0 r19: 0xa0252ce0
    r20: 0x00000000 r21: 0xbfffed10 r22: 0xa0252ce0 r23: 0xa0252ce0
    r24: 0x00000000 r25: 0x0790fc00 r26: 0x00000001 r27: 0x00000001
    r28: 0x00000003 r29: 0x07912e40 r30: 0xa0060dc0 r31: 0x90362674
    cr: 0x44042442 xer: 0x00000004 lr: 0x903626ac ctr: 0x90a72094
    vrsave: 0x00000000
    Binary Images:
    0x1000 - 0x4dcffb com.apple.Aperture 1.5.6 (1.5.6) /Applications/Aperture.app/Contents/MacOS/Aperture
    0x5a4000 - 0x5ceffb com.apple.DiscRecordingUI 4.0 (4000.4.10) <a7a1f8fcf837bb132513cbdf821fca33> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x5eb000 - 0x5f3fe7 com.apple.NetServices.BDControl 1.0.4 (1.0.4) /Applications/Aperture.app/Contents/NetServices/Frameworks/BDControl.framework/ Versions/A/BDControl
    0x600000 - 0x6d2fc7 com.apple.prokit 3.1 (589) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x700000 - 0x744fff com.apple.vmutils 4.1 (104) <ea4bd764588ed4625099564b5e253eb1> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x765000 - 0x833ff5 com.apple.DiscRecording 4.0 (4000.4.10) <91552fcd2a3b4d443ac705f607db57a9> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x89a000 - 0x8c9ffb com.apple.DiskManagement 2.0 (151) <f6c3e564913790b604ea86ef69060496> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x8e9000 - 0x8ecfd7 com.apple.NetServices.BDRuleEngine 1.0.1 (1.0.1) /Applications/Aperture.app/Contents/NetServices/Frameworks/BDRuleEngine.framewo rk/Versions/A/BDRuleEngine
    0x8f2000 - 0x94cfff com.apple.NetServices.NetServices 6.0 (6.0) /Applications/Aperture.app/Contents/NetServices/Frameworks/NetServices.framewor k/Versions/A/NetServices
    0x993000 - 0x9d8ff3 com.apple.DotMacKit 1.2 (1.2) /Applications/Aperture.app/Contents/Frameworks/DotMacKit.framework/Versions/A/D otMacKit
    0xa04000 - 0xa0cfef com.apple.AEProfiling 1.2 (14.2) /Applications/Aperture.app/Contents/Frameworks/AEProfiling.framework/Versions/A /AEProfiling
    0xa14000 - 0xa2bfdf com.apple.AERegistration 1.2 (58.2) /Applications/Aperture.app/Contents/Frameworks/AERegistration.framework/Version s/A/AERegistration
    0xa3a000 - 0xa46ff7 com.apple.PluginManager 1.6 (28) /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
    0xa51000 - 0xa83ffb com.apple.MediaKit 9.0 (391) <3cd07fb2321ca30a38aeb30ee4d1d912> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0xa93000 - 0xabafff com.apple.framework.Admin 2.0 (2.0) <58adb4c3dc2d18ef69089fd913e4a0b7> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0xadb000 - 0xae0ffd com.apple.SetupAssistant.International 1.5 (1.5) <de23ec92a36543c65348aa8e17429329> /System/Library/PrivateFrameworks/International.framework/Versions/A/Internatio nal
    0xae8000 - 0xbeaffd com.apple.DiskImagesFramework 10.5 (191.2) <acf79c344a33bdfdd93737377fd9b7c5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0xc4d000 - 0xc7affb libcurl.4.dylib ??? (???) <bd94f6417b93e0174fa282255dd6d6d1> /usr/lib/libcurl.4.dylib
    0xc84000 - 0xc9dfff com.apple.frameworks.preferencepanes 12.0 (12.0) <0eb7078e2e6d3f1c24ccfe26d0540fc2> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0xf00000 - 0xf1cfff GLRendererFloat ??? (???) <f9496b02da20dcdba04817e5944b3fb8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x21c3000 - 0x2338ffb GLEngine ??? (???) <6962534bc70803bec000ab543565f307> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x236a000 - 0x25a7ff2 com.apple.ATIRadeon9700GLDriver 1.5.16 (5.1.6) <05078c769d16500444f600f90a9012d6> /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS/ATIRadeo n9700GLDriver
    0x8fe00000 - 0x8fe309d3 dyld 95.3 (???) <a7be977c203ec5c76b2f25a7aef66554> /usr/lib/dyld
    0x90003000 - 0x90011ffb com.apple.opengl 1.5.4 (1.5.4) <c2dbc25f3d5732f789c7e111278ddfb2> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90012000 - 0x90349fff com.apple.HIToolbox 1.5.0 (???) <fb1e7eb09bab8fc9c1675310da5b86ed> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9034a000 - 0x90357fff libCSync.A.dylib ??? (???) <e7073e93982e6872ed72e5873b791462> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90358000 - 0x9043bfeb libobjc.A.dylib ??? (???) <4a90e315bd1718c3f5ae09ee6c23e36c> /usr/lib/libobjc.A.dylib
    0x9043c000 - 0x90443fff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90444000 - 0x9044dfff com.apple.DiskArbitration 2.2 (2.2) <9c8f8ade43fa25b32109ef9dcc0cb5d5> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9044e000 - 0x9045efff libsasl2.2.dylib ??? (???) <18935d5e775962f4728b91189b092d45> /usr/lib/libsasl2.2.dylib
    0x9045f000 - 0x905caff9 com.apple.AddressBook.framework 4.1 (687) <55d0fd26085aeb25c536b051f53c1311> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x905cb000 - 0x905ccfff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x905cd000 - 0x90681fff com.apple.DesktopServices 1.4.2 (1.4.2) <e60ad9d1493f1a98e040382df09e474b> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90682000 - 0x90688ffb com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90689000 - 0x90698fff com.apple.DSObjCWrappers.Framework 1.2 (1.2) <2411674c821a8907449ac741ce6a40c3> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9070a000 - 0x9073bfff com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9073c000 - 0x90753ffb com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90754000 - 0x9076cffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9076d000 - 0x90778ffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x90779000 - 0x9088dffa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9088e000 - 0x909b3ff3 com.apple.CoreFoundation 6.5 (476) <9073c2bfdf6842562c8b7f0308109c02> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x909ef000 - 0x909f4ff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x909f5000 - 0x90a4bfff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90a4c000 - 0x90a65fff com.apple.CoreVideo 1.5.0 (1.5.0) <95eb6066edc6f25e7027d92b14ca73a5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90a66000 - 0x90bfffe3 libSystem.B.dylib ??? (???) <8a6cd873dfa7ada786efac188f95ed1b> /usr/lib/libSystem.B.dylib
    0x90c71000 - 0x90d30ff9 com.apple.WebKit 5523.10.3 (5523.10.3) <2010268bc671ef79128cf5dea245d8d7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x90d31000 - 0x90d34ffb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90d35000 - 0x914a6fff com.apple.AppKit 6.5 (949) <ff6de5455323db3dba2d5b0373036823> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x914a7000 - 0x9152cfff libsqlite3.0.dylib ??? (???) <7b379cb4220346e99c32c427d4539496> /usr/lib/libsqlite3.0.dylib
    0x9152d000 - 0x9152dffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9152e000 - 0x915c4ff7 com.apple.LaunchServices 283 (283) <bcaad4a5a0ff906c6f70c3d2805228f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x915d6000 - 0x91b90fff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91b91000 - 0x91b91ff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91bd1000 - 0x91d19ff3 libicucore.A.dylib ??? (???) <250daed2fb2e6bf114480e2e4da0728b> /usr/lib/libicucore.A.dylib
    0x91de8000 - 0x91e72fff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e73000 - 0x91f05fff com.apple.framework.IOKit 1.5.0 (???) <aad75a3a06688046f95223c7810034c7> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91f06000 - 0x9248dff3 com.apple.WebCore 5523.10.3 (5523.10.3) <9d13d4e810c1553c5a87de84e6b10af8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9248e000 - 0x924adfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x924cb000 - 0x924eafff com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x924eb000 - 0x924f9fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x924fa000 - 0x925b4fff libcrypto.0.9.7.dylib ??? (???) <4ea3d7e9a1c28ac7b17ed80873fe6598> /usr/lib/libcrypto.0.9.7.dylib
    0x925b5000 - 0x925b7ffd libRadiance.dylib ??? (???) <3d70fcb7557347829c96c9753074b3f1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x925f0000 - 0x92658fff com.apple.PDFKit 2.0 (2.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x92659000 - 0x9268effb com.apple.LDAPFramework 1.4.3 (106) <d9a3a16b2d468683b68f714d11196d7b> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9268f000 - 0x92716ffb com.apple.audio.CoreAudio 3.1.0 (3.1) <880a5a35ef1c5158271ee4b305b35626> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92906000 - 0x92938fff com.apple.bom 9.0 (136) <cb560109ea507cdfb6c77349845e6b2a> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x92939000 - 0x92eabff7 com.apple.CoreGraphics 1.351.0 (???) <424b6b6e1fe858a1a0ee3adc36d40634> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x92ed6000 - 0x92edaffe libGIF.dylib ??? (???) <d6e2a570359313a39c6783c2ecfee608> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92edb000 - 0x92f42ffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x92f43000 - 0x93124fff com.apple.security 5.0 (31122) <e03f64be7b76748137a47e1e41de61df> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9312b000 - 0x93136fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93db7000 - 0x94114ff6 com.apple.QuartzCore 1.5.0 (1.5.0) <2aa946b9465d8221739597a0538ddd1e> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94115000 - 0x94121ff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94122000 - 0x94122ffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x943a6000 - 0x943c4fff libresolv.9.dylib ??? (???) <ee2b69c3b0d6d4a3167c307f1ee65cb5> /usr/lib/libresolv.9.dylib
    0x94507000 - 0x9458ffff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94590000 - 0x945bdff3 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x945be000 - 0x945befff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x945bf000 - 0x948e3ff7 com.apple.QuickTime 7.2.1 (7.2.1) <5fd98676c5665894da86f40e7e3fc5e4> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x948e4000 - 0x9495effd com.apple.CFNetwork 217 (219) <ee65df202bd0dee6457eb6bea7f9b929> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9495f000 - 0x94c5fff3 com.apple.CoreServices.CarbonCore 783 (783) <fd2acaf23e95472f78b8a077fa039986> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x94c60000 - 0x94ca7fff com.apple.NavigationServices 3.5 (160) <b780d5d4d446699fd9b8fec5771a7426> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x94ca8000 - 0x94cb0fff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x94cb1000 - 0x94d61fff edu.mit.Kerberos 6.0.11 (6.0.11) <16acc832b51b89fdbc563194596623c6> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x94ded000 - 0x94e00ffb com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <7c299626d6167de473e85327699cdb9c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x94e01000 - 0x94e2cff7 libauto.dylib ??? (???) <c1f2bd227817ad7c7bf29ec74729ac7c> /usr/lib/libauto.dylib
    0x94e2d000 - 0x94e54fff libxslt.1.dylib ??? (???) <3700d04090629deddb436aa2d516c56d> /usr/lib/libxslt.1.dylib
    0x94e55000 - 0x94f08ffb com.apple.JavaScriptCore 5523.10.3 (5523.10.3) <11a3413a91cb500bbd65b8620295005a> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94f09000 - 0x95338ffa libGLProgrammability.dylib ??? (???) <d18a865bec4b416604ff890c5d59b6ad> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x95339000 - 0x95386ff7 libGLImage.dylib ??? (???) <15d1a5d751856324e9234d9bcb407eb0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95387000 - 0x95455ff7 com.apple.CoreServices.OSServices 209 (209) <8d6b60917d7b16a6fca90807f6d17a1d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95456000 - 0x9545effb libCGATS.A.dylib ??? (???) <f08869e380cd4b55e14714fe723cbc66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9545f000 - 0x95523ff3 com.apple.CoreData 100 (185) <e07feef645427639349ed2c62abcf169> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95528000 - 0x95588fff com.apple.CoreText 2.0.0 (???) <88030136aacddbb747a2eae3937885f5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x95589000 - 0x955a4ffb com.apple.openscripting 1.2.6 (???) <12270fbb14905644f78975f227328a98> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x955a5000 - 0x955b8fff com.apple.LangAnalysis 1.6.4 (1.6.4) <c184bb5b2859e82c5740a6fdb1e3d0bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x957f3000 - 0x95813ff7 libJPEG.dylib ??? (???) <92341083256fbcd28888a179ebf941ef> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95939000 - 0x9596efff com.apple.AE 402 (402) <a4b92c8ac89cc774b85fb44c48b9d882> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9596f000 - 0x959f0fff com.apple.print.framework.PrintCore 5.5 (245) <708e8418daf27acff77d7a9aebc54e94> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x959f1000 - 0x95a37ff9 com.apple.securityinterface 3.0 (32532) <82a438eff282dd1dc1f803dfd91b5f38> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95b53000 - 0x95b94ffb libTIFF.dylib ??? (???) <0d0a3107d26786c3708e6a511d5acec9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x95b95000 - 0x95b95fff com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95b96000 - 0x95bb1ff3 com.apple.DirectoryService.Framework 3.5 (3.5) <3246a5d1c6a3d678798a90e8c5cd3677> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95bf3000 - 0x95c00fff libbz2.1.0.dylib ??? (???) <ff3050272228dbda09852641458eaaa4> /usr/lib/libbz2.1.0.dylib
    0x95c01000 - 0x95c08ffb com.apple.print.framework.Print 218 (220) <c049174237183efe3afce707ce2c6d67> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95c09000 - 0x95cf2fff libxml2.2.dylib ??? (???) <6f383df1e1e775be0158ba947784ae13> /usr/lib/libxml2.2.dylib
    0x95cf3000 - 0x95e10ff7 com.apple.audio.toolbox.AudioToolbox 1.5 (1.5) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x95e11000 - 0x95e4effe com.apple.securityfoundation 3.0 (32585) <40576cddcf7016812812bab883072a49> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95e4f000 - 0x95efffff com.apple.QD 3.11.49 (???) <8dcf4bb39b22480685ba5115e94cab32> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95f5f000 - 0x95fbbfff com.apple.HIServices 1.6.0 (???) <a3e89f96e628703a20a2d2f587f3f983> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95fbc000 - 0x95fbcfff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95fbd000 - 0x96038fff com.apple.SearchKit 1.2.0 (1.2.0) <1b448fbae02460eae76ee1c6883f45d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x96049000 - 0x960e2fc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x960e3000 - 0x9611ffff libRIP.A.dylib ??? (???) <04b63e86e1df732262c361db22275a50> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96136000 - 0x96139fff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9613a000 - 0x9613bff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9613c000 - 0x96166ff7 libssl.0.9.7.dylib ??? (???) <5dac2e94552ad76696c35bd6886f5a92> /usr/lib/libssl.0.9.7.dylib
    0x96167000 - 0x961c9ffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x961ca000 - 0x964f3fe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x964f4000 - 0x9653fffb com.apple.Metadata 10.5.0 (398) <b6bb1fd5a7a9135f546b2d8cbd65eafc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x96540000 - 0x9660ffff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96707000 - 0x96722ffb libPng.dylib ??? (???) <c51ec88c87a3f0a646471165e16acd43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96723000 - 0x9686cffb com.apple.ImageIO.framework 2.0.0 (2.0.0) <437c9df52645bf8bead58967ea46ef17> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9686d000 - 0x96906ffb com.apple.ApplicationServices.ATS 3.0 (???) <34fed4b41a99f16e7103e0309a062c97> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96907000 - 0x9692cfff libcups.2.dylib ??? (???) <aaa8c97d6b85ca0bfd6ddebd012673df> /usr/lib/libcups.2.dylib
    0x9692d000 - 0x96965fff com.apple.SystemConfiguration 1.9.0 (1.9.0) <d925dde7699e6231c88a41b0254a7591> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9697c000 - 0x96bc0ffb com.apple.Foundation 6.5 (677) <e69e2e6b5f3387e44c3b7bedd7d9ac81> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    Message was edited by: SeaBeast

    Hi. I have the same issue with Aperture loading and the splash screen staying visible. If you select the About menu option and then click the splash screen it does go away but the menus are disabled and no Aperture window opens. I have pinned it down to a Time Machine problem.
    I have four internal drives in my MacPro, one of which I use for documents and pictures. I foolishly selected the 1Tb drive with my pictures on to be the backup drive for Time Machine. I didn't actually do a backup as all I did was flick the on/off switch in System preferences. That was enough it seems. If you look closely I suspect that the permissions for the disk have been modified. I now have some 'unknown' user with read-write access that i can't delete and I have noticed that if I want to copy any file to that volume it asks me for my admin authentication password. If I go to preferences in Aperture and select a different location on my startup drive. then force quit Aperture and relaunch, all is well and the aperture browser/workspace window opens. Of course this doesn't solve my issue because even though I have now switched to using another drive for backups, Time Machine has not reversed the changes it made to the permissions.

  • Satellite A100 has a black screen and won't load into the Bios

    I bought a Satellite A100 - (model psaa8c-0fh00e) about 5 months ago. it was left on over night which is not uncommon and when i came back to use it about 15 hours later it was just a black screen. moved the touch screen and its keys and nothing happened. so i cold boot it and it turned off. i then turned it back on like normal and the notebook turns on but the screen is completely black. it's not even loading the normal Toshiba Bios screen.
    Now my question: is if there is any way I can fix this, i am familar with computer and parts. I just don't get this one cause i've never had to reflash the bois or anything like that. I'm just not sure how to turn and i really don't wanna have to take it into a shop, any suggestions would be helpful.
    thanks in advance.

    Hi Conrad,
    If your A100 powers on normally (HDD spinning, optical drive LED flickers, fans turn etc.) then I would suspect that your LCD or FL Inverter has failed. You can check this by connecting an external monitor to the notebook to see if that shows the normal display.
    On the other hand if there is no activity at all from tour notebook when you power it on then I would imagine you have an internal hardware fault, possibly the main board, which will need to be checked by a Toshiba Authorised Service Partner since the unit will still be covered by the warranty if it is only 5 months old.
    regards,

  • XML Files Won't Load Into AIR Correctly

    Hi,
    I am having a wierd problem. I am using FB 4.6, and have created a small web project swf file that loads in an xml file and creates a thumbnail gallery. It works fine. When I load this same swf file into my AIR project at runtime, the same xml file will not load correctly into it. Instead, it appears to be loading as gibberish, and the XML parser says it is malformed. I have attached a screen shot of it in the debugger. This is what it looks like after the xml load complete event fires.
    Has anyone seen this issue before?
    thx

    It appears that if I run the generated swf file from the AIR project in the stand alone Flash player, everything works as it should. However, if I run it in AIR using the FB run command, I have the issues mentioned above. What would cause that?

  • HELP! Macbook won't load into Target Disk Mode

    basically long story short i had about 100 mb of memory left on my 200gb macbook pro. i was trying to save a word document when everything froze, i manually restarted the computer and thats when all **** broke loose
    heres what happened
    -weird sounds coming from computer
    -the computer takes about 5-10 min to get to the login prompt
    -takes another 5-10 min after login to load desktop wallpaper
    -takes about 40 min for it to load anything on the dock and then nothing will load after that none of my desktop icons u cant access any programs..the computer will continue to make weird noises during this time.
    heres what ive done so far.
    -reset pram (didnt work)
    -harddrive test (Did both standard and extended ...test results came back fine nothing seemed to be wrong)
    -i tried to use disk utility to repair disk and it said:
    +"checking extents overflow file+
    +checking catalog file+
    +invalid node structure+
    +rebuilding catalog b-tree+
    +the volume macintosh HD could not be repaired+
    +error: the underlying task reported failure on exit+
    +1 hfs volum checked+
    +-1 volume could not be repaired because of an error+
    +repair attempted on 1 volume+
    +-1 volume could not be repaired"+
    -tried the fsck option and it told me basically the same thing
    -tried booting in safe mode ...computer wont boot into safe mode it will just shut itself off
    so my last option is trying to get info off of my computer using target disk mode...i have a spare macbook that im using as a host for the macbook pro...
    i bought a firewire cable today from the apple store
    i followed the directions step by step on the apple website
    -i connected the firewire cable, both computers were off.
    -i turned the host computer on (target computer remianed off)
    - held the T button right as the computer started
    - then i got a grey screen with a big firewire logo floating around from left to right
    [img]http://www.didntyouhear.com/wp-content/uploads/2007/04/firewire_logo.jpg[/img]
    what am i doing wrong!? ??
    someone PLEASE HELP!

    ok i figured it out however...
    everytime i try to click on my harddrive or folders in the harddrive the host computer freezes as does the target computer...
    im using a macbook as the host computer to my macbook pro target...
    after performing target disk mode on the target computer and connecting the two computers via firewire...
    i can see my target drive on my host desktop....
    omg and when i clicc on my targe drive i see all my old folders!!! yay!! that means my old files arent lost forever!
    the only problem is when i try to access the folders i get the colored pinwheel
    and its very slow..... nothin will load and then my host computer freezes and i have to forcequit...i didnt even get to begin transferring the files before the host computer would freeze....as this would happen the fans on the target computer would be whirring up and the floating firewire logo screensaver on the target computer would also stop floating from left to right..
    what gives?

  • Movie won't load into itunes

    Coverted a movie to .mv4 using Handbrake - as i have done successfully before but this time
    when I ask to add the movie to itunes (menu) or drag/drop from the finder into the itunes window
    itunes simply ignores the request - no error message it just doesn't pick it up.
    Similarly, if i double click the movie to play in itunes it is just ignored.
    It will pick up and play in Quicktime.
    If i click on itunes from the Quicktime menu (share - itunes) it gives 3 options: iphone, apple TV, and Computer
    Computer is not available (not sure if this is relevant as it's already on my computer so probably that's all its telling me)
    The only thing I did different with Handbrake was to select High rather than Normal quality
    - but the file is only 3GB so not excessive for a movie
    Can't think of anything else to add - running itunes 10 with latest updates installed.
    Any suggestion with where i should go next?
    Cheers....

    3GB for a movie? That's almost equivalent to an original DVD. 
    Have you checked in the Recently Added playlist?
    I think this is possibly linear.  Select 'normal' in HB, iTunes accepts it; select 'high quality' in HB iTunes doesn't.  I can't say why; I don't have any video that anywhere approaches 3GB in size.  If that's how iTunes behaves I don't see you have too many options.  You either select normal and it works, or you select HQ and live with playing the movie outside of iTunes.
    I won't ask what movie because any help with illegally ripped copy protected DVDs is strictly prohibited by the Terms of Use so I'm assuming this is a 6 hour video of your puppy playing on the floor.

Maybe you are looking for

  • Sender File ContentConversion for 5 levels.

    Hi Friends, I got a peculiar requirement. My scenario is flat file to Idoc. The main problem is on the source side we have 5 levels to handle. Pls give some suggestions how to handle if we have more than 3 levels. Regards, Jeevan.

  • PDF Comparison in batch

    Can a bunch of PDF be compared against another set in batch mode? Is there any plug in supporting this option available in Adobe?

  • Battery discharge

    IPhone 5s discharging so quickly even without simcard, already restired as new..but no changes.pls help

  • Adobe TypeKit problem with Sync

    HI, I have done all these instructions but it doesn't work!!! Hi, I have problem with accesing Assets -> Fonts (Synced Typekit fonts)! Thanks in advance

  • Set Email Description (body) with javascript

    I am trying to set the Email description in the OnLoad event of the email form in CRM 2011 Using this code: "Xrm.Page.getAttribute("description").setValue(mailText.toString());" In OnLoad of the email form my script is excecuted every time it loads /