Supressing the Scientifc Notation for  double

Hi folks,
I have a requirement , that i have to supress the scientific representation of a primitive
double value , while displaying the double value in a form elememt ( textbox).
eg.
for 80000000, display will show 8.0E7, which is not desired.
I need the display as 80000000 itself .
Can some one throw some lights on this.
Thanks in advance

http://forum.java.sun.com/thread.jsp?forum=45&thread=527375&start=0&range=15#2531742

Similar Messages

  • Picking up the printer settings for Double or single sided?

    Hi All,
    Do anyone have a solution for picking up the printer settings for the PO SAPscript so that if the printer can do double sided it should print double sided but if it can only do single sided, it should print single sided?
    Thanks & Regards,
    Sudheer.

    Hi Frank
    1. To change it manually you have to deselect the following option:
    Edit>Preferences>Type> Use Typographer's Quotes.
    2. To access the option through vb script use the following syntax:
    Document.TextPreference.TypographersQuotes
    May be this will help you.

  • Supressing the JAXB code for Extended Schemas using JWSDP

    Hi,
    Im trying to generate the JAXB code for the XML Schema using JWSDP using ANT build tool.
    Q : My schema(eg., Schema01.xsd) extends other two schemas(Schema02.xsd, Schema03.xsd).Here using JWSDP package using ANT Build tool, i want to Generate the JAXB java classes only for Schema01.xsd not for other two schemas.
    Can somebody help in this regard.
    Note : By default using JWSDP, Ant build tool, in "Build.xml" it expects schema name(eg. Schema01.xsd"). when i generate the java code, it generates code for the Schema and as well as its all exetended schemas.
    Q : how can supress generating the java code for the extended schemas.
    Regards
    Madhu

    Hi, no I didn't notice this, tried it now and got
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?><metadata xmlns="http://musicbrainz.org/ns/mmd-1.0#"><artist-list offset="0" count="1"><artist type="Group" id="ccd4879c-5e88-4385-b131-bf65296bf245" ext:score="100" xmlns:ext="http://musicbrainz.org/ns/ext#"><name>Echo & The Bunnymen</name><sort-name>Echo & The Bunnymen</sort-name><life-span begin="1978"/></artist></artist-list></metadata>is this right, its different to what I was originally trying to get

  • How to show the layout option for double-sided printing on Acrobat Pro X on Mac?

    Adobe Acrobat Pro X version 10.0.0 print dialog does not show the option to select Layout for two-sided (double-sided) printing. How to fix it?
    System: Mac OS X 10.6.6 on Mactel
    Thanks.

    David,
    Wow, it worked. Many thanks. This is what I did, following your directions to print PDF files as double-sided:
    01-Command P & Click "Printer button".
    02-Click Yes.
    03-Click the Popup Arrow to display contents.
    04-Select Two-sided "Long-Edge binding" or whatever needed and Click Print.
    05-Click OK to Print.
    What fooled me is that from Word (.doc) files the screen on step 3 and 4 show directly selecting a popup menu on the initial print window, whereas when printing PDF files it is required to go through steps 1-2-3 above.
    Again, many thanks. You made my day!!!

  • When i double click itunes it doesn't open it just comes up with an error saying " The itunes library.itl file cannot be found or created. The default location for this file is in the 'itunes' folder in the 'music' folder". How can i fix this?

    When i double click itunes it doesn't open it just comes up with an error saying " The itunes library.itl file cannot be found or created. The default location for this file is in the 'itunes' folder in the 'music' folder. How can i fix this problem?

    Anyone can help to advice how to solve this issue ?

  • How do I adjust double click speed in Mountain Lion. The mouse system preferences does not seem to have a speed slider for double clicking. Only the tracking speed slider is visible.

    Double clicking is no longer opening my folders.
    How can I adjust the double click speed in Mountain Lion to reduce the double clicking speed. The mouse system preferences does not seem to have a speed slider for double clicking. Only the tracking speed slider is visible.

    For 10.8.3,  it's in System Preferences > Accessiblity > highlight Mouse & trackpad on the left.  The Double click speed slider shows on the right.  Moving it to the left gives you more time between clicks.  Moving it right gives you less time.

  • I need to supress the printing of a blank page if the total for an AR Statement is 0 or null.

    I have an issue where the XML file for the R03B5001 AR Statement is outputting records with Header information, (name and address), but the total due for the statement is 0.  I have been able to suppress the printing of the header, and detail in my template, but it still generates a single blank page.  How can I suppress the printing of this page?

    Thanks for your answer. Instead of formatting through FireFox, I had to go in and format it via the printer. Duh! Feel stupid not doing this first. If any one else has this problem, I was able to set it up on the printer by going to Printers > Printer Properties > Printer Preferences and set it up. Good luck and thank you for your reply.

  • Which number I have to call for double payment for ' document to go' see my bills.Save or print this page for your records. We'll also send you an email confirmation. Case ID: 341915446 You have chosen to call Apple later. When you're ready, call the phon

    Where I have to resolve my problem for double billing for an app I purchased. App under question is ' DOCS TO GO' both normal and premium version.
    Help me
    Thanks

    Where I have to resolve my problem for double billing for an app I purchased. App under question is ' DOCS TO GO' both normal and premium version.
    Help me
    Thanks

  • How to use the same script for multiple buttons

    Hi,
    I've only just started using flash so any help would be great!
    I'm creating a blockbusters type game, I have a grid of 20 buttons and I need  them (individually) to turn blue on click and red on double click. I've managed to do it with the first one using this code;
    var clicked:Boolean = false;
    bn1.addEventListener(MouseEvent.CLICK, bn1click);
    function bn1click(event:MouseEvent):void {
        clicked = true;
        var newColorTransform:ColorTransform = bn1.transform.colorTransform;
        if(clicked){
        newColorTransform.color = 0x064258;
        bn1.transform.colorTransform = newColorTransform;
    bn1.doubleClickEnabled = true;
    var doubleclicked:Boolean = false;
    bn1.addEventListener(MouseEvent.DOUBLE_CLICK, bn1dclick);
    function bn1dclick(event:MouseEvent):void {
        doubleclicked = true;
        var newColorTransform:ColorTransform = bn1.transform.colorTransform;
        if(clicked){
        newColorTransform.color = 0xac1e23;
        bn1.transform.colorTransform = newColorTransform;
    Now I'm having trouble getting the same to work for the rest of the buttons, they are each named bn2, bn3 etc. They need to work individually and remain blue/red once clicked. I've tried listing them as addEventListener commands but not having a great deal of success!
    Any help would be greatly appreciated, thanks!
    Tomo

    One way to do this is to use arrays to keep track of the buttons and their properties.
    var buttonList:Array = new Array(bn1,bn2,bn3);
    var clickedList:Array = new Array();
    var doubleClickedList:Array = new Array();
    //then use a for loop to assign the functions and properties for each button:
    var thisMany:int = buttonList.length; // this will give you the number of items in the buttonList array
    for(var i:int = 0; i<thisMany; i++) {
         buttonList[i].addEventListener(MouseEvent.CLICK,btnClick); // assign the click function to each button
         buttonList[i].addEventListener(MouseEvent.DOUBLE_CLICK,btnDClick); // assign the double click function
         clickedList.push(false);  // add a false value for each button to this array
         doubleClickedList.push(false);
               buttonList[i].doubleClickEnabled = true; // set the double click property for each button
    function btnClick(event:MouseEvent):void {
              var thisButton:int = buttonList.indexOf(event.target);  // figure out which button was clicked as an item in the array
              clickedList[thisButton] = true;  // change the value in the array
               var newColorTransform:ColorTransform = buttonList[thisButton].transform.colorTransform;
        if(clickedList[thisButton]){
        newColorTransform.color = 0x064258;
        buttonList[thisButton].transform.colorTransform = newColorTransform;
    function btnDClick(event:MouseEvent):void {
              var thisButton:int = buttonList.indexOf(event.target);
              doubleClickedList[thisButton] = true;
        var newColorTransform:ColorTransform = buttonList[thisButton].transform.colorTransform;
        if(doubleClickedList[thisButton]){
        newColorTransform.color = 0xac1e23;
        buttonList[thisButton].transform.colorTransform = newColorTransform;
    Now you can have any number of buttons, just add their instance names to the array at the top.

  • HT4759 I have never used  "iwork for cloud beta" or "google chrome" to my knowledge to print. I wish icloud to please and thank you for you to delete this information! as it shows in the advanced settings for icloud when I was trying to print an index of

    My note on my ipad and Iphone have an index of the notes to the left on my copnuter!  I wanted to only print the index and the date after the index.  The computer would allow me to print the note but not the date it was indexed or the title to the left! of the index date!  Has anyone ever had this problem!  I am changing laptops and wanted to keep an index printed out for references but delete all the notes from this old notebook! 
    Please note my Ipad automatically changed to the ios7 update even when the Iphone 5 was with my spouse in Norfolk Va.  I had purchased an iphone 5 in feb with 32 gb verses 16 I was happy with it until I thought I was updating itunes to fix bugs and fixes.  It updated the ios7 program and the whole look of the iphone five changed and I am over 58 and have trouble keeping up and did not want to update!  I callled and had 436 days of insurance left on my phone and I asked them to keep te money for the upgrade and just give me back the 6ios. of course it is know.  Apple was trying to helpe get up to speed but the calendar was given me the most difficulty not being able to see appts forward enough to plan very well!  My spouse is retiring from the DOD  and for the first time in his life can have his on cell so I gave him my 5 and still had my old 4 got my ios6 back and  just now the phone is feeling pretty comfortable again for me. The only thing missing is siri i do miss her!  I never anticipated that my ipad would change to the ios7 on its on but the applestore in Tampa said that yes that happens oops! I now will try to self educate myself on the ios7.  I love my ipad but wish it had not jumped to the 7ios.  big problem again is I have is on my 5 it wasa a 32 and I have double or the max of icloud storage but just learned at the apple store that icloud does not store your photos on the cloud.  I am a grandmother and the soul pupose of me purchasing so much icloud storage was for my grandkids pics and now I found out you guys don't do this.  Where do you store the photos for people?   Help!  have mercy on me because even though the 436 days of service from Icloud left on my iphone 5 my spouse is the only one that can use it even tho my ipad automatically switched to the ios 7.  Really am trying to work with you apple because I think you have a better product but as far as customer service you can make an appt at the service center an hour away and then wait inline for 40 minutes for the genuis bar guys to make you feel like an idiot for not figuring this out on your own or I have to pay just to talk to your service department after I already have in my name 436 days left on my service contract!  The contract only goes with the phone even though your update changed my ipad also!  A little customer service that is given free of charge when you have some one really trying to educate themselves on and ios7 that they didn't even want would go a very long way toward keeping your customers happy otherwise once a more friendly tech company that offers the better product tops you. Its over!  You have a great product and people are paying you to help them lean how to navigate it!  The problem is once you have mastered one system that system is updated and you start over!  Maybe you could offe something for everyone!  You see my husband doesn't have to ever call apple because he has and IQ to high to measure!   Unfortunately the service I payed for is with his phone and I now have and I pad with the ios7 that converted automatically and when I call they tell me I must be told there will be a fee charged for this service!   One question I asked the support center apple store is how can the ipad convert when the iphone 5 is at the Norfolk Navy Base with my spouse and the ipad is here in Spring Hill Florida with me.  She said it just happens!  The service center nearest available to me is 1 hour away and I need an appt. With them to ask a simple question!.  Time is a commodity that is becoming more dear to me every day and it seems I am spending a great deal of it trying to solve a somewhat simple question to the experts no more than a 3 minute conversation could set me on the right track but I can't even buy insurance service for my ipad that just converted to ios 7 on its's own!  Sincerely I could use some help
    <E-mail Edited by Host>

    My note on my ipad and Iphone have an index of the notes to the left on my copnuter!  I wanted to only print the index and the date after the index.  The computer would allow me to print the note but not the date it was indexed or the title to the left! of the index date!  Has anyone ever had this problem!  I am changing laptops and wanted to keep an index printed out for references but delete all the notes from this old notebook! 
    Please note my Ipad automatically changed to the ios7 update even when the Iphone 5 was with my spouse in Norfolk Va.  I had purchased an iphone 5 in feb with 32 gb verses 16 I was happy with it until I thought I was updating itunes to fix bugs and fixes.  It updated the ios7 program and the whole look of the iphone five changed and I am over 58 and have trouble keeping up and did not want to update!  I callled and had 436 days of insurance left on my phone and I asked them to keep te money for the upgrade and just give me back the 6ios. of course it is know.  Apple was trying to helpe get up to speed but the calendar was given me the most difficulty not being able to see appts forward enough to plan very well!  My spouse is retiring from the DOD  and for the first time in his life can have his on cell so I gave him my 5 and still had my old 4 got my ios6 back and  just now the phone is feeling pretty comfortable again for me. The only thing missing is siri i do miss her!  I never anticipated that my ipad would change to the ios7 on its on but the applestore in Tampa said that yes that happens oops! I now will try to self educate myself on the ios7.  I love my ipad but wish it had not jumped to the 7ios.  big problem again is I have is on my 5 it wasa a 32 and I have double or the max of icloud storage but just learned at the apple store that icloud does not store your photos on the cloud.  I am a grandmother and the soul pupose of me purchasing so much icloud storage was for my grandkids pics and now I found out you guys don't do this.  Where do you store the photos for people?   Help!  have mercy on me because even though the 436 days of service from Icloud left on my iphone 5 my spouse is the only one that can use it even tho my ipad automatically switched to the ios 7.  Really am trying to work with you apple because I think you have a better product but as far as customer service you can make an appt at the service center an hour away and then wait inline for 40 minutes for the genuis bar guys to make you feel like an idiot for not figuring this out on your own or I have to pay just to talk to your service department after I already have in my name 436 days left on my service contract!  The contract only goes with the phone even though your update changed my ipad also!  A little customer service that is given free of charge when you have some one really trying to educate themselves on and ios7 that they didn't even want would go a very long way toward keeping your customers happy otherwise once a more friendly tech company that offers the better product tops you. Its over!  You have a great product and people are paying you to help them lean how to navigate it!  The problem is once you have mastered one system that system is updated and you start over!  Maybe you could offe something for everyone!  You see my husband doesn't have to ever call apple because he has and IQ to high to measure!   Unfortunately the service I payed for is with his phone and I now have and I pad with the ios7 that converted automatically and when I call they tell me I must be told there will be a fee charged for this service!   One question I asked the support center apple store is how can the ipad convert when the iphone 5 is at the Norfolk Navy Base with my spouse and the ipad is here in Spring Hill Florida with me.  She said it just happens!  The service center nearest available to me is 1 hour away and I need an appt. With them to ask a simple question!.  Time is a commodity that is becoming more dear to me every day and it seems I am spending a great deal of it trying to solve a somewhat simple question to the experts no more than a 3 minute conversation could set me on the right track but I can't even buy insurance service for my ipad that just converted to ios 7 on its's own!  Sincerely I could use some help
    <E-mail Edited by Host>

  • Is Captivate 4 the right tool for my purposes?

    This posting should not be misunderstood as bad mouthing Captivate 4. For the most part, I really appreciate Adobe products and have invested a significant amount of personal money into many Adobe products over the years.
    My current role involves designing a course curriculum using Adobe Captivate 4 and Adobe Connect Pro. Unfortunately, I am becoming increasingly concerned that I may be using the wrong tool, at least, in regards to developing all parts of a lesson. Perhaps my workflow will improve if I develop the front facing portion of my lessons with Lectora, and use Captivate solely for creating software simulations?
    Because I have already spent a lot of time building my first lessons, and I have a subscription to Adobe Connect Pro, I would rather solve the issues I listed, rather than start over.
    My question is... are my issues based on my lack of knowledge with Captivate 4, or am I experiencing real issues with this product? If it is my lack of knowledge, please tell me how to solve my issues.
    At this point, I would like to give kudos to Rick Stone (known as Captiv8r) for all his help as a hired consultant. I highly recommend his services. Without him, I probably would not have gone as far as I have with Captivate.
    Please correct or comment on the followin…
    Minor annoyances
    -    Too easy to accidentally move objects. Double clicking on a small graphic or a text caption can easily cause it to move or change size slightly. No way to lock their position only (e.g. lock text position but still allow editing).
    -    Text caption boxes mysterious maximize (vertically) from time to time.
    -    Grouping of objects is not possible.
    -    Previewing “From this slide – F8” does not take into account (or initialize) persistent graphics (or otherwise) on the first slide or template; this results in missing objects when doing a quick preview.
    -    Item names/variables are unwieldy. I have a number of graphics which I re-use throughout a lesson. I want to give each of them common names, such as ico_jobaid, img_core_splash, etc. Unfortunately, I cannot use identical names throughout a lesson. Each page requires a unique name for every object. This results in an item name like ico_interactive.png (as it is named in the library), appearing as TImageItem681 and TImageItem680 (copied twice) on a slide.
    This is common for every object and makes it difficult to control objects.
    Major issues
    -    Occasionally I insert a graphics that can’t be made visible.
    -    .cp file size seems to continuously increase in size, despite removing unused resources.
    -    Text bullet issues (ending bullets occasional show up as a larger size)
    -    Roll-over slidlets do not work as intended in AS3 mode. I must preview or publish in AS2.
    -    Recording Software Simulations!
    Captivate 4 allows recording of simulations in up to four modes (Demonstration, Training, Assessment, and Custom). Unfortunately, it appears to record these simulations are separate and distinct recordings. This is a problem because call-outs and other edits must be repeated for each simulation. Other simulation tools record once and can be edited once for passive and/or interactive viewing.
    -    Buttons! Multiple buttons/text captions on a slide.
    If I want to place multiple buttons on a slide, I must follow these steps to make these buttons/captions work properly. This is an unreasonable amount of work in order to use buttons on a single slide.
    Step 1 - Determine the frame value. Note: It seems that if the frame value is not included, the lesson will move to the next slide, after clicking one button. Another caveat is that adding or removing slides may change the correct frame value.
    1. Click Insert from the top menu,
    2. Select Standard Objects,
    3. Select Text Caption,
    4. Click the Insert Variable button,
    5. Select System from the Variable Type pull-down menu,
    6. Select rdinfoCurrentFrame from the Variables pull-down menu.
    7. Position the text caption appropriately on the screen. You may need an appropriate pause inserted in order to see the value.
    8. Click Preview and select Project from the pull-down menu (or Click F4),
    9. Step through slide show to the slide where rdinfoCurrentFrame text variable was inserted and record the displayed value.
    Step 2 – Insert Button control
    1. Click Insert from the top menu,
    2. Select Standard Objects,
    3. Select Button,
    4. Choose appropriate button and button options (skipping steps),
    5. Click Ok,
    6. Position button appropriately.
    Step 3 – Setting up advanced actions.
    1. Click Project from top menu,
    2. Select Actions,
    3. Click the Advanced Actions tab,
    4. Click the Edit / Create Action Pull down menu and select Create a New Action…,
    5. In the new action name: text box, type action name (i.e. but_core_console),
    6. Double click twice on Add Statement (sometimes it doesn’t behave as it should),
        – this feature seems error prone.
    7. Double click twice on Statement (in red),
    8. Select Standard Action from pull-down list,
    9. Select Show from pull-down list,
    10. Select object name (text caption) you wish to show,
    11. Repeat (if necessary),
    12. Select hide and the element name you wish to hide and repeat as necessary,
    13. Double click twice on Add Statement (sometimes it doesn’t behave as it should)
    – this feature seems error prone.
    14. Double click twice on Statement (in red),
    15. As the last step, select Assignment from pull down list,
    16. Select rdcmndGotoFrame from pull down list,
    17. Select Value from pull-down list,
    18. Enter the frame value (as determined Step 1),
    19. Click Save.
    For the next buttons,
    1. Click the Duplicate button,
    2. Edit the New action name: name appropriately,
    3. Edit the information in the Advanced actions for the this action. (skipping steps)
    4. Click Save.
    Repeat as necessary!
    Configuring buttons
    1. Double click on first button,
    2. In the section, “If the user clicks on the button”,
        click on “On success” pull-down menu and select, “Execute advanced action”.
    3. Click the Action pull-down menu and select the appropriate named action.
    Repeat as necessary.
    -    Building buttons for several slides will create a large number of advance actions. Even though these advanced actions are only applicable to a single slide, they are viewable from any slide in a lesson. The number of actions (or advanced actions) quickly adds up in a complex lesson.
    -    Cannot find a way to edit the default look (object positioning/object sizes) of a quiz. The only attribute that seems changeable is the font size.
    Lock ups and crashes
    -    Double clicking on a .cp file will often result in Captivate freezing at the start up screen.
    -    Captivate crashes and sometimes predictably, especially where animations are inserted.
    I am using both a Windows 7 64 bit and a Windows Vista 32 bit OS. I have tried the following options with seemingly no difference: RUN AS Admin, XP Compatibility mode
    Examples from Windows Applications log:
    The program AdobeCaptivate.exe version 4.0.1.1658 stopped interacting with Windows and was closed. To see if more information about the problem is available, check the problem history in the Problem Reports and Solutions control panel. Process ID: 16f0 Start Time: 01ca623e805d8f30 Termination Time: 81
    The program AdobeCaptivate.exe version 4.0.1.1658 stopped interacting with Windows and was closed. To see if more information about the problem is available, check the problem history in the Problem Reports and Solutions control panel. Process ID: 1654 Start Time: 01ca622b67764380 Termination Time: 70

    The only one that can answer that question is yourself ;o)
    I wrote my comments and suggestions with red text here. My company uses Captivate to develop courses and so far we have been very happy with Captivate. Earlier we used Flash to develop courses, but the development time was very long so Captivate has allowed us to speed up the development process with 2-300%. We still use Flash quite a lot to build interactions etc. and import these into Captivate to add extra features.
    We did look at a variety of tools when we wanted to find an alternative to Flash but at that time (we started with Captivate 2) we found that the best option was indeed Captivate. I regularly check up on competing products and there are some interesting alternatives available now but they are not as advanced as Captivate imho.
    When that is said. Captivate is (and has always been) full of weird bugs and things that aren't working properly. This is extremely annoying but we have learned to work our way around most of them. It also seems that the stability of Captivate varies greatly from installation to installation. We are 8 people in my department all working with Captivate. Our computers are all the same and the OS is a corporate standard. Despite this some people here have some weird problems with Captivate that I never experience. I can't explain why it happens (and neither can they) but it could be the installation or it could be the way people work. An example is "missing/corrupt" Captivate files. We have always been working directly on a network drive. This is something that is often recommended against doing because it can cause corrupt Captivate files. The interesting thing is that I have never once experienced a corrupt Captivate file even though i have opened, worked on and saved many thousands of them from/to our network drive. One of my colleagues had around 20 occurences of corrupt Captivate files in the same timespan and from the same network drive.
    The biggest problem in Captivate is the quiz module in my opinion. The quiz module is probably the most important when we talk about E-learning development tools and that is where Captivate is the weakest. You can't really customize your quizzes, there isn't enough different question types and interaction types, you can't use video but worst of all - it is unstable and buggy. Users can get stuck in a quiz without being able to move forward or backwars, the review quiz is buggy etc.
    One thing I often see with Captivate developers is that they try and do everything in Captivate. While most things are possible to do in Captivate then it might no be the best solution. Some things can be created in Flash and imported into Captivate saving you tons of time and grief and in the end give you a much better end-product. I know that everyone doesn't have access to a Flash programmer, but then you can buy your way out of the problem.
    If you are looking for a tool where you can have full control of everything in your courses then the only real solution is Adobe Flash. This will allow you to build the courses exactly as you please but it comes at a big price. It gets way more complex to create courses, which results in longer development times and updating your existing course becomes much more difficult and time consuming.
    Minor annoyances
    -    Too easy to accidentally move objects. Double clicking on a small graphic or a text caption can easily cause it to move or change size slightly. No way to lock their position only (e.g. lock text position but still allow editing).
    Doesn't really bother me but I guess it's different from person to person. You could just click on the object in the timeline instead to avoid moving the object.
    -    Text caption boxes mysterious maximize (vertically) from time to time.
    I never experienced that.
    -    Grouping of objects is not possible.
    I agree that this could be handy on slides with many objects.
    -    Previewing “From this slide – F8” does not take into account (or initialize) persistent graphics (or otherwise) on the first slide or template; this results in missing objects when doing a quick preview.
    Yes but if Captivate was to take into account everything that happened earlier than previewing from this slide you might as well click preview project (F4).
    -    Item names/variables are unwieldy. I have a number of graphics which I re-use throughout a lesson. I want to give each of them common names, such as ico_jobaid, img_core_splash, etc. Unfortunately, I cannot use identical names throughout a lesson. Each page requires a unique name for every object. This results in an item name like ico_interactive.png (as it is named in the library), appearing as TImageItem681 and TImageItem680 (copied twice) on a slide.
    I think this is the same in any application.. The whole idea of naming objects is that they have a unique name to be identified and manipulate later. I do however agree that the default naming in Captivate sucks. If the resource is named ico_interactive.png in the library, then Captivate should name it slide1_ico_interactive.png as the object name. It would make it easier and quicker to identify the correct resources.
    Major issues
    -    Occasionally I insert a graphics that can’t be made visible.
    I never experienced that with properly configured graphics. Sure you can have problems if you insert a CMYK image or a 300 dpi image, but if you use RGB 72dpi images then it works fine. (at least it always have for me).
    -    .cp file size seems to continuously increase in size, despite removing unused resources.
    True but I never really experienced this as a problem. In Captivate 3 it could really get out of hand, but in CP4 it's much better. Alternatively create a blank Captivate file with the same dimensions and copy/paste your slides into that. (Don't know how it will behave with all your advanced actions though).
    -    Text bullet issues (ending bullets occasional show up as a larger size)
    It is because you have a different font size on the last line of the caption. Just do a CTRL-A to select all the text and select the proper font size. Alternatively adjust the default font and size to what you want in Captivate to avoid this in the future.
    -    Roll-over slidlets do not work as intended in AS3 mode. I must preview or publish in AS2.
    Didn't know that - you should probably report it as a bug if you haven't done so already.
    -    Recording Software Simulations!
    Captivate 4 allows recording of simulations in up to four modes (Demonstration, Training, Assessment, and Custom). Unfortunately, it appears to record these simulations are separate and distinct recordings. This is a problem because call-outs and other edits must be repeated for each simulation. Other simulation tools record once and can be edited once for passive and/or interactive viewing.
    Agree - this is rather annoying.
    -    Buttons! Multiple buttons/text captions on a slide.
    From what I understand you have a whole bunch of buttons on a slide and then when the user clicks on one it shows some text / image? If that is the case then yes it will be a tedious process to build all this. I don't know if it would be easy in any other applications though (surely most of the other Rapid E-learning tools won't even be able to do it). Perhaps it would be better to rethink the way you build the course. Can't you use rollover captions / images instead?
    Another alternative is to build these "interactions" in Flash and then import them into Captivate. Basically you would need to build a couple of different templates where you would be able to reuse the Flash framework and only change images/text in Flash and then importo it into Captivate.
    -    Cannot find a way to edit the default look (object positioning/object sizes) of a quiz. The only attribute that seems changeable is the font size.
    This is a major handicap in Captivate and one of the reasons why we don't use Captivate quizzes in our courses. We build all our course in Captivate (and add Flash and other interactions) but we always use a Flash Quiz. The Captivate quiz is simply too ugly and unstable. We deploy courses to 35.000 people worldwide so stability is our number one priority and sadly Captivate quizzes don't offer that at this point.
    Lock ups and crashes
    -    Double clicking on a .cp file will often result in Captivate freezing at the start up screen.
    I never had that problem. I use Win XP, Vista 64-bit and Win7 64-bit.
    -    Captivate crashes and sometimes predictably, especially where animations are inserted.
    I am using both a Windows 7 64 bit and a Windows Vista 32 bit OS. I have tried the following options with seemingly no difference: RUN AS Admin, XP Compatibility mode
    My regular development PC runs Windows XP Pro. I never have any problems here. On Vista 64-bit I have a ton of problems, but Captivate didn't crash or lock up - it simply didn't perform the actions I wanted it to do. So far on Windows 7 I haven't encountered any crashes or problems. However there is no doubt that Captivate 4 was designed with Win XP in mind and Vista and Win7 are not native platforms for it.
    /Michael
    Visit my Captivate blog with tips & tricks, tutorials and Widgets.

  • How to find a badi and how to find the method/methods for a transaction?

    Hi all,
    i need to give a text either while creating customer (vd01) or changing customer(vd02)...thsi is via extras->texts.....then I have to double clik the text and go to change editor...and then i have to clik on insert line and then choose text element radiobutton on screen and then give it a name and then save it..this should be done for all customers....my problem is i am unable to find a badi and the appropriate method for thsi..i have placed break point in method read_add_on_data in the badi customer_add_data....i tested both by transactions va01 and va02 but of no use..also there are so many methods..can u tell me how do i find the appropriate method of the appropriate badi.....

    Hi,
       For XD01/XD02/XD03 The following BADI's are useful
    business Add-In CUSTOMER_ADD_DATA  and  business Add-In CUSTOMER_ADD_DATA_CS .
    *<b>Reward points</b>
    Regards

  • When my phone turns on it goes to the normal screen for 1 second and then it gets very large so you can only see a few icons

    When I turn my iphone on, the usual main icon screen shows for about a second and then it blows up so you can only see a few icons at a time.  How do you turn this off?

    Your phone might be on Zoom somehow, try just the simple "gestures" fix
    Double tap with 3 fingers on the screen, then drag down. That should at least zoom out. If that does not work, try scrolling through the screen, but using 3 fingers instead of 1.
    From there you should be able to access Settings>General>Accessibility>Zoom>OFF
    Hope this helps

  • I have an iPad 1 and after I got the latest update for keynote and Now  it crashes every time I try to open it

    I have an iPad 1 and after I got the latest update for keynote and Now  it crashes every time I try to open it

    Do you have iOS 5.1.1 on your original iPad? If not update the iOS.
    You might also try quitting the app and then reset the pad.
    Go to the Home screen and double click the Home button. That will reveal the row of recently used apps at the bottom of the screen. Tap and hold on the app in question until it wiggles and displays a minus sign. Tap the minus sign to actually quit the app. Then tap anywhere on the screen above that bottom row to return the screen to normal. Then reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.
    Still no joy? Delete the Keynote app, reset the iPad and then reinstall Keynote. You will not have to pay for downloading it again.

  • ITunes on my Macbook Pro continues to crash recently. Why would this be so? I am being continuously warned recently that my startup disk is almost full. Would this be related? I have attached here the report details for reference.

    Process:    
    iTunes [2720]
    Path:       
    /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier: 
    com.apple.iTunes
    Version:    
    10.5.3 (10.5.3)
    Build Info: 
    iTunes-10530301~1
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [227]
    Interval Since Last Report:     
    1129228 sec
    Crashes Since Last Report:      
    15
    Per-App Interval Since Last Report:  580674 sec
    Per-App Crashes Since Last Report:   1
    Date/Time:  
    2012-03-07 19:33:32.116 +1100
    OS Version: 
    Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  E19DC2CD-F7BC-4DC2-A7DB-228F77E4DBB3
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0
    Thread 0 Crashed:
    0   com.apple.imageKit       
    0x90304af3 -[IKOpenGLRenderer endDrawingInView:] + 11
    1   com.apple.imageKit       
    0x9031aa37 -[IKImageBrowserView(RenderingContext) finalizeRenderer] + 48
    2   com.apple.imageKit       
    0x902d9ad6 -[IKImageBrowserView(ImageBrowserDrawing) drawRect:] + 819
    3   com.apple.AppKit         
    0x95425bf8 -[NSView _drawRect:clip:] + 3853
    4   com.apple.AppKit         
    0x954246ef -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1050
    5   com.apple.AppKit         
    0x95424a86 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1969
    6   com.apple.AppKit         
    0x95423045 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 759
    7   com.apple.AppKit         
    0x95423e9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    8   com.apple.AppKit         
    0x95423e9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    9   com.apple.AppKit         
    0x95423e9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    10  com.apple.AppKit         
    0x95423e9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    11  com.apple.AppKit         
    0x95423e9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    12  com.apple.AppKit         
    0x95423e9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    13  com.apple.AppKit         
    0x95423e9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    14  com.apple.AppKit         
    0x95423e9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    15  com.apple.AppKit         
    0x95423e9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    16  com.apple.AppKit         
    0x95423e9f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    17  com.apple.AppKit         
    0x95422987 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 306
    18  com.apple.AppKit         
    0x9541f4ab -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    19  com.apple.AppKit         
    0x9535fe7b -[NSView displayIfNeeded] + 933
    20  com.apple.AppKit         
    0x9535fa29 -[NSWindow displayIfNeeded] + 189
    21  com.apple.AppKit         
    0x9535f84c _handleWindowNeedsDisplay + 436
    22  com.apple.CoreFoundation 
    0x928b4772 __CFRunLoopDoObservers + 466
    23  com.apple.CoreFoundation 
    0x928b5acc CFRunLoopRunSpecific + 844
    24  com.apple.CoreFoundation 
    0x928b6aa8 CFRunLoopRunInMode + 88
    25  com.apple.HIToolbox      
    0x91bb62ac RunCurrentEventLoopInMode + 283
    26  com.apple.HIToolbox      
    0x91bb5ffe ReceiveNextEventCommon + 175
    27  com.apple.HIToolbox      
    0x91bb5f39 BlockUntilNextEventMatchingListInMode + 106
    28  com.apple.AppKit         
    0x9535d6d5 _DPSNextEvent + 657
    29  com.apple.AppKit         
    0x9535cf88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    30  com.apple.AppKit         
    0x9559a38d -[NSApplication _realDoModalLoop:peek:] + 563
    31  com.apple.AppKit         
    0x95594acb -[NSApplication runModalForWindow:] + 286
    32  com.apple.AppKit         
    0x95585bb6 -[NSSavePanel(NSSavePanelRuntime) runModalForDirectory:file:types:] + 307
    33  com.apple.AppKit         
    0x958985a0 -[NSSavePanel(NSSavePanelRuntime) runModal] + 77
    34  com.apple.iTunes         
    0x006d8a6b 0x1000 + 7174763
    35  com.apple.iTunes         
    0x006d83a5 0x1000 + 7173029
    36  com.apple.iTunes         
    0x0045c3a6 0x1000 + 4567974
    37  com.apple.iTunes         
    0x004582ec 0x1000 + 4551404
    38  com.apple.iTunes         
    0x00458373 0x1000 + 4551539
    39  com.apple.iTunes         
    0x004583d1 0x1000 + 4551633
    40  com.apple.iTunes         
    0x008e298e 0x1000 + 9312654
    41  com.apple.iTunes         
    0x0094624b 0x1000 + 9720395
    42  com.apple.AppKit         
    0x9542ee8f -[NSApplication sendAction:to:from:] + 112
    43  com.apple.AppKit         
    0x9542edcc -[NSControl sendAction:to:] + 108
    44  com.apple.iTunes         
    0x0055c548 0x1000 + 5616968
    45  com.apple.AppKit         
    0x9542baf7 -[NSWindow sendEvent:] + 5381
    46  com.apple.AppKit         
    0x953f86a5 -[NSApplication sendEvent:] + 2939
    47  com.apple.iTunes         
    0x00505469 0x1000 + 5260393
    48  com.apple.AppKit         
    0x9559a3b7 -[NSApplication _realDoModalLoop:peek:] + 605
    49  com.apple.AppKit         
    0x95594acb -[NSApplication runModalForWindow:] + 286
    50  com.apple.iTunes         
    0x001497aa 0x1000 + 1345450
    51  com.apple.iTunes         
    0x0094cd61 0x1000 + 9747809
    52  com.apple.iTunes         
    0x00336e53 0x1000 + 3366483
    53  com.apple.iTunes         
    0x0045e8af 0x1000 + 4577455
    54  com.apple.iTunes         
    0x0044beb4 0x1000 + 4501172
    55  com.apple.iTunes         
    0x0074ee26 0x1000 + 7659046
    56  com.apple.iTunes         
    0x008a875b 0x1000 + 9074523
    57  com.apple.iTunes         
    0x008aea1b 0x1000 + 9099803
    58  com.apple.iTunes         
    0x002b4799 0x1000 + 2832281
    59  com.apple.iTunes         
    0x005c3760 0x1000 + 6039392
    60  com.apple.iTunes         
    0x008aa751 0x1000 + 9082705
    61  com.apple.iTunes         
    0x008aadcd 0x1000 + 9084365
    62  com.apple.iTunes         
    0x0061ebc2 0x1000 + 6413250
    63  com.apple.iTunes         
    0x0017e81f 0x1000 + 1562655
    64  com.apple.iTunes         
    0x0017e787 0x1000 + 1562503
    65  com.apple.iTunes         
    0x0055db9e 0x1000 + 5622686
    66  com.apple.AppKit         
    0x9542c731 -[NSWindow sendEvent:] + 8511
    67  com.apple.iTunes         
    0x0017a45c 0x1000 + 1545308
    68  com.apple.AppKit         
    0x953f86a5 -[NSApplication sendEvent:] + 2939
    69  com.apple.iTunes         
    0x00505469 0x1000 + 5260393
    70  com.apple.AppKit         
    0x95355fe7 -[NSApplication run] + 867
    71  com.apple.iTunes         
    0x00004b5e 0x1000 + 15198
    72  com.apple.iTunes         
    0x000049c9 0x1000 + 14793
    Thread 1:
    0   libSystem.B.dylib        
    0x913cf166 mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x913d695c mach_msg + 72
    2   com.apple.CoreFoundation 
    0x928b5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation 
    0x928b6b04 CFRunLoopRun + 84
    4   com.apple.iTunes         
    0x0000b2fe 0x1000 + 41726
    5   com.apple.iTunes         
    0x008489f9 0x1000 + 8681977
    6   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    7   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib        
    0x913cf166 mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x913d695c mach_msg + 72
    2   com.apple.CoreFoundation 
    0x928b5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation 
    0x928b6aa8 CFRunLoopRunInMode + 88
    4   com.apple.audio.CoreAudio
    0x911655f8 HALRunLoop::OwnThread(void*) + 160
    5   com.apple.audio.CoreAudio
    0x91165480 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    7   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib        
    0x913d634e __semwait_signal + 10
    1   libSystem.B.dylib        
    0x91400ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.iTunes         
    0x0000b4d9 0x1000 + 42201
    3   com.apple.iTunes         
    0x00021a49 0x1000 + 133705
    4   com.apple.iTunes         
    0x008489f9 0x1000 + 8681977
    5   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    6   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib        
    0x913ff8c6 kevent + 10
    1   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    2   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib        
    0x913d634e __semwait_signal + 10
    1   libSystem.B.dylib        
    0x91400ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.iTunes         
    0x0000b4d9 0x1000 + 42201
    3   com.apple.iTunes         
    0x0000b3f0 0x1000 + 41968
    4   com.apple.iTunes         
    0x0000b273 0x1000 + 41587
    5   com.apple.iTunes         
    0x0093696d 0x1000 + 9656685
    6   com.apple.iTunes         
    0x00936997 0x1000 + 9656727
    7   com.apple.iTunes         
    0x008489f9 0x1000 + 8681977
    8   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    9   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib        
    0x913cf166 mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x913d695c mach_msg + 72
    2   com.apple.iTunes         
    0x0013c1b3 0x1000 + 1290675
    3   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    4   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib        
    0x9143b20a accept$UNIX2003 + 10
    1   com.apple.iTunes         
    0x007bcf9f 0x1000 + 8109983
    2   com.apple.iTunes         
    0x007bd135 0x1000 + 8110389
    3   com.apple.iTunes         
    0x008489f9 0x1000 + 8681977
    4   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    5   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib        
    0x9143b20a accept$UNIX2003 + 10
    1   com.apple.iTunes         
    0x007bcf9f 0x1000 + 8109983
    2   com.apple.iTunes         
    0x007bd135 0x1000 + 8110389
    3   com.apple.iTunes         
    0x008489f9 0x1000 + 8681977
    4   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    5   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib        
    0x9141e60a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    2   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib        
    0x913cf166 mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x913d695c mach_msg + 72
    2   com.apple.CoreFoundation 
    0x928b5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation 
    0x928b6b04 CFRunLoopRun + 84
    4   com.apple.iTunes         
    0x0000b2fe 0x1000 + 41726
    5   com.apple.iTunes         
    0x008489f9 0x1000 + 8681977
    6   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    7   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib        
    0x913cf166 mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x913d695c mach_msg + 72
    2   com.apple.CoreFoundation 
    0x928b5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation 
    0x928b6b04 CFRunLoopRun + 84
    4   com.apple.iTunes         
    0x0000b2fe 0x1000 + 41726
    5   com.apple.iTunes         
    0x008489f9 0x1000 + 8681977
    6   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    7   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib        
    0x913cf166 mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x913d695c mach_msg + 72
    2   com.apple.CoreFoundation 
    0x928b5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation 
    0x928b6b04 CFRunLoopRun + 84
    4   com.apple.iTunes         
    0x0000b2fe 0x1000 + 41726
    5   com.apple.iTunes         
    0x008489f9 0x1000 + 8681977
    6   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    7   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib        
    0x913d634e __semwait_signal + 10
    1   libSystem.B.dylib        
    0x91400ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore 
    0x9629dd58 ***::TCMalloc_PageHeap::scavengerThread() + 824
    3   com.apple.JavaScriptCore 
    0x9629dd8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    5   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 14:
    0   libSystem.B.dylib        
    0x913cf166 mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x913d695c mach_msg + 72
    2   com.apple.CoreFoundation 
    0x928b5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation 
    0x928b6b04 CFRunLoopRun + 84
    4   com.apple.iTunes         
    0x0000b2fe 0x1000 + 41726
    5   com.apple.iTunes         
    0x008489f9 0x1000 + 8681977
    6   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    7   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 15:
    0   libSystem.B.dylib        
    0x913cf166 mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x913d695c mach_msg + 72
    2   com.apple.CoreFoundation 
    0x928b5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation 
    0x928b6aa8 CFRunLoopRunInMode + 88
    4   com.apple.CFNetwork      
    0x917ec18c CFURLCacheWorkerThread(void*) + 388
    5   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    6   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib        
    0x913d634e __semwait_signal + 10
    1   libSystem.B.dylib        
    0x91400ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore 
    0x960f26b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore        
    0x944d277c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    5   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 17:
    0   libSystem.B.dylib        
    0x913cf166 mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x913d695c mach_msg + 72
    2   com.apple.CoreFoundation 
    0x928b5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation 
    0x928b6aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation     
    0x915a4520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation     
    0x91540dfd -[NSThread main] + 45
    6   com.apple.Foundation     
    0x915409a4 __NSThread__main__ + 308
    7   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    8   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 18:
    0   libSystem.B.dylib        
    0x913d634e __semwait_signal + 10
    1   libSystem.B.dylib        
    0x91400ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore 
    0x960f26b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore        
    0x944d277c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    5   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 19:
    0   libSystem.B.dylib        
    0x913d634e __semwait_signal + 10
    1   libSystem.B.dylib        
    0x91400ccd pthread_cond_wait$UNIX2003 + 73
    2   libGLProgrammability.dylib
    0x97622b32 glvmDoWork + 162
    3   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    4   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 20:
    0   libSystem.B.dylib        
    0x913d634e __semwait_signal + 10
    1   libSystem.B.dylib        
    0x91400ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.ColorSync      
    0x93e663c8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3   com.apple.ColorSync      
    0x93e78d4e CMMConvTask(void*) + 54
    4   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    5   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 21:
    0   libSystem.B.dylib        
    0x913cf166 mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x913d695c mach_msg + 72
    2   com.apple.CoreFoundation 
    0x928b5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation 
    0x928b6b04 CFRunLoopRun + 84
    4   com.apple.iTunes         
    0x0000b2fe 0x1000 + 41726
    5   com.apple.iTunes         
    0x008489f9 0x1000 + 8681977
    6   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    7   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 22:
    0   libSystem.B.dylib        
    0x913cf1c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib        
    0x914011af _pthread_cond_wait + 1244
    2   libSystem.B.dylib        
    0x91402a33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation     
    0x91586dbc -[NSCondition waitUntilDate:] + 236
    4   com.apple.Foundation     
    0x91586bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5   com.apple.Foundation     
    0x91586b35 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.AppKit         
    0x953c36e8 -[NSUIHeartBeat _heartBeatThread:] + 753
    7   com.apple.Foundation     
    0x91540dfd -[NSThread main] + 45
    8   com.apple.Foundation     
    0x915409a4 __NSThread__main__ + 308
    9   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    10  libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 23:
    0   libSystem.B.dylib        
    0x913cf166 mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x913d695c mach_msg + 72
    2   com.apple.CoreFoundation 
    0x928b5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation 
    0x928b6b04 CFRunLoopRun + 84
    4   com.apple.DesktopServices
    0x900a2d0f TSystemNotificationTask::SystemNotificationTaskProc(void*) + 123
    5   ...ple.CoreServices.CarbonCore
    0x9402afbb PrivateMPEntryPoint + 56
    6   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    7   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 24:
    0   libSystem.B.dylib        
    0x913cf166 mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x913d695c mach_msg + 72
    2   com.apple.CoreFoundation 
    0x928b5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation 
    0x928b6b04 CFRunLoopRun + 84
    4   com.apple.DesktopServices
    0x900a2e88 TFSEventsNotificationTask::FSEventsNotificationTaskProc(void*) + 216
    5   ...ple.CoreServices.CarbonCore
    0x9402afbb PrivateMPEntryPoint + 56
    6   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    7   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 25:
    0   libSystem.B.dylib        
    0x913d634e __semwait_signal + 10
    1   libSystem.B.dylib        
    0x91400ccd pthread_cond_wait$UNIX2003 + 73
    2   ...ple.CoreServices.CarbonCore
    0x9402cde3 TSWaitOnCondition + 126
    3   ...ple.CoreServices.CarbonCore
    0x9400bc36 TSWaitOnConditionTimedRelative + 202
    4   ...ple.CoreServices.CarbonCore
    0x9402ca60 MPWaitOnQueue + 208
    5   com.apple.DesktopServices
    0x900ade6a TNodeSyncTask::SyncTaskProc(void*) + 84
    6   ...ple.CoreServices.CarbonCore
    0x9402afbb PrivateMPEntryPoint + 56
    7   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    8   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 26:
    0   libSystem.B.dylib        
    0x913ff8c6 kevent + 10
    1   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    2   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 27:
    0   libSystem.B.dylib        
    0x913cf1c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib        
    0x914011af _pthread_cond_wait + 1244
    2   libSystem.B.dylib        
    0x91402a33 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore
    0x9400bc62 TSWaitOnConditionTimedRelative + 246
    4   ...ple.CoreServices.CarbonCore
    0x9402ca60 MPWaitOnQueue + 208
    5   com.apple.DesktopServices
    0x900afdb4 TFolderSizeTask::FolderSizeTaskProc(void*) + 104
    6   ...ple.CoreServices.CarbonCore
    0x9402afbb PrivateMPEntryPoint + 56
    7   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    8   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 28:
    0   libSystem.B.dylib        
    0x913cf166 mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x913d695c mach_msg + 72
    2   com.apple.CoreFoundation 
    0x928b5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation 
    0x928b6b04 CFRunLoopRun + 84
    4   com.apple.iLifeMediaBrowser  
    0x969f0d0e -[ILMediaBrowserPathWatcher(FSEvents) iLMBPathWatcherRunLoop] + 862
    5   com.apple.Foundation     
    0x91540dfd -[NSThread main] + 45
    6   com.apple.Foundation     
    0x915409a4 __NSThread__main__ + 308
    7   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    8   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 29:
    0   libSystem.B.dylib        
    0x913d634e __semwait_signal + 10
    1   libSystem.B.dylib        
    0x91400ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.QuartzCore     
    0x9078aa09 fe_fragment_thread + 54
    3   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    4   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 30:
    0   libSystem.B.dylib        
    0x913ff8c6 kevent + 10
    1   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    2   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 31:
    0   libSystem.B.dylib        
    0x913d634e __semwait_signal + 10
    1   libSystem.B.dylib        
    0x91400ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.Foundation     
    0x91588932 -[NSCondition wait] + 210
    3   com.apple.Foundation     
    0x9154127a -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 938
    4   com.apple.Foundation     
    0x915c1f3c -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:modes:] + 92
    5   com.apple.imageKit       
    0x902c0b29 -[_IKIRLMainProxy forwardInvocation:] + 121
    6   com.apple.CoreFoundation 
    0x9293584a ___forwarding___ + 986
    7   com.apple.CoreFoundation 
    0x929358b2 _CF_forwarding_prep_0 + 50
    8   com.apple.imageKit       
    0x902b2cf4 -[IKImageWrapper dealloc] + 81
    9   com.apple.imageKit       
    0x902be688 -[IKMipmapItem dealloc] + 42
    10  com.apple.imageKit       
    0x902bbc59 -[IKMipmapImage dealloc] + 116
    11  com.apple.CoreFoundation 
    0x928b838a CFRelease + 90
    12  com.apple.CoreFoundation 
    0x92885709 __CFDictionaryDeallocate + 281
    13  com.apple.CoreFoundation 
    0x928b8538 _CFRelease + 216
    14  com.apple.CoreFoundation 
    0x928473cd __CFArrayReleaseValues + 221
    15  com.apple.CoreFoundation 
    0x928b8538 _CFRelease + 216
    16  com.apple.CoreFoundation 
    0x92934852 -[NSInvocation dealloc] + 82
    17  com.apple.Foundation     
    0x9153c44f NSPopAutoreleasePool + 431
    18  com.apple.imageKit       
    0x902dd521 -[IKImageBrowserView(ImageBrowserImport) startImportVisibleCells] + 1998
    19  com.apple.imageKit       
    0x9038e117 -[IKTaskManager taskLoop] + 2037
    20  com.apple.Foundation     
    0x91540dfd -[NSThread main] + 45
    21  com.apple.Foundation     
    0x915409a4 __NSThread__main__ + 308
    22  libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    23  libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 32:
    0   libSystem.B.dylib        
    0x913cf1c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib        
    0x914011af _pthread_cond_wait + 1244
    2   libSystem.B.dylib        
    0x91402a33 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore
    0x9400bc62 TSWaitOnConditionTimedRelative + 246
    4   ...ple.CoreServices.CarbonCore
    0x9400ba42 TSWaitOnSemaphoreCommon + 422
    5   ...ickTimeComponents.component
    0x92ea3c8e ReadSchedulerThreadEntryPoint + 4728
    6   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    7   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 33:
    0   libSystem.B.dylib        
    0x913cf1c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib        
    0x914011af _pthread_cond_wait + 1244
    2   libSystem.B.dylib        
    0x91402a33 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore
    0x9400bc62 TSWaitOnConditionTimedRelative + 246
    4   ...ple.CoreServices.CarbonCore
    0x9400ba42 TSWaitOnSemaphoreCommon + 422
    5   ...ple.CoreServices.CarbonCore
    0x94034138 AIOFileThread(void*) + 1056
    6   libSystem.B.dylib        
    0x91400055 _pthread_start + 321
    7   libSystem.B.dylib        
    0x913fff12 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x9031aa17  ecx: 0x9522aee8  edx: 0x00000000
      edi: 0x00000000  esi: 0x25e426f0  ebp: 0xbfff88c8  esp: 0xbfff88c0
       ss: 0x0000001f  efl: 0x00010246  eip: 0x90304af3   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
    0x1000 -   0xfb6fe3  com.apple.iTunes 10.5.3 (10.5.3) <482035de840c702a598ed43a8868d4d8> /Applications/iTunes.app/Contents/MacOS/iTunes
    0x11ff000 -  0x127afef  com.apple.iTunes.iPodUpdater 10.4 (10.4) <27d5d8a63af10b70d292d5423e99ca9f> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
    0x12bf000 -  0x12c3fff  com.apple.iPod 1.5 (15) <808d4802c643ebbf266f508935200c99> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0x12ca000 -  0x1393fe5  com.apple.DiscRecording 4.0.7 (4070.4.1) <7c105f35c674aad3a476f8959d3f3ebb> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x13fe000 -  0x16dafe7 +libgnsdk_dsp.1.9.5.dylib ??? (???) <e468d2b0295ad520c02a5383413b5dde> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
    0x16fc000 -  0x172ffe7 +libgnsdk_musicid.1.9.5.dylib ??? (???) <f6487e483b937c89773485600749661d> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
    0x173c000 -  0x1806fe7 +libgnsdk_sdkmanager.1.9.5.dylib ??? (???) <70001144c144b6d73ca9836acd97ce9f> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
    0x181d000 -  0x185ffe7 +libgnsdk_submit.1.9.5.dylib ??? (???) <ab1597cefbac6c05330e879edd036c94> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
    0x1c51000 -  0x1c52fe1  com.apple.textencoding.unicode 2.2 (2.2) <09ac11c81bf4e673a30cc364868fdc11> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1c68000 -  0x1c6bfff  com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <51c811377017028f8904ad779e6a1344> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1c71000 -  0x1c77fff  com.apple.audio.AppleHDAHALPlugIn 1.7.1 (1.7.1a2) <a0a4389b5ac52ab84397d2b25c9d3b9c> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1d24000 -  0x1d2effe  com.apple.URLMount 3.1.1 (3.1.1) <0189760dca64cd07c190e1a7b10283e5> /System/Library/PrivateFrameworks/URLMount.framework/URLMount
    0x1e57000 -  0x1e5cff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x1f01000 -  0x1f8bff7  com.apple.mobiledevice 503.2 (503.2) <f50d6d27e18c282a398a5a55a90b12c6> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x131c6000 - 0x134cdff7  com.apple.CoreFP 2.0.37 (2.0.37) <4c3e5dc45abcaf49c59e67d5cf6d79cf> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
    0x13fa1000 - 0x13fa5fff  com.apple.QuartzComposer.iTunesPlugIn 1.1 (10.1) /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle/Contents/MacOS/Quartz Composer Visualizer
    0x14100000 - 0x14e40fe7  com.apple.CoreFP1 1.13.35 (1.13.35) <cdb583089549cabd19e68aebea32a98b> /System/Library/PrivateFrameworks/CoreFP1.framework/CoreFP1
    0x16330000 - 0x16534fe7  com.apple.audio.codecs.Components 1.9.1 (1.9.1) /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1a48d000 - 0x1a4a9ff7  GLRendererFloat ??? (???) <7b68e0fde5d97927d5407221bdf8ace0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1b2a6000 - 0x1b2a7fff  com.apple.iLMBAppDefPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x1b349000 - 0x1b34afff  com.apple.iLMBFolderPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x1b3a2000 - 0x1b3a4fff  com.apple.iLMBMoviesFolderPlugin 2.1.5 (127) <a6ae59ef4e40840b36a8f4dc6b697a5b> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x1b46d000 - 0x1b474fff  com.apple.iLMBAperturePlugin 2.1.5 (127) <64f3d109e8ac7abb31e073da26832360> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x1b47c000 - 0x1b480fff  com.apple.iLMBGarageBandPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x1b487000 - 0x1b492fff  com.apple.iLMBiMoviePlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x1b49a000 - 0x1b4abfff  com.apple.iLMBiPhoto8Plugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x1b4b5000 - 0x1b4bdfff  com.apple.iLMBiPhotoPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x1b4c5000 - 0x1b4cdfff  com.apple.iLMBiTunesPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x1b4d5000 - 0x1b4d7fff  com.apple.iLMBPhotoBoothPlugin 2.1.5 (127) <86fe02308b70e1cdf2805654f999ec70> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x1d710000 - 0x1d895fe3  GLEngine ??? (???) <945546cdf016a4e5cbbf2ad1bccd0ab4> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1d8c3000 - 0x1dc2cfe8  com.apple.GeForce8xxxGLDriver 1.5.48 (5.4.8) <880ed3155078052260ade6e705c9ca64> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x1df1b000 - 0x1dfcbfff  com.apple.iTunesAccess 10.5.3 (10.5.3) <16ed9ece172cd221e50f405a1dd78cc7> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x1e38b000 - 0x1e38cff3  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x2003c000 - 0x20423fff  com.apple.RawCamera.bundle 3.4.0 (545) <46f9387243c4db157889522a00d16c32> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x229dc000 - 0x229dcffd  libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x2bcaa000 - 0x2bcafff7  com.apple.AppleMPEG2Codec 1.0.1 (220) <6fdff3c87ececb7413749c0230c54f78> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x2c06d000 - 0x2c0c0ff7  com.apple.AppleProResDecoder 2.0.1 (227) /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x2c0fa000 - 0x2c15ffef  com.apple.AppleVAH264HW.component 1.0 (1.0) <9247aea75cd42fd2c138dd35ce83ab9a> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x2c21a000 - 0x2c255fff  com.apple.QuickTimeFireWireDV.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x2c262000 - 0x2c27cfc3  com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x2c281000 - 0x2c29aff3  com.apple.applepixletvideo 1.2.18 (1.2d18) <9f1291d0dfe9be0e251a75301ceed2c9> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x2c29f000 - 0x2c681ff0  QuickTimeH264.scalar ??? (???) <5e559fe08e569b80610ad17f6e0a4f71> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x70000000 - 0x700e6ff2  com.apple.audio.units.Components 1.5.2 (1.5.2) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x9004eff7  com.apple.CoreMediaIOServices 140.0 (1492) <3fd3879b31be7659c1008e8991e9f69b> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x9004f000 - 0x900a0ff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x900a1000 - 0x9012bff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9012c000 - 0x9015efff  com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9015f000 - 0x901e6ff7  libsqlite3.0.dylib ??? (???) <7d1fcfae937da95c7d2b9bdea57e6dc0> /usr/lib/libsqlite3.0.dylib
    0x901e7000 - 0x901f1feb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x901f2000 - 0x90229fff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <eab546255ac099b9616df999c9359d0e> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9022a000 - 0x902a4ff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <3839795086b6857d3c60064dce8702b5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x902a5000 - 0x902acfff  com.apple.agl 3.0.9 (AGL-3.0.9) <d64d715dab8565014f5e2f239fd2410c> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x902ad000 - 0x903e5fe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x903e6000 - 0x905b7fef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x905b8000 - 0x905cdffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x905ce000 - 0x90602fef  com.apple.bom 9.0.1 (136.1.1) <af4dd9c90c298e618bfdef5011859e32> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x90603000 - 0x9065cff7  libGLU.dylib ??? (???) <a08a753efc35f8a27f9c8f938fa01101> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9065d000 - 0x9067cffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9067d000 - 0x90695fff  com.apple.openscripting 1.2.8 (???) <a6b446eb8ec7844096df5fb9002f5c7b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90696000 - 0x90a33fef  com.apple.QuartzCore 1.5.8 (1.5.8) <8dc9ad0616bf56ebba60d6353737ac4e> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90a34000 - 0x90a35ffc  libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x90a36000 - 0x90a38fff  com.apple.securityhi 3.0 (30817) <db23f4bad9f63a606468a4047a69b945> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90a39000 - 0x910d9fff  com.apple.CoreGraphics 1.409.8 (???) <25020feb388637ee860451c19b613c48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x910da000 - 0x910dcff5  libRadiance.dylib ??? (???) <73169d8c3fc31df4005e8eaa0d16bde5> /System/Library/Frameworks/ApplicationServices.framework/Version

    Sophie WB wrote:
    I am being continuously warned recently that my startup disk is almost full.
    Forget the iTunes crash for the time being. Receiving this message is serious, and you need to take action. While the notion that Mac OS X needs 10% or 15% or whatever percentage of your hard disk free is an urban legend, it is nevertheless true that it does need free space; how much depends on your machine and what you do with it. At the very basic level, you should aim to have no less than ~5GB free at all times. See
    <http://www.thexlab.com/faqs/freeingspace.html>
    for tips on reclaiming disk space.

Maybe you are looking for