Is there an event for a composite has a new child control?

I want to know is there an event for a composite has a new child control?
For example,
Composite parent = new Composite();
Label child = new Label(parent, SWT.None);
I want to know the parent composite is getting a child label when new label
create then immediately.
Thanks.
Frank

Also, I got this comment (a bit of a warning) from Dimitri:
<blockquote>I just saw this pattern used by <i>[customer]</i> - they (used to check) if the member was senior, and if it was, it was responsible for some periodic cleanup tasks and whatnot.
This worked fine in the test application and broke immediately when we added dedicated cache servers, or standalone JMX console etc, i.e. it is perfectly possible for the Console to be senior without any application classes in it's classpath, or for the dedicated cache server to be senior and only application servers have logic in place to run stuff.</blockquote>
In other words, depending on your deployment, it may not be as simple as just "being senior", you may also want to use a "Role Name" for example (configurable and accessible per member).
Peace,
Cameron Purdy
Oracle Coherence: Data Grid for Java and .NET

Similar Messages

  • Event for the List Box in ALV Grid Control

    Hello,
    I have the below urgent requirment.
    I have an ALV Grid Control built using ABAP Objects. In the grid, I have few fields and one of these fields is a List Box. Depending on the values selected, I need to enable or disable some fields. So, is there any event for the List box in ALV Grid Control.
    For ex: I have 2 Fields, Designation and Commission. The designation field is a List Box field having 'Software Engineer' and 'Manager' as values. When I select 'Software Engineer', the commission field should be disabled. When I select 'Manager', the comission field should be enabled.
    Early reply is hightly appreciated.
    Priya

    REPORT  ZTEST1234    MESSAGE-ID ZZ                           .
    DATA: G_GRID TYPE REF TO CL_GUI_ALV_GRID.
    DATA: L_VALID TYPE C,
          V_FLAG,
          V_DATA_CHANGE,
          V_ROW TYPE LVC_S_ROW,
          V_COLUMN TYPE LVC_S_COL,
          V_ROW_NUM TYPE LVC_S_ROID.
    DATA: OK_CODE LIKE SY-UCOMM,
          SAVE_OK LIKE SY-UCOMM,
          G_CONTAINER1 TYPE SCRFNAME VALUE 'TEST',
          GS_LAYOUT TYPE LVC_S_LAYO.
    DATA:BEGIN OF  ITAB OCCURS 0,
         VBELN LIKE LIKP-VBELN,
         POSNR LIKE LIPS-POSNR,
         COMISN(10),
         CELLCOLOR TYPE LVC_T_SCOL, "required for color
         DROP(20),
        <b> HANDLE_STYLE TYPE LVC_T_STYL,</b>
         END OF ITAB.
    *       CLASS lcl_event_handler DEFINITION
    CLASS LCL_EVENT_HANDLER DEFINITION .
      PUBLIC SECTION .
        METHODS:
    **Hot spot Handler
        HANDLE_HOTSPOT_CLICK FOR EVENT HOTSPOT_CLICK OF CL_GUI_ALV_GRID
                          IMPORTING E_ROW_ID E_COLUMN_ID ES_ROW_NO,
    <b>**Handler to Check the Data Change
        HANDLE_DATA_CHANGED FOR EVENT DATA_CHANGED
                             OF CL_GUI_ALV_GRID
                             IMPORTING ER_DATA_CHANGED
                                       E_ONF4
                                       E_ONF4_BEFORE
                                       E_ONF4_AFTER,</b>
    **Double Click Handler
        HANDLE_DOUBLE_CLICK FOR EVENT DOUBLE_CLICK OF CL_GUI_ALV_GRID
                                         IMPORTING E_ROW E_COLUMN ES_ROW_NO.
    ENDCLASS.                    "lcl_event_handler DEFINITION
    *       CLASS lcl_event_handler IMPLEMENTATION
    CLASS LCL_EVENT_HANDLER IMPLEMENTATION.
    *Handle Hotspot Click
      METHOD HANDLE_HOTSPOT_CLICK .
        CLEAR: V_ROW,V_COLUMN,V_ROW_NUM.
        V_ROW  = E_ROW_ID.
        V_COLUMN = E_COLUMN_ID.
        V_ROW_NUM = ES_ROW_NO.
        MESSAGE I000 WITH V_ROW 'clicked'.
      ENDMETHOD.                    "lcl_event_handler
    *Handle Double Click
      METHOD  HANDLE_DOUBLE_CLICK.
      ENDMETHOD.                    "handle_double_click
    <b>**Handle Data Change
      METHOD HANDLE_DATA_CHANGED.
        DATA: X_CHANGE TYPE LVC_S_MODI,
                X_FINAL TYPE ITAB,
                L_FLAG,
                LS_OUTTAB LIKE LINE OF ITAB.
        DATA: LS_EDIT TYPE LVC_S_STYL,
              LT_EDIT TYPE LVC_T_STYL.
        LOOP AT ER_DATA_CHANGED->MT_GOOD_CELLS INTO X_CHANGE.
          IF X_CHANGE-FIELDNAME = 'DROP' AND X_CHANGE-VALUE = 'S/W ENGINEER'.
            LS_EDIT-FIELDNAME = 'COMISN'.
            LS_EDIT-STYLE = CL_GUI_ALV_GRID=>MC_STYLE_DISABLED.
            LS_EDIT-STYLE2 = SPACE.
            LS_EDIT-STYLE3 = SPACE.
            LS_EDIT-STYLE4 = SPACE.
            LS_EDIT-MAXLEN = 8.
            INSERT LS_EDIT INTO TABLE LT_EDIT.
            INSERT LINES OF LT_EDIT INTO TABLE LS_OUTTAB-HANDLE_STYLE.
            MODIFY ITAB INDEX X_CHANGE-ROW_ID FROM LS_OUTTAB  TRANSPORTING
                                              HANDLE_STYLE .
          else.
            LS_EDIT-FIELDNAME = 'COMISN'.
            LS_EDIT-STYLE = CL_GUI_ALV_GRID=>MC_STYLE_ENABLED.
            LS_EDIT-STYLE2 = SPACE.
            LS_EDIT-STYLE3 = SPACE.
            LS_EDIT-STYLE4 = SPACE.
            LS_EDIT-MAXLEN = 8.
            INSERT LS_EDIT INTO TABLE LT_EDIT.
            INSERT LINES OF LT_EDIT INTO TABLE LS_OUTTAB-HANDLE_STYLE.
            MODIFY ITAB INDEX X_CHANGE-ROW_ID FROM LS_OUTTAB  TRANSPORTING
                                              HANDLE_STYLE .
          ENDIF.
        ENDLOOP.
        CALL METHOD G_GRID->REFRESH_TABLE_DISPLAY
          EXCEPTIONS
            FINISHED = 1
            OTHERS   = 2.
        IF SY-SUBRC <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                     WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDMETHOD.                    "HANDLE_DATA_CHANGED</b>
    ENDCLASS.                    "LCL_EVENT_HANDLER IMPLEMENTATION
    *&             Global Definitions
    DATA:      G_CUSTOM_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,"Container1
                G_HANDLER TYPE REF TO LCL_EVENT_HANDLER. "handler
    *- Fieldcatalog for First and second Report
    DATA: IT_FIELDCAT  TYPE  LVC_T_FCAT,
          X_FIELDCAT TYPE LVC_S_FCAT,
          LS_VARI  TYPE DISVARIANT.
    *                START-OF_SELECTION
    START-OF-SELECTION.
      SELECT VBELN
             POSNR
             FROM LIPS
             UP TO 20 ROWS
             INTO CORRESPONDING FIELDS OF TABLE ITAB.
    END-OF-SELECTION.
      IF NOT ITAB[] IS INITIAL.
        CALL SCREEN 100.
      ELSE.
        MESSAGE I002 WITH 'NO DATA FOR THE SELECTION'(004).
      ENDIF.
    *&      Form  CREATE_AND_INIT_ALV
    *       text
    FORM CREATE_AND_INIT_ALV .
      DATA: LT_EXCLUDE TYPE UI_FUNCTIONS.
      CREATE OBJECT G_CUSTOM_CONTAINER
             EXPORTING CONTAINER_NAME = G_CONTAINER1.
      CREATE OBJECT G_GRID
             EXPORTING I_PARENT = G_CUSTOM_CONTAINER.
    * Set a titlebar for the grid control
      CLEAR GS_LAYOUT.
      GS_LAYOUT-GRID_TITLE = TEXT-003.
       <b>GS_LAYOUT-STYLEFNAME = 'HANDLE_STYLE'.</b>
      GS_LAYOUT-ZEBRA = SPACE.
      GS_LAYOUT-CWIDTH_OPT = 'X'.
      GS_LAYOUT-NO_ROWMARK = 'X'.
      GS_LAYOUT-CTAB_FNAME = 'CELLCOLOR'.
    <b>  CALL METHOD G_GRID->REGISTER_EDIT_EVENT
        EXPORTING
          I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED.</b>
      CREATE OBJECT G_HANDLER.
      SET HANDLER G_HANDLER->HANDLE_DOUBLE_CLICK FOR G_GRID.
      SET HANDLER G_HANDLER->HANDLE_HOTSPOT_CLICK FOR G_GRID.
    <b>  SET HANDLER G_HANDLER->HANDLE_DATA_CHANGED FOR G_GRID.</b>
      DATA: LS_CELLCOLOR TYPE LVC_S_SCOL. "required for color
      DATA: L_INDEX TYPE SY-TABIX.
      "Here i am changing the color of line 1,5,10...
      "so you can change the color of font conditionally
      LOOP AT ITAB.
        L_INDEX = SY-TABIX.
        IF L_INDEX = 1 OR L_INDEX = 5 OR L_INDEX = 10.
          LS_CELLCOLOR-FNAME = 'VBELN'.
          LS_CELLCOLOR-COLOR-COL = '6'.
          LS_CELLCOLOR-COLOR-INT = '0'.
          LS_CELLCOLOR-COLOR-INV = '1'.
          APPEND LS_CELLCOLOR TO ITAB-CELLCOLOR.
          MODIFY ITAB INDEX L_INDEX TRANSPORTING CELLCOLOR.
          LS_CELLCOLOR-FNAME = 'POSNR'.
          LS_CELLCOLOR-COLOR-COL = '6'.
          LS_CELLCOLOR-COLOR-INT = '0'.
          LS_CELLCOLOR-COLOR-INV = '1'.
          APPEND LS_CELLCOLOR TO ITAB-CELLCOLOR.
          MODIFY ITAB INDEX L_INDEX TRANSPORTING CELLCOLOR.
        ENDIF.
      ENDLOOP.
    * setting focus for created grid control
      CALL METHOD CL_GUI_CONTROL=>SET_FOCUS
        EXPORTING
          CONTROL = G_GRID.
    * Build fieldcat and set editable for date and reason code
    * edit enabled. Assign a handle for the dropdown listbox.
      PERFORM BUILD_FIELDCAT.
      PERFORM  SET_DRDN_TABLE.
    * Optionally restrict generic functions to 'change only'.
    *   (The user shall not be able to add new lines).
      PERFORM EXCLUDE_TB_FUNCTIONS CHANGING LT_EXCLUDE.
    **Vaiant to save the layout
      LS_VARI-REPORT      = SY-REPID.
      LS_VARI-HANDLE      = SPACE.
      LS_VARI-LOG_GROUP   = SPACE.
      LS_VARI-USERNAME    = SPACE.
      LS_VARI-VARIANT     = SPACE.
      LS_VARI-TEXT        = SPACE.
      LS_VARI-DEPENDVARS  = SPACE.
      CALL METHOD G_GRID->REGISTER_EDIT_EVENT
        EXPORTING
          I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED.
    **Calling the Method for ALV output
      CALL METHOD G_GRID->SET_TABLE_FOR_FIRST_DISPLAY
        EXPORTING
          IT_TOOLBAR_EXCLUDING = LT_EXCLUDE
          IS_VARIANT           = LS_VARI
          IS_LAYOUT            = GS_LAYOUT
          I_SAVE               = 'A'
        CHANGING
          IT_FIELDCATALOG      = IT_FIELDCAT
          IT_OUTTAB            = ITAB[].
    * Set editable cells to ready for input initially
      CALL METHOD G_GRID->SET_READY_FOR_INPUT
        EXPORTING
          I_READY_FOR_INPUT = 1.
    ENDFORM.                               "CREATE_AND_INIT_ALV
    *&      Form  EXCLUDE_TB_FUNCTIONS
    *       text
    *      -->PT_EXCLUDE text
    FORM EXCLUDE_TB_FUNCTIONS CHANGING PT_EXCLUDE TYPE UI_FUNCTIONS.
    * Only allow to change data not to create new entries (exclude
    * generic functions).
      DATA LS_EXCLUDE TYPE UI_FUNC.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_COPY_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_DELETE_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_APPEND_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_INSERT_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_MOVE_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_COPY.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_CUT.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_PASTE.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_PASTE_NEW_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_UNDO.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
    ENDFORM.                               " EXCLUDE_TB_FUNCTIONS
    *&      Form  build_fieldcat
    *       Fieldcatalog
    FORM BUILD_FIELDCAT .
      DATA: L_POS TYPE I.
      L_POS = L_POS + 1.
      X_FIELDCAT-SCRTEXT_M = 'Delivery'(024).
      X_FIELDCAT-FIELDNAME = 'VBELN'.
      X_FIELDCAT-TABNAME = 'ITAB'.
      X_FIELDCAT-COL_POS    = L_POS.
      X_FIELDCAT-NO_ZERO    = 'X'.
      X_FIELDCAT-OUTPUTLEN = '10'.
      X_FIELDCAT-HOTSPOT = 'X'.
      APPEND X_FIELDCAT TO IT_FIELDCAT.
      CLEAR X_FIELDCAT.
      L_POS = L_POS + 1.
      X_FIELDCAT-SCRTEXT_M = 'Item'(025).
      X_FIELDCAT-FIELDNAME = 'POSNR'.
      X_FIELDCAT-TABNAME = 'ITAB'.
      X_FIELDCAT-COL_POS    = L_POS.
      X_FIELDCAT-OUTPUTLEN = '5'.
      APPEND X_FIELDCAT TO IT_FIELDCAT.
      CLEAR X_FIELDCAT.
      L_POS = L_POS + 1.
      X_FIELDCAT-SCRTEXT_M = 'Drop'(025).
      X_FIELDCAT-FIELDNAME = 'DROP'.
      X_FIELDCAT-TABNAME = 'ITAB'.
      X_FIELDCAT-COL_POS    = L_POS.
      X_FIELDCAT-OUTPUTLEN = '5'.
      X_FIELDCAT-EDIT = 'X'.
      X_FIELDCAT-DRDN_HNDL = '1'.
      X_FIELDCAT-DRDN_ALIAS = 'X'.
      APPEND X_FIELDCAT TO IT_FIELDCAT.
      CLEAR X_FIELDCAT.
      L_POS = L_POS + 1.
      X_FIELDCAT-SCRTEXT_M = 'Comissn'(025).
      X_FIELDCAT-FIELDNAME = 'COMISN'.
      X_FIELDCAT-TABNAME = 'ITAB'.
      X_FIELDCAT-COL_POS    = L_POS.
      X_FIELDCAT-OUTPUTLEN = '10'.
      X_FIELDCAT-EDIT = 'X'.
      APPEND X_FIELDCAT TO IT_FIELDCAT.
      CLEAR X_FIELDCAT.
    ENDFORM.                    " build_fieldcat
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS 'MAIN100'.
      SET TITLEBAR 'MAIN100'.
      IF G_CUSTOM_CONTAINER IS INITIAL.
    **Initializing the grid and calling the fm to Display the O/P
        PERFORM CREATE_AND_INIT_ALV.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE USER_COMMAND_0100 INPUT.
      CASE SY-UCOMM.
        WHEN 'BACK'.
          LEAVE TO SCREEN 0.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  SET_DRDN_TABLE
    *       text
    FORM SET_DRDN_TABLE.
      DATA:LT_DRAL TYPE LVC_T_DRAL,
            LS_DRAL TYPE LVC_S_DRAL.
      LS_DRAL-HANDLE = '1'.
      LS_DRAL-VALUE =  'S/W Engineer'.
      LS_DRAL-INT_VALUE =  'S/W Engineer'.
      APPEND LS_DRAL TO LT_DRAL.
      LS_DRAL-HANDLE = '1'.
      LS_DRAL-VALUE =  'Manager'.
      LS_DRAL-INT_VALUE =  'Manager'.
      APPEND LS_DRAL TO LT_DRAL.
    **Setting the Drop down table for Reason Code
      CALL METHOD G_GRID->SET_DROP_DOWN_TABLE
        EXPORTING
          IT_DROP_DOWN_ALIAS = LT_DRAL.
    ENDFORM.                               " set_drdn_table
    Regards
    vijay

  • AS3 is there an event for when Android app is exiting on it's own?

    Ok, I made an app for Android. And when we push the middle button or back(lefthandside) button of Android phone, we all know that Android apps still runs in the background.
    So my code is this:
    the first line(addEventListener) is in a private function which runs as soon as you open the app.
        NativeApplication.nativeApplication.addEventListener(flash.events.Event.EXITING, onMyAppExit)
        private function onMyAppExit(event:flash.events.Event):void{
          trace("onMyAppExit is running");
          saveProgress();
    Basically, I want saveProgress() to run when the app ACTUALLY exits from running in the background. I noticed that my app actually exits when I open another app like Candy Crush. I guess the Android OS exits apps automatically when the apps are not being used and when the app you are using takes a lot of RAM. However, my code only works when I run my app in AIR Debug Launcher(Mobile). I know that because I see the trace in the function in my output window when I click on the x button on the right corner of the app window. But when I connect my Android phone to the computer and then ---> AIR3.8 for Android settings ---> Publish, and then I "Begin Remote Debug Session", and on my Android phone, I open my app first, then open Candy Crush so that the Android OS automatically exits my app, I don't see the trace. So I finalized that the code didn't work on my phone.

    i tried this too. but doesn't work
    '(event:Event)'
    private function onMyAppExit(event:Event):void{
    and 'stage'
    stage.nativeApplication.addEventListener(Event.CLOSING,onMyAppExit);

  • IIS 8.5 Idle Time Out Action = Suspend & Global.asax - Are there Application Events for this?

    Hi,
     So, I would like to start using the" Idle Time Out Action - Suspend" for several of my web applications.
    What I would like to know is whether any Application Events occur that I can use so that I know when the WorkProcess enters or exits the suspend state.
    Right now my application does stuff on Application Start and End, and I would like to have that same code executed when the WorkProcess suspends itself and when it comes out of suspend.
    Is this possible?
    Thanks,
    ~Hendel

    Hi Hendel,
    About IIS issue,
    http://forums.iis.net/
    the above forum is where you should post.
    Regards&&Kristin
    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.

  • Is there a fix for this other than a new logic board?

    every since i installed mavericks my mid 2010 macbook pro keeps crashing, and ive recently noticed that programs that triger it are Photoshop & Acrobat.
    and when i use Final Cut Pro X it shuts down almost right away. i talked to apple (instore and on the phone) instore they ran some tests and determind that the graphics card failed and that they could fix it for like $500-$600, or i could buy a new one because the logicboard replacement program that they had was only for up to three years after purchase,i was just outside of that . i decided to go home and call apple, because because this problem happened once i did the recommended update to mavericks, and i think they should make an acceptation in this case…. they didn’t, i said to the second level tech that it seems quite suspicious that i never ever had a problem in the 3 years i had the macbook pro until installing Mavericks. He said “there is no way a software issue could make a hardware issue"
    here is one of the many crash report:
    Anonymous UUID:       1C2C9E63-4D21-6301-9DD5-0736467FB75F 
    Sun Jan 19 18:24:28 2014
    panic(cpu 1 caller 0xffffff7f933cdfac): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff80b0693000 0x0a5480a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.12/src/Apple MuxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 1), Frame : Return Address
    0xffffff808c90ae90 : 0xffffff8011022f69
    0xffffff808c90af10 : 0xffffff7f933cdfac
    0xffffff808c90afe0 : 0xffffff7f91b2c53d
    0xffffff808c90b0a0 : 0xffffff7f91bf8d9e
    0xffffff808c90b0e0 : 0xffffff7f91bf8dfc
    0xffffff808c90b150 : 0xffffff7f91e7d5be
    0xffffff808c90b280 : 0xffffff7f91c1cd41
    0xffffff808c90b2a0 : 0xffffff7f91b3308d
    0xffffff808c90b350 : 0xffffff7f91b30bae
    0xffffff808c90b550 : 0xffffff7f91b32cb4
    0xffffff808c90b640 : 0xffffff7f92a3f980
    0xffffff808c90b6a0 : 0xffffff7f92a3c702
    0xffffff808c90b730 : 0xffffff7f92a27137
    0xffffff808c90b760 : 0xffffff7f929e4497
    0xffffff808c90b780 : 0xffffff7f929f4d30
    0xffffff808c90b7b0 : 0xffffff7f929f4bd1
    0xffffff808c90b800 : 0xffffff7f929f4a8e
    0xffffff808c90b850 : 0xffffff7f929f35cd
    0xffffff808c90b870 : 0xffffff7f929eff88
    0xffffff808c90b8a0 : 0xffffff7f92a221c8
    0xffffff808c90b8e0 : 0xffffff7f929ef1ca
    0xffffff808c90ba60 : 0xffffff7f92a1eb20
    0xffffff808c90bb20 : 0xffffff7f929edcb9
    0xffffff808c90bb70 : 0xffffff80114cc226
    0xffffff808c90bb90 : 0xffffff80114cd821
    0xffffff808c90bbf0 : 0xffffff80114cb28f
    0xffffff808c90bd40 : 0xffffff80110b6008
    0xffffff808c90be50 : 0xffffff8011026bb1
    0xffffff808c90be80 : 0xffffff80110139b5
    0xffffff808c90bef0 : 0xffffff801101e003
    0xffffff808c90bf70 : 0xffffff80110c921d
    0xffffff808c90bfb0 : 0xffffff80110f3e26
          Kernel Extensions in backtrace:
             com.apple.driver.AppleMuxControl(3.4.12)[A4934A66-0E30-36E9-984A-650481102449]@ 0xffffff7f933c0000->0xffffff7f933d2fff
                dependency: com.apple.driver.AppleGraphicsControl(3.4.12)[661E3C87-5B97-3272-88FF-B9BA9B6E2 4ED]@0xffffff7f933b8000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[045D5D6F-AD1E-36DB-A249-A346E2B48E54]@0xfffff f7f91924000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f916ba000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0 xffffff7f91a88000
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[E04639C5-D734-3AB3-A682-FE66694C66 53]@0xffffff7f933bb000
             com.apple.nvidia.classic.NVDAResmanTesla(8.1.8)[0A1B6F41-168D-307A-BABD-162F3B3 C2786]@0xffffff7f91adb000->0xffffff7f91d4afff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f916ba000
                dependency: com.apple.iokit.IONDRVSupport(2.3.6)[86BA68C6-18DD-30A1-ABF6-54597AD6C277]@0xff ffff7f91acb000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0 xffffff7f91a88000
             com.apple.nvidia.classic.NVDANV50HalTesla(8.1.8)[3666E0FC-87C7-3329-BD8C-2F1ADE D100A4]@0xffffff7f91d55000->0xffffff7f92001fff
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.1.8)[0A1B6F41-168D-307A-BABD-162F3B3 C2786]@0xffffff7f91adb000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f916ba000
             com.apple.GeForceTesla(8.1.8)[7DAF283F-6FD3-3783-B3CC-D23964F1B9B8]@0xffffff7f9 29dc000->0xffffff7f92aa6fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f916ba000
                dependency: com.apple.iokit.IONDRVSupport(2.3.6)[86BA68C6-18DD-30A1-ABF6-54597AD6C277]@0xff ffff7f91acb000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0 xffffff7f91a88000
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.1.8)[0A1B6F41-168D-307A-BABD-162F3B3 C2786]@0xffffff7f91adb000
    BSD process name corresponding to current thread: com.apple.WebKit
    Mac OS version:
    13B42
    Kernel version:
    Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    Kernel UUID: 1D9369E3-D0A5-31B6-8D16-BFFBBB390393
    Kernel slide:     0x0000000010e00000
    Kernel text base: 0xffffff8011000000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 99031681910311
    last loaded kext at 98201624086006: com.apple.filesystems.msdosfs     1.9 (addr 0xffffff7f9355c000, size 65536)
    last unloaded kext at 98442947980436: com.apple.filesystems.msdosfs     1.9 (addr 0xffffff7f9355c000, size 57344)
    loaded kexts:
    com.serato.usb.kext     2.3.0
    com.apple.driver.AppleBluetoothMultitouch     80.14
    com.apple.filesystems.smbfs     2.0.0
    com.apple.driver.AudioAUUC     1.60
    com.apple.driver.AppleHWSensor     1.9.5d0
    com.apple.driver.AGPM     100.14.11
    com.apple.filesystems.autofs     3.0
    com.apple.iokit.IOBluetoothSerialManager     4.2.0f6
    com.apple.driver.AppleMikeyHIDDriver     124
    com.apple.driver.AppleHDA     2.5.3fc1
    com.apple.driver.AppleUpstreamUserClient     3.5.13
    com.apple.driver.AppleMikeyDriver     2.5.3fc1
    com.apple.GeForceTesla     8.1.8
    com.apple.driver.AppleIntelHDGraphics     8.1.8
    com.apple.iokit.IOUserEthernet     1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X     7.0.0
    com.apple.driver.AppleSMCLMU     2.0.4d1
    com.apple.driver.AppleHWAccess     1
    com.apple.driver.AppleMuxControl     3.4.12
    com.apple.driver.AppleLPC     1.7.0
    com.apple.driver.AppleMCCSControl     1.1.12
    com.apple.driver.AppleIntelHDGraphicsFB     8.1.8
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport     4.2.0f6
    com.apple.driver.AppleSMCPDRC     1.0.0
    com.apple.driver.ACPI_SMC_PlatformPlugin     1.0.0
    com.apple.driver.SMCMotionSensor     3.0.4d1
    com.apple.driver.AppleUSBTCButtons     240.2
    com.apple.driver.AppleUSBTCKeyboard     240.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless     1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib     1.0.0d1
    com.apple.BootCache     35
    com.apple.driver.AppleIRController     325.7
    com.apple.driver.AppleUSBCardReader     3.3.5
    com.apple.iokit.SCSITaskUserClient     3.6.0
    com.apple.driver.XsanFilter     404
    com.apple.iokit.IOAHCIBlockStorage     2.4.0
    com.apple.driver.AirPort.Brcm4331     700.20.22
    com.apple.driver.AppleUSBHub     650.4.4
    com.apple.driver.AppleFWOHCI     4.9.9
    com.apple.iokit.AppleBCM5701Ethernet     3.6.9b9
    com.apple.driver.AppleAHCIPort     2.9.5
    com.apple.driver.AppleUSBEHCI     650.4.1
    com.apple.driver.AppleSmartBatteryManager     161.0.0
    com.apple.driver.AppleACPIButtons     2.0
    com.apple.driver.AppleRTC     2.0
    com.apple.driver.AppleHPET     1.8
    com.apple.driver.AppleSMBIOS     2.0
    com.apple.driver.AppleACPIEC     2.0
    com.apple.driver.AppleAPIC     1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient     216.0.0
    com.apple.nke.applicationfirewall     153
    com.apple.security.quarantine     3
    com.apple.driver.AppleIntelCPUPowerManagement     216.0.0
    com.apple.driver.IOBluetoothHIDDriver     4.2.0f6
    com.apple.driver.AppleMultitouchDriver     245.13
    com.apple.AppleGraphicsDeviceControl     3.4.12
    com.apple.kext.triggers     1.0
    com.apple.iokit.IOSerialFamily     10.0.7
    com.apple.driver.DspFuncLib     2.5.3fc1
    com.apple.vecLib.kext     1.0.0
    com.apple.iokit.IOAudioFamily     1.9.4fc11
    com.apple.kext.OSvKernDSPLib     1.14
    com.apple.nvidia.classic.NVDANV50HalTesla     8.1.8
    com.apple.nvidia.classic.NVDAResmanTesla     8.1.8
    com.apple.iokit.IOSurface     91
    com.apple.iokit.IOBluetoothFamily     4.2.0f6
    com.apple.driver.AppleHDAController     2.5.3fc1
    com.apple.iokit.IOHDAFamily     2.5.3fc1
    com.apple.driver.AppleBacklightExpert     1.0.4
    com.apple.iokit.IONDRVSupport     2.3.6
    com.apple.driver.AppleGraphicsControl     3.4.12
    com.apple.driver.AppleSMBusPCI     1.0.12d1
    com.apple.driver.AppleSMBusController     1.0.11d1
    com.apple.iokit.IOGraphicsFamily     2.3.6
    com.apple.iokit.IOBluetoothHostControllerUSBTransport     4.2.0f6
    com.apple.iokit.IOFireWireIP     2.2.5
    com.apple.driver.IOPlatformPluginLegacy     1.0.0
    com.apple.driver.IOPlatformPluginFamily     5.5.1d27
    com.apple.driver.AppleSMC     3.1.6d1
    com.apple.driver.AppleUSBMultitouch     240.6
    com.apple.iokit.IOUSBHIDDriver     650.4.4
    com.apple.iokit.IOSCSIBlockCommandsDevice     3.6.0
    com.apple.iokit.IOUSBMassStorageClass     3.6.0
    com.apple.driver.AppleUSBMergeNub     650.4.0
    com.apple.driver.AppleUSBComposite     650.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice     3.6.0
    com.apple.iokit.IOBDStorageFamily     1.7
    com.apple.iokit.IODVDStorageFamily     1.7.1
    com.apple.iokit.IOCDStorageFamily     1.7.1
    com.apple.iokit.IOAHCISerialATAPI     2.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily     3.6.0
    com.apple.iokit.IO80211Family     600.34
    com.apple.iokit.IOUSBUserClient     650.4.4
    com.apple.iokit.IOFireWireFamily     4.5.5
    com.apple.iokit.IOEthernetAVBController     1.0.3b3
    com.apple.driver.mDNSOffloadUserClient     1.0.1b4
    com.apple.iokit.IONetworkingFamily     3.2
    com.apple.iokit.IOAHCIFamily     2.6.0
    com.apple.iokit.IOUSBFamily     650.4.4
    com.apple.driver.AppleEFINVRAM     2.0
    com.apple.driver.AppleEFIRuntime     2.0
    com.apple.iokit.IOHIDFamily     2.0.0
    com.apple.iokit.IOSMBusFamily     1.1
    com.apple.security.sandbox     278.10
    com.apple.kext.AppleMatch     1.0.0d1
    com.apple.security.TMSafetyNet     7
    com.apple.driver.AppleKeyStore     2
    com.apple.driver.DiskImages     371.1
    com.apple.iokit.IOStorageFamily     1.9
    com.apple.iokit.IOReportFamily     21
    com.apple.driver.AppleFDEKeyStore     28.30
    com.apple.driver.AppleACPIPlatform     2.0
    com.apple.iokit.IOPCIFamily     2.8
    com.apple.iokit.IOACPIFamily     1.4
    com.apple.kec.pthread     1
    com.apple.kec.corecrypto     1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i5, 2.53 GHz, 4 GB, SMC 1.58f17
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D3147314631
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D3147314631
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK5055GSXF, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: Internal Memory Card Reader
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Hub
    USB Device: Built-in iSight
    USB Device: IR Receiver
    Thunderbolt Bus:

    There is special test for a specific Latent Defect in the MacBook pro 6,2 15" 2010 model. It is called VST test. It takes only a few minutes to run, and ends in a dramatic PASSED or FAILED screen. Have them run it for you while you watch. The standard "Overnight Bake" test will not find this latent defect.
    Print out a copy of your Kernel Panic log, and a copy of:
    MacBook Pro (15-inch, Mid 2010): Intermittent black screen or loss of video
    Once you know whether your MacBook HAS (or does not have) the Latent defect, THEN you can try to negotiate for some relief.
    There MAY be some additional latitude surrounding the public policy that Apple does not advertise. Be sure to ask the Store Manager whether they can do something to ease the out-of-pocket costs to you. Apple wants you to be a happy customer, if possible.
    Be polite and businesslike at all times -- those who threaten to sue everybody will never be happy customers, so they get shown the door.

  • Is there a way for apple to track down which apple id is currently associated to a device?

    Hi! My iphone 4s was pick pocketed from me last night. I have FindMyIPhone installed on that device but unfortunately i forgot to turn on my location settings so i wasn't able to track down the culprit via GPS. I already contacted my provider to see if there's anything they could do about it, but i was informed they could only temporarily disconnect my service. I'm planning to have my phone blocked using its IMEI so that the thief could no longer use the phone and would otherwise be forced to have it fixed in istore or something. But my experiences here in our country (PHILIPPINES) makes me think i shouldn't be relying on the officials. Every year, the cases of stolen phones just rise up. And not anyone from the government is even doing a thing about this criminals.
    Anyway, going back to my main concern, my phone has a passcode on it. But i am aware that anyone could just restore the phone and it'll be good as new. Chances are, the person who has it could register a new apple id and associate it with my phone's serial #. So my question is, is there a way for apple to see the new apple id associated to my phone using just the serial or IMEI? If so, will they allow me to get the new apple id associated to my phone? That way, i could coordinate with our local police here in PI and track down that person who has my phone.
    Please help, i haven't slept really well since that incident happened. I know this might sound overrated. But i feel like i'm really desperate. I've only use that phone for 2months. And having to think of buying a new phone that costs a lot is just..... you get the picture. Help

    Apple can do nothing at all.
    Sorry.

  • I cannot play music from my itunes library.  I keep getting an itunes message that says, "The song could not be used because the original file could not be found."  Is there a fix for this?  Thank you.

    I cannot play music from my itunes library.  I keep getting an itunes message that says, “The song could not be used because the original file could not be found.”  Is there a fix for this?  Has this happened to anyone else?  Is there a fix for this?  Thank you.

    Hello Turintest2,
    I am having a similar problem.  I have over 4000 songs giving me this error.  I certainily don't want to go in one by one and find them.  I know you wrote a script for Windows but I am a Mac user.  Is there a fix for me?  Here is the info on where the song is currently (used by doing the get info)
    Here's a shot of my preferences:
    Just FYI, I know that apparently iTunes is looking for this music in the trash.  However, if I go here:
    Then I find the music there as well.  (Which is where it is in my preferences.)
    Please help!  I don't want to have to go through over 4000 songs and update them one by one.

  • Event for Table rows deselection

    Hi Guys,
    I have created a Table  and created a method for  event 'OnSelect'.I am capturing row values into an internal table when  user select a value from the table.Here my problem is once deselected after selecting the row ,the selected data is still appearing in the internal table but deselected value should get deleted from the table.How it can be acheived.Is there any event for deselection.
    Thanks
    Nandana.

    Hi nandana,
    If i am understanding your query correctly, on Row select you are appending the row value to an internal table.
    Now on deselect you want the row to be removed.
    So do one thing in that event method before appending the row into table check if the row value previously exist.
    If it exist then remove the row from internal table otherwise append it into the table.
    Check it works or not.
    If it is not working with onSelect event try to use onLeadSelect event.

  • HT1343 Is there a shortcut for "Revert Changes" in the Close/Save confirmation dialog box?

    In OS X 10.8 Mountain Lion, the Close/Save confirmation dialog asks the user:
    Do you want to save the changes made to the document “Screen Shot 2012-10-12 at 12.35.12.png”?
    Revert Changes          Cancel     Save
    Is there a keyboard shortcut for this command, as there is one for Delete (Cmd+Delete) in new document closing confirmations?

    I'm not sure if there is a shortcut (I didn't find one), but if you turn on Full Keyboard Access in the Keyboard system prefs, all controls can be accessed from the keyboard. You can tab through (or arrow keys) the buttons. The active button will be outlined and can be activated with space bar. Since Revert Changes is the first button, it will come up outlined and you can just hit the spacebar to choose it.

  • Has anyone used more than one event for one project?

    Hi,
    I have an opinion about Final Cut Pro X that hasn't changed since my first few days with it.  I waited to see if I would get used to it.  But, after a fair amount of time, I still am not comfortable with 'Events' and 'Projects'.  The separation of the media and projects creates more problems than solutions with my workflow.
    The purpose of it was to add flexibility for both the professionals and consumers using it, but my first impressions are still the same.  The new Event and Project system adds complexity to organization and archiving.  I wouldn't write this if it wasn't enough of a hindrance for me, that I encounter constantly.  I think the new Final Cut Pro X is incredible, but this issue is definitely important to me.
    Has anyone out there used more than 1 Event for 1 Project?  Some of us create more than 1 Project for an Event, to make different version of a video, or for brainstorming, or to make a part 1 and part 2 of a video, but I've never had more than 1 Event for 1 Project.  I don't need to use the media from multiple Events for the same Project.  And I've never used it for a reason.  I don't think someone will want to use their Hawaii vacation footage for a Denver vacation project, and a Florida vacation project.  I think we should bring back the connection between Events and Projects in a meaningful way. 
    This is a throw back to the older days, but that's not always a bad thing.  Let us keep our projects, or timelines, in the Events folder.  Make an area above the JPG section, and PNG section, and MOV section, and call it the Projects section.  Then we can easily find our Projects and add a new Project every time we need it, and organize our files quickly - without having to keep track of more windows. Final Cut Pro X is all about being more simplified than other video programs, and I think this goes right along with that idea.
    Thanks,
    - David

    My original fear was that FCPX was just going to be iMovie Pro... It so is not!
    People use the interface in different ways. I think that's what most of us like about it, it's flexibiity to accommodate different types of workflows.  For me, I use the Events browser mostly like I'd be using the Finder. All the imported clips I use are referenced by the hard disks on which they reside. I know where to find them in the Event Browser and I know where to find them in the Finder.  I use a lot of stock footage and therefore *reuse* a lot of stock footage from project to project. I'm not going to re-import duplicates into different events because I don't find that the least bit convenient and I do find it a terrible waste of precious HD real estate.
    But that's me.
    Some people like to load up everything they're going to use in a single project in a single event... I get that. You can command click your way through a bunch of clips, type E and everything is automatically arranged on your storyline in the order you selected the clips. That is *awesome*!! Instant storyline (/timeline.) Furthermore, for those that need to share projects, it's easier to bundle up the events and projects if they're all together (albeit in two different folders) on one disk (— at least they are always at the top level of the drive and easy to find.)
    Keeping your Events media in a different location (satellite drives) and keeping your current project on your *fastest* drive is probably the fastest way to edit (particularly if your satellite drives are Firewire or Thunderbolt [peer-to-peer interfaces don't hog system resources].) There is little cross interference in disk accesses that way. So essentially, you can keep FCPX dealing with original clip data that doesn't need to be quite as fast, reading and writing to slower drives on your system, while letting it plow through the heavy work on your fastest access drive (usually your internal HD.)
    By no means is FCPX "more simplified". It has a huge amount of power. It has all the best parts of Color, Soundtrack Pro and Motion built in. It allows you to explore *ideas* in real time rather than having to plan for them a week in advance [layout, round-tripping plans to Color, STP and/or Motion for titling or effects.]  You can grab and move around elements anywhere on your "palette" with simple mouse moves and an occasional key press. The list goes on. Bottom line, it doesn't matter how you organize your events or your projects. It's all about the finished product. And for me, I can turn that around in about 1/5th the time (not claiming it's great — but I think better results in 20% of the time, on average, than it would have taken in Studio.) [Not a professional video editor -- I'm a graphic designer, and I develop Motion graphics for FCPX to make all "you guys" look better.]

  • I have multiple devices in my family. Each of us has an iPhone and an iPad. Is there a way for each of us to have our own Apple ID but one account so we can all get the same music, movies, books, etc. I can't see paying twice for something in the same fam

    I have multiple devices in my family. Each of us has an iPhone and an iPad. Is there a way for each of us to have our own Apple ID but one account so we can all get the same music, movies, books, etc. I can't see paying twice for something in the same family.

    Welcome to the world of digital media. Your can't really transfer it. I don't know what the rules are about transferring to your spouse but I do know that in some cases when you die, your heirs cannot inherit your digital media. This is why there is still an advantage to buying the CD since the usage rights belong to whomever holds the physical media.
    A possible workaround is to burn the songs to a music CD with yout account (tracks only without song titles) and then having your wife upload it as a regular music CD onto her account. It's been a while since i've done this so I'm not sure if it would work now.
    Please note that I'm not advocating copyright and/or TOS violations. I'm only suggesting ways to copy music for your own personal use which has traditonally been permitted. I only did this because I wanted to convert iTunes songs to mp3 files so I could burn them onto a data CD for use in my car. It would make sense that since married couples are a joint entity, this would be personal use.
    Also, I'm not a lawyer so don't take this as legal advice.

  • Hello can someone help me I have an iphone 4 and my daughter has an ipod touch we are on the same email address but somehow with in the last 25hrs all of my contacts are gone and only hers on on my phone is there a way for me to get all my contacts back?

    Hello can someone help me I have an iphone 4 and my daughter has an ipod touch we are on the same email address but somehow with in the last 25hrs all of my contacts are gone and only hers on on my phone is there a way for me to get all my contacts back?

    If you need assistance with finding any of your restores or attempting to restore from any that happened prior to his incident follow this article
    http://support.apple.com/kb/ht1766
    IF you do find a backup that has your contacts; I'd /highly/ recommand turning off your wifi network after the restore is finished because if the issue is with your iCloud your contacts may merge back with her's.
    With iCloud you DO NOT want to share the account; bad things happen Evil evil thigns...
    But in all seriousness; if two devices have the same iCloud; iCloud is told to merge and sync infomation between hte two and can't tell that it doesn't belong to the same person

  • Is there a way to get an alarm for my events for the iCal on the iPhone 4?

    Is there a way to get an alarm for my events for the iCal on the iPhone 4?

    Greetings,
    See page 113 of the iPhone 4 user manual: http://manuals.info.apple.com/en_US/iphone_user_guide.pdf
    When you add an event to the Calendar.app of the iPhone 4 there is an "Alert" option which should give you the desired result.
    Cheers.

  • Is there a way for my daughter or her friends to block their numbers from showing up on activities page. At first i could see them, as of yesterday i can no longer see the numbers in the activities page. But i do see that she has texted them when looking

    Is there a way for my daughter or her friends to block their numbers from showing up on activities page. At first i could see them, as of yesterday i can no longer see the numbers in the activities page. But i do see that she has texted them when looking at her phone.

    First of all, there is no need to put the entire text of your post into the title of your thread.
    Next, does your daughter have an iPhone? Do her friends have iPhones? If the answer to both questions is "yes", then it is possible she is not texting them, but using iMessage to communicate with them. iMessages will not show up in the texting traffic on a line as they are not texts, but messages sent thru Apple's servers.
    For all "texts" to show up in the texting activity of an iPhone, you must disable iMessage on the device. Any messages sent as iMessages(blue bubbles around the text) on an iPhone will not show up in any texting activity.

  • Is there a way for the sender of an email to see if it has been read

    is there a way for the sender of an email to see if the email has been read?    

    Some email clients allow for you to request a read receipt, but the sender also has the ability to refuse to send it as well. Much of that is controlled on the receiving end.

Maybe you are looking for