Can someone help me in building an interactive PDF form with dynamic bounding box?

Hi Guys,
I need to create an interactive PDF form which will contain images, text and fields.
This is how it would be laid out:
Header Image at the top.
Below that a Text Box with a question "Choose the number of licenses" and a drop down option from 1 to 10.
Depending on what they select, I need the following to be displayed.
The following should be encapsuled by a bounding box.
If "1" is selected. "Username: <blank field>    Password: <blank field>
Then a button which says "Click Here To Login To Your New Account".
The bounding box should end here.. and I have more text and images below.
This I could achieve! But now if I select "2" I would need the bounding box to automatically become taller to accommodate two rows with "Username <blank> Password <blank>
The bounding box needs to expand or contract based on the number selected in the drop down.
Would love to here your thoughts on this!
Cheers,
Rajiv

If you were to look at the spec for PDF, you'd see that that is probably not possible with a PDF file.
But, I encourage you to ask this question in the Acrobat PDF Forms forum where the forms experts reside, and perhaps they could suggest an answer. JavaScript can be used, and perhaps that's the answer:
PDF Forms

Similar Messages

  • Please can someone help me to build a query

    Please can someone help me to build a query for getting the following results. I work with Oracle 9.
    My data is about this:
    Projectid / Activitycode / Act.DS / Earlystart / ActualStart
    {color:#ff0000}P001 / 110M / blabla / 1-1-08 / 1-1-08{color}
    {color:#3366ff}P001 / 230M / fdsfds / 31-1-09 / null{color}
    P001 / 450M / fsfsd / 1-4-09 / null
    P002 / null / null / 1-12-08 / 1-12-08
    {color:#3366ff}P002 / 110M / nhggh / 5-2-09 / null{color}
    P002 / 750M / wdwdwd / 5-2-09 / null
    P002 / 210M / plplplp / 31-12-08 / 31-12-08
    {color:#ff0000}P002 / 550M / ewdwd / 5-1-09 / null{color}
    I'd like to get one row for each Projectid with the {color:#3366ff}first next Early- or Actualstart{color} {color:#3366ff}after today{color} and one row with the {color:#ff0000}latest early-/actualstart before today{color}. When there are two or more rows with the same date then I want the first (minimum) Activitycode. This last condition makes it insoluble for me!
    I've tryed SQL with nested Select-statements in the Where-clause. But I've got still 2 rows per projectid because I select the min(nvl(Earlystart ,ActualStart ) I've tryed SQL with an Select in the FROM-claus with Partion BY, but I can't get it work right.
    Can someone show me the right way to solve my problem?

    How's this?
    with my_tab as (select 'P001' projectid,
                           '110M' activitycode,
                           'blabla' act_ds,
                           to_date('01/01/2008', 'dd/mm/yyyy') earlystart,
                           to_date('01/01/2008', 'dd/mm/yyyy') actualstart
                    from   dual
                    union all
                    select 'P001' projectid,
                           '230M' activitycode,
                           'fdsfds' act_ds,
                           to_date('31/01/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual
                    union all
                    select 'P001' projectid,
                           '450M' activitycode,
                           'fsfsd' act_ds,
                           to_date('01/04/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           null activitycode,
                           null act_ds,
                           to_date('01/12/2008', 'dd/mm/yyyy') earlystart,
                           to_date('01/12/2008', 'dd/mm/yyyy') actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           '110M' activitycode,
                           'nhggh' act_ds,
                           to_date('05/02/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           '750M' activitycode,
                           'wdwdwd' act_ds,
                           to_date('05/02/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           '210M' activitycode,
                           'plplplp' act_ds,
                           to_date('31/12/2008', 'dd/mm/yyyy') earlystart,
                           to_date('31/12/2008', 'dd/mm/yyyy') actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           '550M' activitycode,
                           'ewdwd' act_ds,
                           to_date('05/01/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual)
    -- above mimics your table; main query is below:
    select mt2.projectid,
           mt2.activitycode,
           mt2.act_ds,
           mt2.earlystart,
           mt2.actualstart
    from   (select mt.projectid,
                   mt.activitycode,
                   mt.act_ds,
                   mt.earlystart,
                   mt.actualstart,
                   mt.date_col,
                   mt.before_after_today,
                   row_number() over (partition by mt.projectid, mt.before_after_today
                                      order by mt.date_col asc) rn_after,
                   row_number() over (partition by mt.projectid, mt.before_after_today
                                      order by mt.date_col desc) rn_before
            from   (select projectid,
                           activitycode,
                           act_ds,
                           earlystart,
                           actualstart,
                           coalesce(actualstart, earlystart, to_date('01/01/4000', 'dd/mm/yyyy')) date_col,
                           case when coalesce(actualstart,
                                              earlystart,
                                              to_date('01/01/4000', 'dd/mm/yyyy')) <= trunc(sysdate) then 1
                                else 2
                           end before_after_today
                    from   my_tab) mt) mt2,
            (select 1 id, 1 col_id from dual union all
             select 1 id, 2 col_id from dual) dummy
    where  dummy.id = case when mt2.before_after_today = 1 then rn_before
                           else rn_after
                      end
    and    mt2.before_after_today = dummy.col_id
    PROJECTID     ACTIVITYCODE     ACT_DS     EARLYSTART     ACTUALSTART
    P001     110M     blabla     01/01/2008     01/01/2008
    P001     230M     fdsfds     31/01/2009     
    P002     550M     ewdwd     05/01/2009     
    P002     110M     nhggh     05/02/2009     

  • Please can someone help - I am trying to download flashplayer compatible with Windows8

    Please can someone help with FLashplayer trying to find the download compatible with WIndows 8

    Hello,
    There are two versions of Flash Player for Windows, ActiveX (for Internet Explorer) and Plug-in (for other browsers).  On Windows 8.x, Microsoft updates Flash Player ActiveX via Windows Update service.  For Plug-in, you can go to get.adobe.com/flashplayer (with the appropriate browser) and proceed with installation.  Note that Google Chrome also includes a seperate Flash Player, which Google updates via Chrome update.
    Maria

  • Can Someone help me re: Building E -commerce site

    Hi
    I need to build a simple e -commerce site for an assignment. I want it to containg javabeans(to provide dynamic features) , sql database access and things like login/password user sections all all the other usual e - commerce stuff. Its going to be a simple site so not going to go over complex.
    Can someone please recommend me a good book from where I can be helped in building e commerce sites using java/jsp(im not very experienced with java) and if possible some advice as to where I should start etc?
    many thanks

    I need to build a simple e -commerce site for an
    assignment. I want it to containg javabeans(to
    provide dynamic features) , sql database access and
    things like login/password user sections all all the
    other usual e - commerce stuff. Its going to be a
    simple site so not going to go over complex.How experienced are you with the non-Java technologies? SQL and relational databases, security, HTTP/HTTPS, HTML, programming in general, object-oriented programming in particular?
    Could be challenging project for your first go at Java.
    Can someone please recommend me a good book from
    where I can be helped in building e commerce sites
    using java/jsp(im not very experienced with java) and
    if possible some advice as to where I should start
    etc?It's not an e-commerce book, but I'd say that Hans Bergsten's JSP book from O'Reilly would introduce you to enough technology to have a chance at starting this.
    %

  • Interactive pdf form with text fields. Chinese fonts

    Hi All
    We have designed an interactive pdf with text fields. We need the text fields to be in a Chinese font. I understand that this cant be done in Indesign (change the inputting font to Chinese) I have moved the file over to Acrobat Pro and used the text property to amend the font to Simsun but when we try it out the font is still in English. Any ideas on how to remedy the problem??
    Thank you in advance
    Paul

    Basically, you need to create a pdf form.
    Add a text field to your form.
    There you can choose which font your want the text to appear in.
    The trick is, when you export from InDesign, in the "Advanced Tab" — set "Subset fonts when percentage…" to 0%, so the whole font embeds.'
    I believe there's an option in Acrobat to embed the font as well, but I'm not recalling what it it.
    But that will ensure the font appears correctly.
    d

  • Can someone help me? High Res. PDF's are WAY TOO SMALL

    Hi All!
    Recently I've switched computers and had to put all of the settings from my previous computer onto my new computer. This has gone well, apart from one problem. I've installed all of the same settings from my previous Distiller onto my new Distiller (same versions - CS3) on my new computer, which should mean that when a postscript runs through Distiller, it makes a low resolution pdf and then a high resolution pdf. The low resolution pdf's work fine, but my issue is with the high resolution pdfs.
    The high resolution pdf's my old computer made were about 12MB, but the high resolution pdf's that my new computer make are more like 1.2MB. It doesn't seem to matter what I do, whether I export from InDesign or run it through Distiller, the results are always the same small pdf. Has anyone got any ideas?
    Oh, and usually the postscript will be bigger than the end pdf - eg: 6.6MB. If someone could get back to me, it would be greatly appreciated!
    Thanks!

    Hi Murrayviews
    What are you making your pdfs with? I had an opposite problem in that my magazines created in InDesign, when outputted, usually - say 2mb a page suddenly blew out to -say 10mb or more per page. My situation was caused by using my web offset printer's joboptions for Distiller which had changed from "Compression -jpeg auto" to "Compression-zip". An earlier size blow-out was caused by them supplying Creative Suite printer settings which changed the ICC profile from Web coated SWOP to ISO - which caused Photoshop to output immensely huge files (take the 100kb photo file turning into a 1mb file).
    Perhaps food for thought - something must have changed to have caused such a drastic result for you.
    Good luck with that and sorry not have been more help.
    Liz

  • For about 3 month I receive on my iPhone 3GS iOS6 and my iPad iOS5 empty messages without sender and subject in the mailbox BAL but not in the direct mailbox addresses. I cannot get rid of this messages. Can someone help me.  Thanks

    For about 3 month I receive on my iPhone 3GS iOS6 and my iPad iOS5 empty messages without sender and subject in the mailbox BAL but not in the direct mailbox addresses. I cannot get rid of this messages. Can someone help me.  Thanks !

    Disable Yahoo Messenger (with the arrow on the right of your account name) in Yahoo mail.

  • Digital Signature Interactive PDF form

    Hi
    I am Trying to make an Interactive PDF form with a functionality to Display and hide Specific Fields Using a Button
    Is It possible to Digitally Sign such a PDF
    If it is
    Will the signature be removed once i Activate the Interactive Functionality from the form of Display\Hide a field  ?

    To further elaborate:
    There is some general Java documentation in the SAP library on digitally signing a document with SSF:-
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/d0201854fb6a4cb9545892b49d4851/content.htm
    Questions though:
    (1) If I sign with the SSF classes will this then prevent the popup "Uncertified document" appearing in ACROBAT reader? The PDFs that the UI interactive form produces are not pure XML streams are they? As far as I can ascertain SSF is not suitable for signing PDFs!
    (2) At which event would one sign the pdfSource context node for an interactive form created in the web dynpro environment? At method WDoInit of the PDF view the pdfSource context node is still null.
    Thanks again,
    Jonathan

  • Can someone help me find a workaround to get flash to work in XP Pro 64 bit, like there is a workaround for vista 64 bit?

    Can someone help me find a workaround to get flash to work in XP Pro 64 bit, like there is a workaround for vista 64 bit?
    I am trying to get rid of all my 32 bit apps because the more of them you run in 64 bit the less resources are available.
    Firefox has a 64 bit browser they call the Shiretoko build. I love it, it's twice as fast as a heavily tweaked 32 bit firefox. Java has a 64 bit plugin that works with it.
    The last holdout is Adobe.
    Microsoft is making Vista and Win 7 64 bit as easy and smooth as the 32 bit versions as a means to get people to start using them.
    Linux has a way to make flash work with 64 bit.
    Remember when we all had a 16 bit operating system and how much better things got with 32 bit?
    Adobe, it's time!.. don't you see that?
    Can someone help me solve my problem? Please?

    lostchild wrote:
    sorry but that doesnt help my options the guy i called said they discontinued the audigy 4 and 2. I dont know why he would say that but he said his supplier cant get them. Are they really discontinued? Also, isnt the audigy 2 zs or whatever its called for notebooks? i cant use an external one. Well not that i cant, i dont want to. I just want a good sound card mounted into my computer...
    Thanx in advance.
    no the audigy 2 zs is pci based. they have another called audigy 2 zs notebook and that's the one for laptop. if you can't find it from your vendor, you can always try getting it from someone else.

  • Can someone help me with this powerpoint viewer with director issue?

    I have 'inherieted' an interactive CD that was built using director mx2004.  I get presentations from different people and put them on a CD to hand out at the end of a seminar. For the Power Point presentations I have director use the powerpoint viewer just in case someone does not have PowerPoint on there machine.  This works fine, but I have been getting people that are using PowerPoint 2007 which uses a different extension (pptx instead of ppt).  I also have word documents, adobe pdf, ect.  Here is the code that handles how to open up the files, whether using PPT viewer or the default program. wasn't sure if you needed all of this or not.
    --RUNS WHEN MAIN OPEN BUTTON IS PRESSED--
    on mouseUp me
      --if button 1-5 has been clicked
      if(_global.btnNum = 0 or _global.btnNum = 1 or _global.btnNum = 2 or _global.btnNum = 3 or _global.btnNum = 4 ) then
        --assign selected file to a variable
        selectedFile = sprite("listBox").selectedItem.data
        --path of the file that is selected
        filePath = "workshops\days\day" & _global.btnNum & "\" & selectedFile
        --find out the type of file
        fileExt = selectedFile.char[(selectedFile.length-2)..selectedFile.length]
      end if
      --if file is classified secret and not provided on this disc (must have "*" at data end)
      if(selectedFile.char[selectedFile.length] = "*") then
        --set file to placeholder.ppt (since it has an * at data end)
        filePath = "workshops\placeholder.ppt"
        --set file extension to ppt (since it has an * at data end)
        fileExt = "ppt"
      end if
      if(fileExt = "ppt")  then
        --opens file in powerpointviewer
        _player.open(filePath & " /S", "launchers\PPTVIEW.EXE")
        else
        --opens file in the default program on that computer
        _player.open(filePath, "launchers\PLAY.EXE")
      end if
    end
    I have been trying to get the pptx files to also open in the viewer.  I have been able to do this, but the problem is it wants to try to open everything in viewer.
    Here is what I have tried:
    1- This wants to open everything in PPT viewer.  Not sure why.
    if(fileExt = "ppt" or "pptx")  then
         --opens file in powerpointviewer
         _player.open(filePath & " /S", "launchers\PPTVIEW.EXE")
         else
         --opens file in the default program on that computer
         _player.open(filePath, "launchers\PLAY.EXE")
       end if
    end
    2-This will just open the 'pptx' file in Power Point.  I am sure I am using the 2007 version of PPT viewer in director.
    if(fileExt = "ppt")  then
        --opens file in powerpointviewer
        _player.open(filePath & " /S", "launchers\PPTVIEW.EXE")
      else if(fileExt = "pptx") then
        --opens file in powerpointviewer
      _player.open(filePath & " /S", "launchers\PPTVIEW.EXE")
      else
        --opens file in the default program on that computer
        _player.open(filePath, "launchers\PLAY.EXE")
      end if
    end
    I am not sure where to go from here.  Can someone help me?  Have not been using director for very long.
    Thanks

    It's unclear what exactly is the problem: is it managing to distinguish and open PowerPoint 2007 (*.pptx) files, or is it that every file tries to run in PPTView.exe?
    Part of your problem might be that .pptx is 4 characters long, while .ppt is only 3, and the code dealing with the file extension:
    fileExt = selectedFile.char[(selectedFile.length-2)..selectedFile.length]
    will only grab the last 3 characters regardless of where the "." is.
    Create a new #movie script member (press Ctrl + Shift + U and then hit the + button - "New Cast Member" - at the top-left of the script window that opens). Set the script syntax to JavaScript by altering the drop-down just below the + button and paste in the following:
    function jsGetExtension(fName){
      if(typeof(fName)!="string") return "";
      return fName.split(".").pop();
    Then use the following modification to your original script:
    global btnNum
    --RUNS WHEN MAIN OPEN BUTTON IS PRESSED--
    on mouseUp me
      --if button 1-5 has been clicked
      case btnNum of
        0, 1, 2, 3, 4:
          --assign selected file to a variable
          selectedFile = sprite("listBox").selectedItem.data
          --path of the file that is selected
          filePath = "workshops\days\day" & btnNum & "\" & selectedFile
          --find out the type of file
          fileExt = jsGetExtension(selectedFile)
      end case
      --if file is classified secret and not provided on this disc (must have "*" at data end)
      if (selectedFile.char[selectedFile.length] = "*") then
        --set file to placeholder.ppt (since it has an * at data end)
        filePath = "workshops\placeholder.ppt"
        --set file extension to ppt (since it has an * at data end)
        fileExt = "ppt"
      end if
      case fileExt of
        "ppt", "pptx":
          --opens file in powerpointviewer
          _player.open(filePath & " /S", "launchers\PPTVIEW.EXE")
        otherwise:
          --opens file in the default program on that computer
          _player.open(filePath, "launchers\PLAY.EXE")
      end case
    end
    However, I'm nervous that you aren't supplying the full path to files and executables. I don't know where the movie file that contains this code is relative to the folder "launchers\" or "workshops\" put I suggest you prepend the movie's full path (or the application's full path) like so:
    global btnNum
    --RUNS WHEN MAIN OPEN BUTTON IS PRESSED--
    on mouseUp me
      mPath = _movie.path -- OR _player.applicationPath
      --if button 1-5 has been clicked
      case btnNum of
        0, 1, 2, 3, 4:
          --assign selected file to a variable
          selectedFile = sprite("listBox").selectedItem.data
          --path of the file that is selected
          filePath = mPath & "workshops\days\day" & btnNum & "\" & selectedFile
          --find out the type of file
          fileExt = jsGetExtension(selectedFile)
      end case
      --if file is classified secret and not provided on this disc (must have "*" at data end)
      if (selectedFile.char[selectedFile.length] = "*") then
        --set file to placeholder.ppt (since it has an * at data end)
        filePath = mPath & "workshops\placeholder.ppt"
        --set file extension to ppt (since it has an * at data end)
        fileExt = "ppt"
      end if
      case fileExt of
        "ppt", "pptx":
          --opens file in powerpointviewer
          _player.open(filePath & " /S", mPath & "launchers\PPTVIEW.EXE")
        otherwise:
          --opens file in the default program on that computer
          _player.open(filePath, mPath & "launchers\PLAY.EXE")
      end case
    end

  • When I invoke Itunes I get an "error 7 (Windows 193)" message. I have reinstalled twice and get the same message. I have Windows 7 64 bit machine. Can someone help?

    When I invoke Itunes I get an "error 7 (Windows 193)" message. I have reinstalled twice and get the same message. I have Windows 7 64 bit machine. Can someone help?

    Uninstall your existing copy of iTunes. Delete any copies of the iTunesSetup.exe (or iTunes64Setup.exe) installer files from your downloads areas for your web browsers and download a fresh copy of the iTunes installer from the Apple website:
    http://www.apple.com/itunes/download/
    (The current build of the 11.1.4.62 installer was changed a few days ago, which fixed the bulk of the reports of MSVCR80.dll/R6034/APSDaemon.exe/Error-7/AMDS-could-not-start trouble ... but the build number on the installer was not changed. So we're trying to make sure you do the reinstall using a "new good" 11.1.4.62 installer instead of an "old bad".)
    Does the install with the new copy of the installer go through properly? If so, does that clear up the error message?
    If you still have the same error messages cropping up, then try the procedures from the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • Can someone help with Error 4280?

    Hi-
    I am getting Error Code 4280 every time I try to burn a cd. Can someone help me get past this?
    John
    Here are my diagnostics:
    Microsoft Windows XP Home Edition Service Pack 2 (Build 2600)
    Dell Computer Corporation Dimension 2400
    iTunes 6.0.4.2
    CD Driver 2.0.4.3
    CD Driver DLL 2.0.3.2
    LowerFilters: Pfc (2.5.0.204), PxHelp20 (2.0.0.0), Cdr4_xp (5.3.4.21),
    UpperFilters: pwd_2k (5.3.4.59), Cdralw2k (5.3.4.21), GEARAspiWDM (2.0.4.3),
    Video Driver: Intel(R) 82845G/GL/GE/PE/GV Graphics Controller\Intel(R) 82845G /GL/GE/PE/GV Controller
    IDE\DiskWDCWD2500JB-00GVA0____________________08.02D08, Bus Type ATA, Bus Address [1,0]
    IDE\DiskWDCWD800BB-75CAA0_____________________16.06V16, Bus Type ATA, Bus Address [0,0]
    IDE\CdRomHL-DT-STDVD-ROM_GDR8162B_______________0015___, Bus Type ATA, Bus Address [0,0]
    IDE\CdRomNEC_CD-RW_NR-9300A_____________________105B___, Bus Type ATA, Bus Address [1,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    Current user is administrator.
    D: HL-DT-ST DVD-ROM GDR8162B, Rev 0015
    Drive is empty.
    E: _NEC CD-RW NR-9300A, Rev 105B
    Media in drive is blank.
    Get drive speed succeeded.
    The drive CDR speeds are: 4 8 16 24 32 40 48.
    The drive CDRW speeds are: 4 8 16 24.
    The last failed audio CD burn had error code 4280(0x000010b8). It happened on drive E: _NEC CD-RW NR-9300A on CDR media at speed 48X.

    Hi JKost,
    This error is usually a "Optical Power Calibration error" and can be caused by software conflicts, a firmware that needs to be updated, or a blank CD that the drive cannot read/write too (Not all drives are compatible with all brands of blank CDs sad to say)
    I tried to look for your exact CD burning model on the dell site for a "Dimension 2400" but didn't see an exact model matching "NEC CD-RW NR-9300A" so if it is a burner that came with the PC when you bought it, you will have to goto the dell site www.dell.com to download the correct firmware update. If its one you had installed after you bought the PC, then goto the NEC site for the update www.NEC.com

  • Can someone help with some coding on a muse HTML page that exported incorrectly?

    I run an NGO called warriors organization. It's an NGO trying to protect indigenous cultures in tanzania from loosing their cultures.. Our president is running a marathon In a week to raise money to build a school for maasai children.. and the marathon page got garbled on export from muse. Can someone help with recoding that page? I'm traveling and don't have the muse work file with me.. Any help is greatly appreciated.. Take a look at http://warriorsorganization.org/marathon.html. I have a screen shot of how the page should look. Contact me at [email protected]
    Thank you,
    Aric

    1. yes
    2. yes
    3. No. DVD players can't play BluRay discs -- even if they are burned to a DVD disc.
    4. 1080p50 is a perfectly legitimate mode for shooting, particularly if you're shooting video with a lot of action, since it has double the actual frames of 1080i50. However, your output video may or may not actually have 50p frames (or even be 1920x1080), depending on what form of media you're publishing as. The BluRay files that Premiere Elements outputs, for instance are 50i.

  • CAN SOMEONE HELP ME WITH THIS ISSUE; the attempt to burn a disc failed. an unknown error occurred 4221

    CAN SOMEONE HELP WITH THIS ISSUE:
    THE ATTEMPT TO BURN A DISC FAILED. AN UNKNOWN ERROR OCCURRED (4221)

    Microsoft Windows XP Professional Service Pack 3 (Build 2600)
    IBM 18308TU
    iTunes 10.6.3.25
    QuickTime 7.7.2
    FairPlay 1.14.43
    Apple Application Support 2.1.9
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.2.0.6
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0012A7CC0B5F78F0
    Current user is an administrator.
    The current local date and time is 2012-08-12 22:04:05.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is disabled.
    HDCP is not supported.
    Core Media is not supported. (16005)
    Video Display Information
    ATI MOBILITY RADEON 7500
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: 2e39627a5d03e3456e051c0b031fabab
    iPodService 10.6.3.25 is currently running.
    iTunesHelper 10.6.3.25 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** CD/DVD Drive Tests ****
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.0.1),
    D: MATSHITA DVD-RAM UJ-842, Rev RB01
    Audio CD in drive.
    Found 11 songs on CD, playing time 41:38 on Audio CD.
    Track 1, start time 00:02:00
    Track 2, start time 04:00:20
    Track 3, start time 08:00:35
    Track 4, start time 11:08:15
    Track 5, start time 14:14:50
    Track 6, start time 19:11:15
    Track 7, start time 22:28:38
    Track 8, start time 25:48:38
    Track 9, start time 29:54:28
    Track 10, start time 34:03:35
    Track 11, start time 38:03:25
    Audio CD reading succeeded.
    Get drive speed succeeded.
    The drive CDR speeds are:   4 8 12 16 24.
    The drive CDRW speeds are:   4.
    The drive DVDR speeds are:   4.
    The drive DVDRW speeds are:   4.
    The last failed audio CD burn had error code 4221(0x0000107d). It happened on drive D: MATSHITA DVD-RAM UJ-842 on CDR media at speed 24X.

  • Major problems, comp freezing, programs not responding...can someone help?

    I've been trying to get my Yahoo Messenger to work. It used to work fine. Then all the sudden, it wouldn't connect. This was the 3.0 Beta version. So I switched to the older 2.5 version and it worked fine for a while. I played around with the beta YM to see what the problem was and on the connection settings, it had been switched to "default" from "behind firewall". I switched it back to "behind firewall" and it finally connected. But then my built-in iSight wouldn't work. It wouldn't let people view, told them I was unavailable. Then all the sudden, I wasn't receiving any messages from my friends so I signed off for a bit. I came back on and about 30 messages popped up and it was my friend thinking I was ignoring them. No I can't receive from them, and mine don't go through. I switched back to 2.5 and it was doing the same thing. I tried reinstalling both. Still nothing.
    I ran the disk permissions program and reinstalled them again. Still nothing. I downloaded Skype and my cam won't work there either. I tried it on iChat, it won't work there either. My internet started running slower than usual too. And then my whole computer decided to freeze up and I had to manually shut it down and restart it again. I tried to open up anything on the dock and it wouldn't. Then like YM, everything opened up at once about 20 minutes later.
    My question is, what do I need to do. Why is it doing this? Can someone help me figure out what is wrong with my computer? I haven't had it but maybe 5 months. I have been bragging about it that I have no problems like I did with my old computer that ran windows. Now I'm not so sure. Can someone help me?

    Like this? It says nothing about 3.0 beta version and thats the one thats mainly having problems.
    Host Name:
    Date/Time: 2007-03-15 21:12:41.043 -0500
    OS Version: 10.4.9 (Build 8P2137)
    Report Version: 4
    Command: Yahoo! Messenger
    Path: /Applications/Yahoo! Messenger
    Parent: WindowServer [1532]
    Rosetta: Yes
    Version: 2.5.3 (Build 1062) (2.5.3, Copyright © 1994-2003, Yahoo! Inc. All rights reserved.)
    PID: 1671
    Thread: Unknown
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0:
    0 LaunchCFMApp 0xb80a562f 0xb8000000 + 677423
    1 LaunchCFMApp 0xb809faf5 0xb8000000 + 654069
    2 LaunchCFMApp 0xb80bd70e 0xb8000000 + 775950
    3 LaunchCFMApp 0xb811e3d9 spinlockwrapper + 1985
    Thread 1:
    0 LaunchCFMApp 0xb822fa2b strchr + 72
    1 LaunchCFMApp 0xb81cb43b pthreadcondwait + 3114
    2 LaunchCFMApp 0xb8167612 catchexception_raise_stateidentity + 318
    3 LaunchCFMApp 0xb8166b4e CallPPCFunctionAtAddressInt + 177088
    4 LaunchCFMApp 0xb8166a45 CallPPCFunctionAtAddressInt + 176823
    5 LaunchCFMApp 0xb8167710 catchexception_raise_stateidentity + 572
    6 LaunchCFMApp 0xb8200bb4 pthread_create + 1124
    Thread 2:
    0 LaunchCFMApp 0xb8134280 spinlockwrapper + 91752
    1 LaunchCFMApp 0xb814d2b8 CallPPCFunctionAtAddressInt + 72490
    2 LaunchCFMApp 0xb80c803c 0xb8000000 + 819260
    Thread 3:
    0 LaunchCFMApp 0xb8134443 spinlockwrapper + 92203
    1 LaunchCFMApp 0xb815f9e8 CallPPCFunctionAtAddressInt + 148058
    2 LaunchCFMApp 0xb81625b5 CallPPCFunctionAtAddressInt + 159271
    3 LaunchCFMApp 0xb80c803c 0xb8000000 + 819260
    Thread 4:
    0 LaunchCFMApp 0xb81342f2 spinlockwrapper + 91866
    1 LaunchCFMApp 0xb814d490 CallPPCFunctionAtAddressInt + 72962
    2 LaunchCFMApp 0xb80c803c 0xb8000000 + 819260
    Unknown thread crashed with i386 Thread State:
    eax: 0x00000000 ebx: 0xb80a5608 ecx:0x00000000 edx: 0x00000003
    edi: 0x00000000 esi: 0x80d03990 ebp:0xb7fff9f8 esp: 0xb7fff9c0
    ss: 0x0000001f efl: 0x00010206 eip:0xb80a562f cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs:0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x2fff LaunchCFMApp /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp
    0x17aa000 - 0x17abfff com.ecamm.iGlassesVDIG iGlasses v1.4 (1.4) /Library/Components/iGlasses.component/Contents/MacOS/iGlasses
    0xc250000 - 0xc251fff com.ecamm.pluginloader Ecamm Plugin Loader v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0xc266000 - 0xc266fff libSystem.B.dylib /usr/libexec/oah/Shims/libSystem.B.dylib
    0xc284000 - 0xc285fff BDL.dylib /usr/libexec/oah/Shims/BDL.dylib
    0xe9f4000 - 0xea20fff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0xea64000 - 0xea65fff CoreFoundation /usr/libexec/oah/Shims/CoreFoundation.framework/CoreFoundation
    0xeb05000 - 0xeb0afff com.apple.audio.AppleHDAHALPlugIn 1.2.9 (1.2.9a4) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xeb2e000 - 0xeb6dfff com.apple.QuickTimeFireWireDV.component 7.1.5 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xebbc000 - 0xebbcfff ApplicationServices /usr/libexec/oah/Shims/ApplicationServices.framework/ApplicationServices
    0xed73000 - 0xed7dfff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x100a9000 - 0x100c0fff com.ecamm.iglasses v1.4 (1.4) /Library/InputManagers/Ecamm/Plugins/iGlasses.plugin/Contents/MacOS/iGlasses
    0x1020d000 - 0x1023ffff com.apple.QuickTimeIIDCDigitizer 7.1.5 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x10279000 - 0x102b8fff com.apple.QuickTimeUSBVDCDigitizer 1.7.5 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x102d9000 - 0x102e3fff com.apple.iokit.IOUSBLib 2.6.0 /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x1031f000 - 0x1035dfff GLEngine /usr/libexec/oah/Shims/GLEngine.bundle/GLEngine
    0x103f0000 - 0x103f6fff IOKit /usr/libexec/oah/Shims/IOKit.framework/IOKit
    0x10400000 - 0x10407fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x1040c000 - 0x1043cfff GLEngine /usr/libexec/oah/Shims/GLEngine.bundle/GLEngine
    0x10440000 - 0x10599fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x105c5000 - 0x105e1fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x1060c000 - 0x10646fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x1064b000 - 0x10722fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x1073d000 - 0x107a1fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x10810000 - 0x109fefff com.apple.ATIRadeonX1000GLDriver 1.4.52 (4.5.2) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x10a3a000 - 0x10a5efff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x10b10000 - 0x10b11fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x11284000 - 0x11289fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x113c3000 - 0x113ddfff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x113e2000 - 0x1143efff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x8fc00000 - 0x8fc50fff dyld 46.12 /usr/lib/dyld
    0x8fe00000 - 0x8fe4afff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901c0fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90218000 - 0x9021dfff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021f000 - 0x90261fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90289000 - 0x9036dfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90396000 - 0x90757fff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907e6000 - 0x908bdfff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90904000 - 0x90904fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90906000 - 0x90a0ffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a60000 - 0x90ae3fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90b0c000 - 0x90b7efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bf1000 - 0x90bfcfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90c01000 - 0x90c76fff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c8c000 - 0x90ca0fff libauto.dylib /usr/lib/libauto.dylib
    0x90ca6000 - 0x90f71fff com.apple.CoreServices.CarbonCore 682.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90fce000 - 0x91047fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9108a000 - 0x910cbfff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x910df000 - 0x910f3fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x910ff000 - 0x91190fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x911cc000 - 0x911ecfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x911f9000 - 0x91208fff libz.1.dylib /usr/lib/libz.1.dylib
    0x9120b000 - 0x913c0fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x914bd000 - 0x914c6fff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x914cd000 - 0x914f5fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91507000 - 0x9150ffff libbsm.dylib /usr/lib/libbsm.dylib
    0x91513000 - 0x9158cfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x915d6000 - 0x915d6fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x915d8000 - 0x9160bfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91621000 - 0x916fefff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9173d000 - 0x917befff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x917fb000 - 0x918adfff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x918e2000 - 0x91938fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91960000 - 0x9197afff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91988000 - 0x919a8fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x919b5000 - 0x919f1fff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91a09000 - 0x91a17fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a1f000 - 0x91a5dfff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a72000 - 0x91b35fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b80000 - 0x91b95fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b9a000 - 0x91bbafff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91bbf000 - 0x91c1ffff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c31000 - 0x91c35fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c37000 - 0x91ca0fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ca5000 - 0x91ce5fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91ceb000 - 0x91d05fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d0a000 - 0x91d0cfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d0e000 - 0x91dfcfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e1b000 - 0x91e1bfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e1d000 - 0x91f03fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f0b000 - 0x91f2afff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91f96000 - 0x92022fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9202e000 - 0x920c5fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920de000 - 0x9268bfff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926be000 - 0x929e9fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a19000 - 0x92b08fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b0b000 - 0x92b91fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bd3000 - 0x92e07fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f2a000 - 0x92f4afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f55000 - 0x92fb1fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fc7000 - 0x92fc7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fc9000 - 0x92fdefff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fef000 - 0x92ffafff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93002000 - 0x9300bfff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93013000 - 0x930a6fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930bb000 - 0x930c0fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930c4000 - 0x930e6fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x930fa000 - 0x93102fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93109000 - 0x93172fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9319b000 - 0x931e3fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9320d000 - 0x9321efff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93227000 - 0x9322efff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93234000 - 0x9355bfff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93690000 - 0x9369dfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93709000 - 0x93709fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9370b000 - 0x93d79fff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94101000 - 0x94175fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941af000 - 0x9426dfff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942b1000 - 0x942b1fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942b3000 - 0x94466fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x944af000 - 0x944effff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x944f7000 - 0x9453bfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94542000 - 0x94556fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x946ed000 - 0x946fefff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94705000 - 0x94712fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94762000 - 0x9477cfff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94783000 - 0x94a58fff com.apple.QuickTime 7.1.5 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94b1c000 - 0x94b3efff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94e95000 - 0x94eb3fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x96026000 - 0x9603dfff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x9603f000 - 0x96060fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x9606e000 - 0x9607dfff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x96085000 - 0x96098fff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x969f5000 - 0x96a14fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97159000 - 0x97166fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9854d000 - 0x990fafff com.apple.QuickTimeComponents.component 7.1.5 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99362000 - 0x99366fff com.apple.QuickTimeH264.component 7.1.5 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x99368000 - 0x9944efff QuickTimeH264.altivec /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x9959e000 - 0x99667fff com.apple.QuickTimeMPEG4.component 7.1.5 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x99e8e000 - 0x99eadfff com.apple.OpenTransport 3.0 /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x99f28000 - 0x99f29fff com.apple.iokit.dvcomponentglue 1.9.0 /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0x9baaa000 - 0x9baacfff Interposers.dylib /usr/libexec/oah/Shims/Interposers.dylib
    0xb8000000 - 0xb82d6fff LaunchCFMApp /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp
    Translated Code Information:
    Rosetta Version: 17.25
    Args: /Applications/Yahoo! Messenger /Applications/Yahoo! Messenger -psn03276801
    Exception: EXCBADACCESS (0x0001)
    Thread 0: (0xb029ddf8, 0xb8134280)
    0x90031480: /usr/lib/libSystem.B.dylib : pthread_condwait + 0x1b4
    0x92c45448: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation : -[NSConditionLock lockWhenCondition:] + 0x38
    0x937e4930: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit : -[NSUIHeartBeat _heartBeatThread:] + 0x138
    0x92bef94c: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation : _forkThreadForFunction + 0x6c
    0x9002bdc8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp : + 0x0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x900314b0 ctr: 0x9002c460
    r00: 0xffffffdb r01: 0xf0284980 r02: 0xa0001fcc r03: 0x00003e03
    r04: 0x00003f03 r05: 0x00000000 r06: 0x00000001 r07: 0x00000000
    r08: 0xf0284ae8 r09: 0x00000001 r10: 0x00000486 r11: 0xa0006b70
    r12: 0x9002c460 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0xa37447f8
    r24: 0xa37447f8 r25: 0xa37447f8 r26: 0xa00012dc r27: 0x101da858
    r28: 0xa0001fcc r29: 0x101da884 r30: 0xa0001fcc r31: 0x900312dc
    Thread 1: Crashed (0xb7fff9c0, 0xb80a562f)
    0x85390004: No symbol
    0x85471cd8: No symbol
    0x85471e00: No symbol
    0x90d0f7b8: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _ReleaseClosure + 0x380
    0x90d0f410: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _TerminateApplication + 0x58
    0x90d23c84: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : cxa_atexitwrapper + 0xc4
    0x90014d7c: /usr/lib/libSystem.B.dylib : __cxafinalize + 0xe8
    0x90014c64: /usr/lib/libSystem.B.dylib : _exit + 0x24
    0x918f47f0: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices : _GetCIcon + 0x0
    0x85589278: No symbol
    0x855891f4: No symbol
    0x85582fd8: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x85390004 ctr: 0x8546d210
    r00: 0x00000000 r01: 0xbffff110 r02: 0x00487000 r03: 0x00000000
    r04: 0x00000064 r05: 0x00000000 r06: 0xf060b9c0 r07: 0x00000005
    r08: 0x00000001 r09: 0x001dd570 r10: 0xa0006160 r11: 0xa9e8e3a0
    r12: 0x00486048 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0xa0cafe50 r18: 0x00000000 r19: 0xffffffff
    r20: 0xa0004ca8 r21: 0xa0004ca8 r22: 0x00312010 r23: 0x00000000
    r24: 0xa0001fcc r25: 0x00000000 r26: 0xa000d6e4 r27: 0x000072d8
    r28: 0x0047f000 r29: 0xa0ca61bc r30: 0xa0c9f44c r31: 0xf060b9c0
    Thread 2: (0xb0728df0, 0xb81342f2)
    0x9007282c: /usr/lib/libSystem.B.dylib : pthread_cond_timedwait_relativenp + 0x1ec
    0x90d14afc: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _TSWaitOnSemaphoreCommon + 0xbc
    0x90d1c7a0: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _TimerThread + 0x48
    0x9002bdc8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp : + 0x0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x90072868 ctr: 0x90055940
    r00: 0xffffffd9 r01: 0xf068ccb0 r02: 0xa0001fcc r03: 0x00003803
    r04: 0x00003903 r05: 0x00000000 r06: 0x009863b8 r07: 0x9040bf81
    r08: 0x00000000 r09: 0x00000001 r10: 0xf068cdc8 r11: 0xa0006b5c
    r12: 0x90055940 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0xa0cac768 r23: 0xa0ca6b50
    r24: 0x00000000 r25: 0xa0002654 r26: 0xa0ca6b84 r27: 0xa0ca6bb8
    r28: 0xf068cdc8 r29: 0xa0001fcc r30: 0xa0001fcc r31: 0x90072654
    Thread 3: (0xb06a77fc, 0xb8134443)
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp : + 0x0
    0x90d05008: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _YieldToThread + 0x204
    0x90d0ee60: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _SetThreadState + 0xac
    0x90d0ed88: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _SetThreadStateEndCritical + 0x88
    0x85477548: No symbol
    0x85475ae8: No symbol
    0x85474328: No symbol
    0x8546e334: No symbol
    0x8546d1e8: No symbol
    0x8546d518: No symbol
    0x8546d290: No symbol
    0x8538f7d8: No symbol
    0x85477c24: No symbol
    0x90d0ef30: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _InvokeThreadEntryUPP + 0x18
    0x90d0ecb0: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _CooperativeThread + 0x138
    0x9002bdc8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x9000ab5c ctr: 0x9000ac00
    r00: 0xffffffe1 r01: 0xf060b0c0 r02: 0x00000013 r03: 0xf060b16c
    r04: 0x00000003 r05: 0x00000018 r06: 0x00000020 r07: 0x000086ab
    r08: 0x00000000 r09: 0x00000000 r10: 0x00000000 r11: 0xa00069a4
    r12: 0x9000ac00 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000018
    r24: 0xf060b16c r25: 0x00000020 r26: 0x000086ab r27: 0x00000000
    r28: 0x00000000 r29: 0x00000003 r30: 0x00000003 r31: 0x90d04e14

Maybe you are looking for