JCrollPane autoscroll when focus components

Hi, I really find this in google but I couldn't find and answer....
I have a JScrollPane with internal panels, which have thier components, the proble is that if I get to one of this components by pressing "tab" and the component wasn't visible the JScrollPane doesn't do autoscroll to show the selected component.
Any ideas, thanks a lot.
David Casta�eda

David, if I were you I would try to change the position of the scroll when the panel gets the focus (you would need an ActionListener)
Answer provided by java experts at http://www.consultoriajava.com

Similar Messages

  • Second Printed Page of a Report Is Corrupted As Well the Report View When Focus Is Returned To It

    I am having a problem with a report in Access 2010. The report detail has a linked subreport in it. I build a query dynamically for both the report and subreport. There is a form that builds the queries and then displays the report in Report View. Everything
    is displayed correctly. In this view I have a command button that will print the report using “DoCmd.RunCommand acCmdPrint.”The printed report’s first page is correct. The second page has #error for all the fields for next record detail and that is it. At
    this point, there are still multiple records to print. When focus is returned to the Print View, it is corrupted and usually freezes.
    If after the Report View is displayed, I right click on the header and choose to display the Print Preview, all pages are displayed correctly. If I right click again, and select print, all pages are printed correctly, and the Report View is not corrupted.
    To see if I had corrupted the database, I imported everything into an empty database. After compiling the code, the behavior did not change at all.
    Once I place the database into production, everything will be driven by command buttons on the forms and reports so the left-click drop-down menus or any ribbons will not be available.
    Does anyone know what is happening?
    Thanks, in advance.

    Hi Ray,
    I failed to reproduce this issue in my test environment (Access 2013).
    Steps:
    #1 Create a table with the attachment field, add multiple records
    #2 Create a report with the table
    #3 Click Print Preview of the report, it worked correctly
    Can you also reproduce this issue in a newly created database, if no, I will suspect that issue is related to the specific database file (data issue or database is corrupted). You could use the link below to compact and repair the database.
    Compact and repair a database
    If the methods above do not work, it would be helpful if you could share us a simple demo to reproduce this issue. Due to privacy issues, I will also suggest you submitting a professional support incident to get the 1-1 support service so that Microsoft
    engineers can work closely with you to resolve this issue.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • [svn:fx-trunk] 12878: When sub-components don' t have a tabIndex and when VideoPlayer instance does, assigned tabIndex to each inner-component to ensure that they appear in the correct tab order with other components on the stage .

    Revision: 12878
    Revision: 12878
    Author:   [email protected]
    Date:     2009-12-11 19:07:40 -0800 (Fri, 11 Dec 2009)
    Log Message:
    When sub-components don't have a tabIndex and when VideoPlayer instance does, assigned tabIndex to each inner-component to ensure that they appear in the correct tab order with other components on the stage.
    QE notes: none
    Doc notes: none
    Bugs: n/a
    Reviewer: Gordon
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/accessibility/VideoPlayerAccImpl.as

    Michael,
    "Michael Caughey" <[email protected]> wrote in message news:413f0af6$1@mail...
    If I'm doing something wrong what is it? Obviously there is something
    different about how I configured my environment a year ago.What happens if you bring down ms02?
    Regards,
    Slava Imeshev

  • TextInput Custom Skin with different for when focused in

    Hello,
    Is it possible to Skin a TextInput to look one way when not focused and another when focused in?
    Basically, have states based on focus?
    Thank you.

    Hmm.  Thought I’d answered.
    It should be possible.  I think you just add states to the skin and override getCurrentSkinState in the host.

  • TextBox losing its text when focus changed?

    Hi all,
    Im developing a plugin in Illustrator CS3 using VisualStudio 2005.
    I design my dialog using ADM in VS.
    The textbox losing its text when focus is changed.
    In my dialog i have a textbox,checkbox and a ok and cancel button.
    In case, if i enter the text and press tab or the checkbox (before moving the focus to ok or cancel button) the text remains uncleared.
    But if i enter the text and move the mouse to ok or cancel button the text box value gets cleared.
    Please someone guide me to solve this problem.
    Thanks in advance,
    Poovili

    Yeah its working when removing the setdrawproc..
    But we need this setdrawproc..Because we save the project settings and next time we load the project the values'll automatically come up using this dialogdrawproc in setdrawproc..the following is our dialogdrawproc code
    static void ASAPI DialogDrawProc( ADMDialogRef dialog,ADMDrawerRef drawer)
        ADMItemRef ItemRef;
        if(dialog==g->qcCheckDialog )
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtOverprint);
            sADMItem->SetText(ItemRef,g->BlackValues);
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtTintValues);
            sADMItem->SetText(ItemRef,g->TintValues  );
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtRuleThickness);
            sADMItem->SetText(ItemRef,g->RuleThickNess  );
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtDashGap1);
            sADMItem->SetText(ItemRef,g->DashGapValues  );
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtPatterns);
            sADMItem->SetText(ItemRef,g->PatternValues  );
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtLeadTextSize);
            sADMItem->SetText(ItemRef,g->LeadTextSize  );
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtSuperscript);
            sADMItem->SetText(ItemRef,g->SupValue );   
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtSubscript);
            sADMItem->SetText(ItemRef,g->SubValue );
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtBitmapResFrom);
            sADMItem->SetText(ItemRef,g->BitmapResFrom);
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtGrayScaleResFrom);
            sADMItem->SetText(ItemRef,g->GrayscaleResFrom);
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtCMYKResFrom);
            sADMItem->SetText(ItemRef,g->CMYKResFrom);
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtBitmapResTo);
            sADMItem->SetText(ItemRef,g->BitmapResTo);
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtGrayScaleResTo);
            sADMItem->SetText(ItemRef,g->GrayscaleResTo);
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtCMYKResTo);
            sADMItem->SetText(ItemRef,g->CMYKResTo);
            //-------------TYPE AREA---------------------------------
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtAreaWD);
            sADMItem->SetText(ItemRef,g->TAreaWD);
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtTAHeight2);
            sADMItem->SetText(ItemRef,g->TAAreaHt);
                            //column size
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtColumn1Height);
            sADMItem->SetText(ItemRef,g->Column1Height);
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtColumn1Width);
            sADMItem->SetText(ItemRef,g->Column1Width);
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtColumn2Height);
            sADMItem->SetText(ItemRef,g->Column2Height);
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtColumn2Width);
            sADMItem->SetText(ItemRef,g->Column2Width);
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtColumn3Height);
            sADMItem->SetText(ItemRef,g->Column3Height);
            ItemRef=sADMDialog->GetItem(g->qcCheckDialog ,txtColumn3Width);
            sADMItem->SetText(ItemRef,g->Column3Width);
            //sADMDialog->Draw(drawer);
            //admDialog->Draw(drawer);
            //-------------SAVE SETTINGS--------------------------------
        if(dialog==g->LoginSaveSettingsDialog)
            ItemRef=sADMDialog->GetItem(g->LoginSaveSettingsDialog ,txtLSSUser1);
            sADMItem->SetText(ItemRef,g->TxtLSSUser1);
            ItemRef=sADMDialog->GetItem(g->LoginSaveSettingsDialog ,txtLSSPassword);
            sADMItem->SetText(ItemRef,g->TxtLSSPassword);
        //-----------------ADD NEW USER-----------------------------------
        if(dialog==g->AddNewUserDialog)
            ItemRef=sADMDialog->GetItem(g->AddNewUserDialog ,txtLogin1);
            sADMItem->SetText(ItemRef,g->TxtLogin1);
            ItemRef=sADMDialog->GetItem(g->AddNewUserDialog ,txtPassword);
            sADMItem->SetText(ItemRef,g->TxtPassword);
        if(dialog==g->AddingUsertoDBDialog)
            ItemRef=sADMDialog->GetItem(g->AddingUsertoDBDialog ,txtNeuUser);
            sADMItem->SetText(ItemRef,g->TxtNeuUser);
            ItemRef=sADMDialog->GetItem(g->AddingUsertoDBDialog ,txtCreateNewPassword);
            sADMItem->SetText(ItemRef,g->TxtCreatePassword);
        //-------------------------Change Password-----------------------
        if(dialog==g->ChangePasswordDialog)
            ItemRef=sADMDialog->GetItem(g->ChangePasswordDialog ,txtCPLogin);
            sADMItem->SetText(ItemRef,g->TxtCPLogin1);
            ItemRef=sADMDialog->GetItem(g->ChangePasswordDialog ,txtCPOldPass);
            sADMItem->SetText(ItemRef,g->TxtCPOldPass);
            ItemRef=sADMDialog->GetItem(g->ChangePasswordDialog ,txtCPNewPass);
            sADMItem->SetText(ItemRef,g->TxtCPNewPass);
            ItemRef=sADMDialog->GetItem(g->ChangePasswordDialog ,txtCPConfirmPass);
            sADMItem->SetText(ItemRef,g->TxtCPConfirmPass);
        if(dialog==g->SelectProjDialog)
             if (CyanToMagBool==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath );
            /*else if(RasterColorsBool==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath );
            else if(RasterColorsBool==true)
                dialog = sADMItem->GetDialog(ItemRef);
                if (ItemRef==sADMDialog->GetItem(dialog, txtAssessmentPath1))
                    sADMItem->GetText(ItemRef,g->ConversionFolderPath ,1024);
                    sADMItem->SetText(ItemRef,g->ConversionFolderPath );
                    //MessageBox(NULL,g->BlackValues,"Txt",0);
           else if(SaveAdvancedAssessBool == true)
               ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->AssessmentFolderPath);
            else if(ConvertSwatchBool==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath);   
            else if(DrawBBBool==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath );
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtBBSpacing);
                sADMItem->SetText(ItemRef,g->BBSpacing );
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtBBStrokeWidth);
                sADMItem->SetText(ItemRef,g->BBStrokeWidth );   
            else if(ConvertGradientBool==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath );
            else if (PantoneToCyanBool==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath );
            else if (QceraBatchConversionBool1==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath );
            else if (PantoneToMagentaBool==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath );
            else if(SaturationBool==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath );
            else if(ColorOverprintBool==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath );
            //else if(ColorsBatchBool==true)
            if(sADMItem->GetBooleanValue( sADMDialog->GetItem( g->SelectProjDialog, CHK_CheckColors1 ))==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath );
            else if (ConvertFontsBool==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath );
                else if(FontCorrectionBool==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath );
            else if(ScalingBool==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->ConversionFolderPath );
            else if(SaveAssessBool==true)
                ItemRef=sADMDialog->GetItem(g->SelectProjDialog ,txtAssessmentPath1);
                sADMItem->SetText(ItemRef,g->AssessmentFolderPath);
                //MessageBox(NULL,g->AssessmentFolderPath,"Assess",0);
    //MessageBox(NULL,g->ConversionFolderPath,"Assess",0);
        if(dialog==g->CleanDialog)
            if(CleanArtBatchConversionBool==true)
            ItemRef=sADMDialog->GetItem(g->CleanDialog ,txtLeadingValue);
            sADMItem->SetText(ItemRef,g->leadingValue  );
            ItemRef=sADMDialog->GetItem(g->CleanDialog ,txtBlackValues);
            sADMItem->SetText(ItemRef,g->ApplyBlackValues  );
            ItemRef=sADMDialog->GetItem(g->CleanDialog ,txtCleanArt_SpecifyFolder1);
            sADMItem->SetText(ItemRef,g->CleanArtFolderPath );
    Let me know if i'm not clear. Thanks in advance..

  • Components vanishing when focus brought back

    Am seeing this behaviour in my swing Application. I have a Jtree component and a JTabbedPane which shows up when I select a JTree node. The panel displays well first time and then I bring over some other running application (say a browser) on top. On regaining the focus on the Swing app, my JTabbedPane vanishes from the view. I have to reselect the tree node to get back the view. Why is this happening?
    Some paint issues I am unaware of?
    Thanks

    Arghhhhh ... my bad ... had stupidly forgotten to properly remove components before adding new ones. Was calling revalidate on the Panel which contained the TabbedPane after removing older components and adding new ones.
    Anyway ... Thanks izrailov for attempting to look up. Ya code would have been helpful ... will make sure to have some snippets in future ...
    Coolios Thanks!

  • How can I avoid running out of memory when creating components dynamically

    Hello everyone,
    Recently, I am planning to design a web application. It will be used by all middle school teachers in a region to make examination papers and it must contain the following main functions.
    1)Generate test questions dynamically. For instance, a teacher who logs on the web application will only see a select one menu and a Next Quiz button. The former is used for determining the number of options for the current multiple/single choice question. The later is dedicated to creating appropriate input text elements according to the selected option number. That is to say, if the teacher selects 4 in the menu and presses the Next Quiz button, 5 input text form elements will appear. The first one is for the question to be asked such as "1.What is the biggest planet in the solar system?", the others are optional answers like a)Uranus. b) Saturn. c)Jupiter. d)Earch. Each answer stands for an input text elements. When the teacher fills in the fourth answer, another select one menu and Next Quiz button will emerge on the fly just under this answer, allowing the teacher to make the second question. The same thing repeats for the following questions.
    2)Undo and Redo. Whenever a teacher wants to roll back or redo what he has done, just press the Undo or[i] Redo button. In the previous example, if the teacher selects the third answer and presses the Delete button to drop this answer, it will delete both the literal string content[i] and the input text element, changing the answer d to c automatically. After that, he decides to get back the original answer c, Jupiter, he can just click the Undo button as if he hadn�ft made the deleting operation.
    3)Save the unfinished working in the client side. If a teacher has done half of his work, he can choose to press the Save button to store what he has done in his computer. The reason for doing so is simply to alleviate the burden of the server. Although all finished test papers must be saved in a database on the server, sometimes the unfinished papers could be dropped forever or could form the ultimate testing papers after several months. So if these papers keep in the server, it will waste the server computer�fs room. Next time the teacher can press the Restore button on the page to get the previously stored part of the test paper from his own computer and continue to finish the whole paper.
    4)Allow at least 1,000 teachers to make test papers at the same time. The maximum question number per examination paper is 60.
    Here are my two rough solutions,
    A.Using JSF.
    B.Using JavaScript and plain JSP[b] without JSF.
    The comparison of the two solutions:
    1)Both schemas can implement the first and the second requirements. In JSF page I could add a standard panelGird tag and use its binding attribute. In the backing bean, the method specified by the binding attribute is responsible for generating HtmlInput objects and adding them to the HtmlPanelGird object on the fly. Every HtmlInput object is corresponding to a question subject or an optional answer. The method is called by an actionListener, which is registered in the Next Quiz commandButton, triggering by the clicking on this button in the client side. Using JSF can also be prone to managing the HtmlInput objects, e.g. panelGird.getChildren().add(HtmlInput) and panelGird.getChildren().remove(HtmlInput) respond to the undoing operation of deleting an optional answer and the redoing operation of the deleting action respectively. I know JavaScript can also achieve these goals. It could be more complex since I don�ft know well about JavaScript.
    2)I can not find a way to meet the third demand right now. I am eager to know your suggestion.
    3)Using JSF, I think, can�ft allow 1,000 teachers to do their own papers at the same time. Because in this scenario, suppose each questionnaire having 60 questions and 4 answers per question, there will be approximately 300,000 HtmlInput objects (1,000X60X(4+1)) creating on the server side. The server must run out of memory undoubtedly. To make things better, we can use a custom component which can be rendered as a whole question including its all optional answers. That is to say, a new custom component on the server side stands for a whole question on the client side. Even so, about 60,000(1,000X60) this type of custom components will be created progressively and dynamically, plus other UISelectOne and UICommand objects, it also can�ft afford for most servers. Do I have to use JavaScript to avoid occupying the server's memory in this way? If so, I have to go back and use JavaScript and plain JSP without JSF.
    Thank you in advance!
    Best Regards, Ailsa
    2007/5/4

    Thank you for your quick response, BalusC. I really appreciate your answer.
    Yes, you are right. If I manually code the same amount of those components in the JSF pages instead of generating them dynamically, the server will still run out of memory. That is to say, JSF pages might not accommodate a great deal of concurrent visiting. If I upgrade the server to just allow 1,000 teachers making their own test papers at the same time, but when over 2,000 students take the same questionnaire simultaneously, the server will need another upgrading. So I have to do what you have told me, using JS+DOM instead of upgrading the server endlessly.
    Best Regards, Ailsa

  • Issues with Quark Xpress Hang/Freeze when focus is shifted to anything else

    I've been working on this issue since the 28th of Dec.
    I've been in contact with Quark. They're still examining crash log.
    I thought I'd share what is on my plate in hopes others might have had, and solved similar experience.
    This message will be verbose in hope of giving the uber-guru answers to questions in advance of their being asked.
    First portion will contain a log of actions taken and results there of.
    Second will be the typical Quark Crash log I've been getting when the application is quit.
    I will mention as well that I've received a clean bill of health from TechToolPro, DiskWarrior, etceteras, as well as Passed the tests from Apple Hardware Tests.
    Let me know if I can provide any additional info
    Log of Actions
    Installation of new Quark, up to 6.5 only.
    Completed at 5:27pm
    Launching Quark under New User at 5:28
    Launch successful.
    Created one file. Saved file, selected finder, then text editor, the quark.
    Quark still operating. added text, saved, and closed document.
    selected finder, then text editor, the quark.
    Quark still operating.
    Manually quit quark from application menu at 5:33.
    Application successfully "quit" without "crashing"
    Repeating the procedure above at 5:34
    Launched quark via double-click of previously saved file.
    added text, saved, selected finder, then text editor, the quark.
    Quark still operating.
    selected finder, then text editor, the quark.
    Quark still operating.
    quit quark from cmd-tab cmd-q method causes "unexpected crash"
    Ran several similar scenarios, with this as conclusion:
    Launching quark from double click of application, creation of new document, saving, and quitting in ANY fashion allows safe quit
    Launching Quark, opening from save/open dialog box an existing document, then quit with or without edit, using cmd-tab cmd-q allows safe quit
    Double-clicking existing document to launch Quark, then closing document after edit and save or immediately, quark Unexp. Crash occurs with Cmd-Tab Cmd-Q every time.
    Double-clicking existing documents to launch Quark, then closing document after edit and save, then create new document, with save and close, quark Unexp. Crash occurs with Cmd-Tab Cmd-Q every time.
    Launching of Quark 6.50 under base user
    Launching Quark, opening from save/open dialog box an existing document, then quit with or without edit, using cmd-tab cmd-q allows safe quit
    Double-clicking existing document to launch Quark, then closing document after edit and save or immediately, quark Unexp. Crash occurs with Cmd-Tab Cmd-Q every time.
    Double-clicking existing documents to launch Quark, then closing document after edit and save, then create new document, with save and close, quark Unexp. Crash occurs with Cmd-Tab Cmd-Q every time.
    Launching Quark, creating file, saving, selected finder, then text editor, the quark.
    Quark hangs/freezes until force-quit
    it seems there are two issues at hand.
    unexpected crashes occur with cmd-tab cmd-q in either Base or New user logins when quark launch was initiated by double-click of file from finder.
    and
    unexplained application hangs/freezes when under base user.
    Quark Crash Log
    Date/Time: 2008-01-03 19:08:44.597 -0500
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: QuarkXPress
    Path: /Applications/QuarkTest/QuarkXPress 6.1/QuarkXPress/Contents/MacOS/QuarkXPress
    Parent: WindowServer [102]
    Version: QuarkXPress version 6.50 (6.50)
    PID: 4127
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x170f086c
    Thread 0 Crashed:
    0 <<00000000>> 0x170f086c 0 + 386861164
    1 com.quark.QuarkXPress 0x00554a18 _destroy_globalchain + 60
    2 com.quark.QuarkXPress 0x0053f910 exit + 52
    3 com.quark.QuarkXPress 0x00003f04 call_mod_initfuncs + 0
    4 com.quark.QuarkXPress 0x00003d80 _code_start_ + 48
    Thread 1:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.unsanity.ape 0xc0001bf4 _apeagent + 296
    3 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf73f4 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bff390 TimerThread + 60
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x900411f8 machwaituntil + 8
    1 libSystem.B.dylib 0x90040fc4 nanosleep + 388
    2 libSystem.B.dylib 0x90040df0 sleep + 144
    3 <<00000000>> 0x26124604 0 + 638731780
    4 <<00000000>> 0x2612d724 0 + 638768932
    5 <<00000000>> 0x2612d334 0 + 638767924
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900541e4 pthreadcondtimedwait + 676
    2 <<00000000>> 0x26125f90 0 + 638738320
    3 <<00000000>> 0x26126134 0 + 638738740
    4 <<00000000>> 0x25caa6bc 0 + 634037948
    5 <<00000000>> 0x26251480 0 + 639964288
    6 <<00000000>> 0x2612d724 0 + 638768932
    7 <<00000000>> 0x2612d334 0 + 638767924
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900541e4 pthreadcondtimedwait + 676
    2 <<00000000>> 0x26125f90 0 + 638738320
    3 <<00000000>> 0x26126134 0 + 638738740
    4 <<00000000>> 0x25caa6bc 0 + 634037948
    5 <<00000000>> 0x26251480 0 + 639964288
    6 <<00000000>> 0x2612d724 0 + 638768932
    7 <<00000000>> 0x2612d334 0 + 638767924
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900541e4 pthreadcondtimedwait + 676
    2 <<00000000>> 0x26125f90 0 + 638738320
    3 <<00000000>> 0x26126134 0 + 638738740
    4 <<00000000>> 0x25caa6bc 0 + 634037948
    5 <<00000000>> 0x26251480 0 + 639964288
    6 <<00000000>> 0x2612d724 0 + 638768932
    7 <<00000000>> 0x2612d334 0 + 638767924
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x900411f8 machwaituntil + 8
    1 libSystem.B.dylib 0x90040fc4 nanosleep + 388
    2 libSystem.B.dylib 0x90040df0 sleep + 144
    3 <<00000000>> 0x2625157c 0 + 639964540
    4 <<00000000>> 0x2612d724 0 + 638768932
    5 <<00000000>> 0x2612d334 0 + 638767924
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000170f086c srr1: 0x100000004000f030 vrsave: 0x0000000000000000
    cr: 0x44800204 xer: 0x0000000000000000 lr: 0x00000000005549cc ctr: 0x00000000170f086c
    r0: 0x0000000000554a18 r1: 0x00000000bffffac0 r2: 0x00000000007e2d70 r3: 0x00000000170f086c
    r4: 0xffffffffffffffff r5: 0x00000000000003e8 r6: 0xffffffffffffffff r7: 0x0000000000000000
    r8: 0x0000000000000001 r9: 0x00000000a0001fac r10: 0x0000000002285a00 r11: 0x0000000024800202
    r12: 0x00000000170f086c r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x0000000000000000 r21: 0x0000000000000000 r22: 0x0000000000000000 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x0000000000000000 r26: 0x00000000bffffc44 r27: 0x000000000000000c
    r28: 0x0000000000000002 r29: 0x00000000bffffc54 r30: 0x000000000053f8f8 r31: 0x00000000007e49f0
    Binary Images Description:
    0x1000 - 0x71efff com.quark.QuarkXPress QuarkXPress version 6.50 (6.50) /Applications/QuarkTest/QuarkXPress 6.1/QuarkXPress/Contents/MacOS/QuarkXPress
    0xb05000 - 0xc45fff OmniCore.Mach-O.r.dylib /Applications/QuarkTest/QuarkXPress 6.1/OmniCore.Mach-O.r.dylib
    0xd1e000 - 0xe8ffff Xerces-c-cw8 /Library/Frameworks/Xerces-c-cw8.framework/Xerces-c-cw8
    0x1922c20 - 0x1922cd2 CFMPriv_CoreFoundation PEF binary: CFMPriv_CoreFoundation
    0x19232f0 - 0x1923367 CFMPriv_System PEF binary: CFMPriv_System
    0x1923610 - 0x19236e0 CFMPriv_CarbonSound PEF binary: CFMPriv_CarbonSound
    0x1923760 - 0x1923833 CFMPriv_CommonPanels PEF binary: CFMPriv_CommonPanels
    0x1923910 - 0x19239cb CFMPriv_Help PEF binary: CFMPriv_Help
    0x19239d0 - 0x1923a9a CFMPriv_HIToolbox PEF binary: CFMPriv_HIToolbox
    0x1923b20 - 0x1923bf6 CFMPriv_HTMLRendering PEF binary: CFMPriv_HTMLRendering
    0x1923c70 - 0x1923d43 CFMPriv_ImageCapture PEF binary: CFMPriv_ImageCapture
    0x1923dd0 - 0x1923eb5 CFMPriv_NavigationServices PEF binary: CFMPriv_NavigationServices
    0x1923f30 - 0x1924006 CFMPriv_OpenScriptingMacBLib PEF binary: CFMPriv_OpenScriptingMacBLib
    0x19240e0 - 0x192419e CFMPriv_Print PEF binary: CFMPriv_Print
    0x19241c0 - 0x192428d CFMPriv_SecurityHI PEF binary: CFMPriv_SecurityHI
    0x1924310 - 0x19243f2 CFMPriv_SpeechRecognition PEF binary: CFMPriv_SpeechRecognition
    0x1924470 - 0x1924543 CFMPriv_CarbonCore PEF binary: CFMPriv_CarbonCore
    0x19245c0 - 0x1924693 CFMPriv_OSServices PEF binary: CFMPriv_OSServices
    0x1924770 - 0x1924832 CFMPriv_AE PEF binary: CFMPriv_AE
    0x1924840 - 0x1924905 CFMPriv_ATS PEF binary: CFMPriv_ATS
    0x1924980 - 0x1924a57 CFMPriv_ColorSync PEF binary: CFMPriv_ColorSync
    0x1924ae0 - 0x1924bc3 CFMPriv_FindByContent PEF binary: CFMPriv_FindByContent
    0x1924c40 - 0x1924d1a CFMPriv_HIServices PEF binary: CFMPriv_HIServices
    0x1924d90 - 0x1924e70 CFMPriv_LangAnalysis PEF binary: CFMPriv_LangAnalysis
    0x1924f00 - 0x1924fe6 CFMPriv_LaunchServices PEF binary: CFMPriv_LaunchServices
    0x19250c0 - 0x1925197 CFMPriv_PrintCore PEF binary: CFMPriv_PrintCore
    0x19251a0 - 0x1925262 CFMPriv_QD PEF binary: CFMPriv_QD
    0x1925360 - 0x1925449 CFMPriv_SpeechSynthesis PEF binary: CFMPriv_SpeechSynthesis
    0x1ed3000 - 0x1eedfff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1ef2000 - 0x1f08fff com.apple.IMXCodec 1.0 (114) /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x1f93000 - 0x1f9efff com.apple.LiveType.component 2.0.2 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x1fac000 - 0x1febfff com.apple.QuickTimeFireWireDV.component 7.3.1 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1fff000 - 0x1fff92b KodakCarbonShared PEF binary: KodakCarbonShared
    0x1623c000 - 0x162b5fff com.DivXInc.DivXDecoder 6.0.5 /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x162c6000 - 0x163a2fff com.divxnetworks.DivXCodec 5.1.1 /Library/QuickTime/DivX 5.component/Contents/MacOS/DivX 5
    0x1642e000 - 0x1642efff com.apple.applescript.component 1.10.7 /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
    0x16444000 - 0x1667dfff net.telestream.wmv.import 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x166b3000 - 0x16867fff net.telestream.wmv.advanced 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x168a9000 - 0x16922fff com.apple.DVCPROHDCodec 1.1.1 (209) /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x16938000 - 0x169e8fff com.apple.AppleHDVCodec 1.0 (129) /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x16a06000 - 0x16a7ffff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x18576000 - 0x185c53c7 CarbonLibpwpc PEF binary: CarbonLibpwpc
    0x185e7000 - 0x1864f97e KodakCMSC PEF binary: KodakCMSC
    0x25ac4000 - 0x25b1402f OLE.CARBON.Shared PEF binary: OLE.CARBON.Shared
    0x780ce000 - 0x78136fff com.apple.LiveType.framework 2.0.2 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x88d70000 - 0x88d75fff com.apple.CoreMediaAuthoringPrivate 1.1 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x88fc0000 - 0x88fe7fff com.apple.CoreMediaPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x89030000 - 0x890d0fff com.apple.QuickTimeImporters.component 7.3.1 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.9 (368.31) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.17 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.22 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193e000 - 0x91980fff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919be000 - 0x91a04fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b30000 - 0x91b46fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b4b000 - 0x91b69fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6f000 - 0x91c26fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c75000 - 0x91c79fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7b000 - 0x91ce5fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91cea000 - 0x91d27fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2e000 - 0x91d48fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d4d000 - 0x91d50fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d52000 - 0x91e30fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e50000 - 0x91e50fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e52000 - 0x91f37fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3f000 - 0x91f5efff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fca000 - 0x92038fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92043000 - 0x920d8fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920f2000 - 0x9267afff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926ad000 - 0x929d8fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a08000 - 0x92af6fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af9000 - 0x92b81fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bc2000 - 0x92dedfff com.apple.Foundation 6.4.9 (567.36) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f1a000 - 0x92f38fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f43000 - 0x92f9dfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fbb000 - 0x92fbbfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fbd000 - 0x92fd1fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe9000 - 0x92ff9fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93005000 - 0x9301afff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9302c000 - 0x930b3fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c7000 - 0x930d2fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930dc000 - 0x93109fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93123000 - 0x93133fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313f000 - 0x931a5fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d6000 - 0x93225fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93253000 - 0x93270fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93282000 - 0x9328ffff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93298000 - 0x935a6fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f6000 - 0x93702fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9377b000 - 0x9377bfff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9377d000 - 0x93db0fff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9413d000 - 0x941affff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e8000 - 0x942adfff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94300000 - 0x94300fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94302000 - 0x944c2fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9450c000 - 0x94549fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94551000 - 0x945a1fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945aa000 - 0x945c4fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945d5000 - 0x945f6fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94799000 - 0x947a8fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947b0000 - 0x947bcfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94802000 - 0x9481afff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94821000 - 0x94b48fff com.apple.QuickTime 7.3.1 /System/Library/Frameworks/QuickTime.framework/QuickTime
    0x94c2e000 - 0x94c9ffff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x95075000 - 0x95092fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x974b5000 - 0x974d4fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97cda000 - 0x97ce7fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97de2000 - 0x97e04fff com.apple.AppleVAFramework 2.4.32 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x98f34000 - 0x98fdefff com.apple.applescript 1.10.7 /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
    0x9917c000 - 0x99d6afff com.apple.QuickTimeComponents.component 7.3.1 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99fcd000 - 0x99fd1fff com.apple.QuickTimeH264.component 7.3.1 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9a26d000 - 0x9a33bfff com.apple.QuickTimeMPEG4.component 7.3.1 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9ac70000 - 0x9ac8efff com.apple.OpenTransport 2.0 /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0xc0000000 - 0xc000ffff com.unsanity.ape 2.0.3 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Model: PowerMac11,2, BootROM 5.2.7f1, 2 processors, PowerPC G5 (1.1), 2 GHz, 2.5 GB
    Graphics: NVIDIA GeForce 6600, GeForce 6600, PCI, 256 MB
    Memory Module: DIMM0/J6700, 256 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM1/J6800, 256 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM2/J6900, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM3/J7000, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Network Service: Built-in Ethernet 1, Ethernet, en0
    PCI Card: GeForce 6600, Display, SLOT-1
    PCI Card: bcom5714, network, GIGE
    PCI Card: bcom5714, network, GIGE
    Serial ATA Device: WDC WD1600JS-41MVB1, 149.05 GB
    Parallel ATA Device: HL-DT-ST DVD-RW GWA-4165B
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: CTE-440-U V4.0-3, WACOM, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Hub, Up to 12 Mb/sec, 500 mA
    USB Device: USB Printer, EPSON, Up to 12 Mb/sec, 500 mA
    USB Device: AK5370, AKM, Up to 12 Mb/sec, 500 mA
    FireWire Device: External HD, Iomega, Up to 800 Mb/sec
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec

    nodel9999 wrote:
      Should I buy an enclosure for my HD and see if I can get it going externally?  Would that be the best way to see if it is the drive and not the cable?  An enclosure is cheaper than buying a new SATA cable, so I'm hoping that's where I can start.
    Yes.  See if the HDD will boot the MBP via a USB connection.  You should probably have an external HDD for backups or a possible replacement of your boot drive.
    Ciao.

  • Throwing null object reference , when focus into the spark textarea ,if it is in the popup

    I added a textarea to vrgoup container and added that vgroup as popup to the application. while i am trying to focus into the textarea , it always throwing me null object reference. to see that you need to have debugger version of flash player installed. please help me if anybody knows the solution.
    here is my code.
    code
    protected function btn_clickHandler(event:MouseEvent):void
    var vgroup:VGroup = new VGroup();
    var ta:TextArea = new TextArea();
    vgroup.percentWidth = 100;
    vgroup.addElement(ta);
    PopUpManager.addPopUp(vgroup, this);
    Following is the error thrown
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at spark.components::Scroller/focusInHandler()[E:\dev\hero_private\frameworks\projects\spark \src\spark\components\Scroller.as:1258]
    at flash.display::Stage/set focus()
    at flashx.textLayout.container::ContainerController/http://ns.adobe.com/textLayout/internal/2008::setFocus()[C:\Vellum\branches\v2\2.0\dev\out put\openSource\textLayout\src\flashx\textLayout\container\ContainerController.as:2265]
    at flashx.textLayout.container::ContainerController/mouseDownHandler()[C:\Vellum\branches\v2 \2.0\dev\output\openSource\textLayout\src\flashx\textLayout\container\ContainerController. as:2067]
    at flashx.textLayout.container::TextContainerManager/mouseDownHandler()[C:\Vellum\branches\v 2\2.0\dev\output\openSource\textLayout\src\flashx\textLayout\container\TextContainerManage r.as:1939]
    at spark.components.supportClasses::RichEditableTextContainerManager/mouseDownHandler()[E:\d ev\hero_private\frameworks\projects\spark\src\spark\components\supportClasses\RichEditable TextContainerManager.as:665]
    at flashx.textLayout.container::ContainerController/http://ns.adobe.com/textLayout/internal/2008::requiredMouseDownHandler()[C:\Vellum\branche s\v2\2.0\dev\output\openSource\textLayout\src\flashx\textLayout\container\ContainerControl ler.as:2088]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.core::UIComponent/dispatchEvent()[E:\dev\hero_private\frameworks\projects\framework\sr c\mx\core\UIComponent.as:13128]
    at mx.managers::SystemManager/mouseEventHandler()[E:\dev\hero_private\frameworks\projects\fr amework\src\mx\managers\SystemManager.as:2924]

    The simplest example I could come up with consists of 3 files:
    Main.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx"
                      applicationComplete="open()">
         <fx:Script>
              <![CDATA[
                   import mx.managers.PopUpManager;
                   public function open():void {
                        var popUp:CustomComponent = PopUpManager.createPopUp(
                             this, //parent
                             CustomComponent, //class name
                             true //modal
                        ) as CustomComponent;
                        PopUpManager.centerPopUp(popUp);
              ]]>
         </fx:Script>
    </s:Application>
    CustomComponent.as
    package {
         import spark.components.supportClasses.SkinnableComponent;
         public class CustomComponent extends SkinnableComponent {
              public function CustomComponent() {
                   super();
                   setStyle('skinClass', CustomComponentSkin);
    CustomComponentSkin.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009"
              xmlns:s="library://ns.adobe.com/flex/spark"
              xmlns:mx="library://ns.adobe.com/flex/mx">
         <fx:Metadata>
              [HostComponent("CustomComponent")]
         </fx:Metadata>
         <s:Panel>
              <s:TextArea/>
         </s:Panel>
    </s:Skin>

  • Tabstrip control can not switch (Do not respond when focus on field of subscreen)

    Hi Colleagues,
         I have met with a very strange question, which worries me a lot these days. Would you please help me with it?
         The problem is like this:
         1. In normal case, I can switch to another tab when I click it. Please see picture in the attachment (Tabstrip1.png)
         2. But when I click on field on the subscreen of one tab, set focus on one field, in the picture of attachment switch2.png, I can not switch to another tab, it just does not respond. I really do not know why this happens.
         Could any colleague give an answer or hint about it? Thanks a lot!!
         You can access the program by TCODE: EPIC_RPR on EBJ client 003 or QI3 system client700 .
    BR,
    Chris

    yea thats what i thought, thats the most sensible answer that they expect you to
    know it.
    but... have you taken any of the them? would love to hear from someone thats taken a few, i wasn't even sure if i'd put this post in the right forum to be honest.
    just seems odd why they say 95% of the material is in the prep stuff seems too easy.
    i'd have thought that since the cs4 exam had that many more questions that the cs5 exam would have even more prep material but obviously not so.

  • Libsslport library conflict when using components built with studio 11 & 12

    I have a library built with Studio 11 that links with libstlport.so in studio 11. I then build an application with studio 12 which links with studio 12 stilport.so. When I do an ldd on the application it reports that it depends on stlport.so from both studio 11 and 12. This happens even if I set LD_LIBRARY_PATH to explicitly point to the Studio 12 lib directory.
    On running the application it consistently crashes at exit with the following stack trace:
    std::locale::~locale()
    _exit()
    exit()
    The problem is resolved if we build everything with Studio 11.
    It should be possible to link with components build with older version of the compiler. Can someone tell us what is the right way to do this.
    Thanks.
    Shirish.

    Setting LD_LIBRARY_PATH is useful for testing and for one-off programs used only by yourself, but it is not a sustainable or scalable solution. For more on this topic:
    http://blogs.sun.com/rie/entry/tt_ld_library_path_tt
    When you build applications using shared libraries, you usually need to set the runpath (-R option).
    By default, the CC command sets the runpath to point into the compiler installation area. If parts of the application are build with different compilers, you can by deafult wind up with runpaths pointing into each compiler area, which can lead to linking two versions of a library, a recipe for disaster.
    The best way to solve this problem depends on how you will use and deploy the application. I'll suggest a general solution, which works even if you deploy the application to remote systems used by others.
    Create a runtime environment for the application, perhaps a directory tree like this:
    myapp/
        bin/
        lib/
        doc/Main programs go in the bin directory. Shared libraries go in the lib directory.
    Build shared libraries and executable programs with a relative runpath pointing into the lib directory:
    CC ... -R \$ORIGIN/../libIf you build an application entirely with Studio 11, copy the studio 11 version of libstlport.so into the lib directory.
    If multiple compilers are used, copy libstlport.so from the most recent compiler into the lib directory.

  • Can I disable forward TAB when focus is in last JTable column

    I am new to Swing. My boss hates the fact that when the focus is in a cell in the right most column, when you press TAB, it wraps to the beginning of the next line. He wants the behavior to be that a TAB from the last column stays right where it is. This must be a simple question but I have been searching and haven't found the place with the answer.
    Thank you.

    Thank you, V.V., I didn't realize that the two issues were related.
    Previously, you wrote:
    Override the processKeyBinding method in a class that extends JTable. This method traps every keyevent (including those generated by menu accelerators, so be sure to build procedures to do something with them or ignore them so you don't double up on the processing of those keys). Find out which key you can to use for navigating around the table and do something with those keys. For the rest of the keyevents, check to see if it is a type KeyEvent.KEY_TYPE, if so the KeyboardFocusManager to displatch the event to your JDialog.
    ;o)
    V.V.
    If I understand your reference to your previous answer, I need to trap the TAB KeyEvent and if I am in the last column of the JTable, I should make sure that I stay where I am. Am I understanding you correctly ?
    thank you for your patience,
    W.W.

  • JTable discards input when focus lost

    Hi! Im running Java 1.4.2-b28.
    Problem as follows:
    I have a JTable where the user can enter som data.
    I also have a button with the caption "Minimize" that starts processing of the same data.
    If i enter a value into the table (say "foo") and press "Minimize" when the cell is in editing mode, "foo" is NOT SAVED into the JTable's TableModel! getValueAt(int row, int col) returns an old value instead!
    How can i change the focus lost behaviour on the cell? Is this a bug??
    Regards
    /Alex

    Found an answer to this, sorry everyone. Well, here it is:
    http://forums.java.sun.com/thread.jsp?thread=350530&forum=57&message=1453945

  • Windows 2000 - disable 'autoraise​' when focus-foll​ows-mouse?

    For convenience when using EDA tools I have my windows 2000 desktop configured as "focus-follows-mouse" with autoraise disabled.  This means I can work in multiple overlapping windows without constantly having the active window coming forward and hiding some other window that I need to see while working in the active window.
    However, it seems that LabView (8.5 and 8.6) automatically implement autoraise.  That is, as soon as any labview window gets mouse focus, it automatically and instantly raises to the front.  This is particularly annoying if the mouse is just passing over a corner of or partially visible slice of a labview window.    
    Since there doesn't appear to be any config for this in the user options, is there any other way (registry edits, for example) to disable autoraise in Labview?   Switching back to "click to focus" mode is not an option.
    Thanks and Best Regards,
    -- Jeff Buckles

    Hi Jeff,
    I am not sure what is causing this behavior,
    but there are a couple of settings that you can try that may be able to
    help with this issue. First, if you go to FIle>>VI Properties and
    select Window Appearance in the Category dropdown. Select Customize...,
    and try out the different Window Behavior settings on the right side.
    I'm not sure if Floating or Modal will change this behavior, but I
    would try it and see.
    Also, if you go to
    Tools>>Options...>>Environment and uncheck Allow
    drop-through clicks and see if this makes a difference.
    Regards,Stephen S.
    National Instruments
    Applications Engineering

  • Redraw problem when overlapping components

    As part of a project to automatically generate a GUI for a legacy application I found a problem that occures when I have to overlap JComponents (have to - because the basic layout is given by the legacy application). The following code demonstrates the problem:
    import java.awt.*;
    import javax.swing.*;
    public class Overlap
        public static void main(String args[]) {
            JFrame frame=new JFrame("test");
            JTextField text1=new JTextField("text1");
            JTextField text2=new JTextField("text2");
            JLabel label=new JLabel("LabelTest");
            label.setOpaque(true);
            Container content=frame.getContentPane();
            content.setLayout(new GridBagLayout());
            GridBagConstraints c=new GridBagConstraints();
            c.gridx=c.gridy=1;
            c.gridwidth=2;
            c.fill=GridBagConstraints.BOTH;
            content.add(label, c);
            c=new GridBagConstraints();
            c.gridx=c.gridy=c.gridwidth=1;
            c.fill=GridBagConstraints.BOTH;
            content.add(text1, c);
            c=new GridBagConstraints();
            c.gridx=2;
            c.gridy=c.gridwidth=1;
            c.fill=GridBagConstraints.BOTH;
            content.add(text2, c);
            frame.setVisible(true);
            frame.pack();
    }This gives a JFrame with a JLabel over two JTextField's - the JTextField's shoud be invisible. Actually you have a blinking cursor, the text of both JTextField's is selectable with the mouse, you are able to switch the focus between the JTextField's with the mouse ...
    Is there a way to force correct Z-order handling in this case?
    Tested with linux JDK 1.4, with 1.3 and 1.2 the initial drawing is done correctly but you are still able to select the JTextField's with the mouse.

    try to explain what you whant to doMh - as I said - it is a cooked down version of the problem. Imagine a 80x25 GridBagLayout (the base of this problem is a form based text mode application) with up to about 500 separate widgets in it. The problem now is that it is possible that some of these widgets overlap some others. So it is possible to place a label like widget over something that behaves like a textfield.
    Z order of a component is best made by using
    JLayeredPane objects can be added to the same layer
    but there will be problems if they overlapIn the case of JLayeredPane I think need to optimize the usage of them - when I take one for each widget then I'm sure I'm running out of the design specifications. But then I've to detect overlapping by myself.
    All this is a bit strange because there already is a Z-order defined when adding all this to one single JPanel - is the actual behaviour a swing bug or am I running out of the specified limits even there?

Maybe you are looking for