Leave to screen 0 does not branch to initialization event (ALV)

Hi All,
I'm new at this forum thing so be gentle. I have created the standard custom control in a new screen, setup the field catalog and other parameters and when I call the screen and do the :
  IF g_custom_container IS INITIAL.
    CREATE OBJECT g_custom_container
       EXPORTING
          container_name = 'ZTMR_EVAL_GRID'.
    CREATE OBJECT g_grid
       EXPORTING
         i_parent = g_custom_container.
    CLEAR wa_disvariant.
    wa_disvariant-report = sy-repid.
    CALL METHOD g_grid->set_table_for_first_display
      EXPORTING
        is_variant      = wa_disvariant
        i_save          = 'A'
        is_layout       = wa_layout
      CHANGING
        it_outtab       = detail_tab[]
        it_fieldcatalog = itab_fldcat
        it_sort         = itab_sort.
    CREATE OBJECT event_receiver.
    SET HANDLER event_receiver->handle_top_of_page FOR g_grid.
  ENDIF.
, everything works great. The problem occurs when hit the BACK button in my PAI module, it returns to the line after the CALL SCREEN XXX, ENDFORM, PERFORM output_alv_grid_report and then branches to :
FUNCTION hrpy_process_fire_event in the source code of LHRST1U01 in the main program SAPLHRST1.
It does this instead of branching to the INITIALIZATION event (selection-screen) which is what it's supposed to do?
Any help would be greatly appreciated - Thanks in advance,
Jim

hi,
REPORT  ZTEST1234_ALV_TOP    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.
"The Below Definitions Must.....
DATA:
* Reference to document
       DG_DYNDOC_ID       TYPE REF TO CL_DD_DOCUMENT,
* Reference to split container
       DG_SPLITTER          TYPE REF TO CL_GUI_SPLITTER_CONTAINER,
* Reference to grid container
       DG_PARENT_GRID     TYPE REF TO CL_GUI_CONTAINER,
* Reference to html container
       DG_HTML_CNTRL        TYPE REF TO CL_GUI_HTML_VIEWER,
* Reference to html container
       DG_PARENT_HTML     TYPE REF TO CL_GUI_CONTAINER.
"up to here
*       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,
**Double Click Handler
    HANDLE_DOUBLE_CLICK FOR EVENT DOUBLE_CLICK OF CL_GUI_ALV_GRID
                                     IMPORTING E_ROW E_COLUMN ES_ROW_NO,
    TOP_OF_PAGE FOR EVENT TOP_OF_PAGE              "event handler
                         OF CL_GUI_ALV_GRID
                         IMPORTING E_DYNDOC_ID.
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
  METHOD TOP_OF_PAGE.                   "implementation
* Top-of-page event
    PERFORM EVENT_TOP_OF_PAGE USING DG_DYNDOC_ID.
  ENDMETHOD.                            "top_of_page
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
DATA: OK_CODE LIKE SY-UCOMM,
      SAVE_OK LIKE SY-UCOMM,
      G_CONTAINER1 TYPE SCRFNAME VALUE 'TEST',
      GS_LAYOUT TYPE LVC_S_LAYO.
*- 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.
  DATA:BEGIN OF  ITAB OCCURS 0,
       VBELN LIKE LIKP-VBELN,
       POSNR LIKE LIPS-POSNR,
       CELLCOLOR TYPE LVC_T_SCOL, "required for color
       DROP(10),
       END OF ITAB.
  SELECT VBELN
         POSNR
         FROM LIPS
         UP TO 20 ROWS
         INTO CORRESPONDING FIELDS OF TABLE ITAB.
END-OF-SELECTION.
  IF NOT ITAB[] IS INITIAL.
    <b>CALL SCREEN 100.</b>
  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.
  "attention.....from here
  "split your container here...into two parts
  "create the container
  CREATE OBJECT G_CUSTOM_CONTAINER
           EXPORTING CONTAINER_NAME = G_CONTAINER1.
  "this is for top of page
* Create TOP-Document
  CREATE OBJECT DG_DYNDOC_ID
                   EXPORTING STYLE = 'ALV_GRID'.
* Create Splitter for custom_container
  CREATE OBJECT DG_SPLITTER
             EXPORTING PARENT  = G_CUSTOM_CONTAINER
                       ROWS    = 2
                       COLUMNS = 1.
* Split the custom_container to two containers and move the reference
* to receiving containers g_parent_html and g_parent_grid
  "i am allocating the space for grid and top of page
  CALL METHOD DG_SPLITTER->GET_CONTAINER
    EXPORTING
      ROW       = 1
      COLUMN    = 1
    RECEIVING
      CONTAINER = DG_PARENT_HTML.
  CALL METHOD DG_SPLITTER->GET_CONTAINER
    EXPORTING
      ROW       = 2
      COLUMN    = 1
    RECEIVING
      CONTAINER = DG_PARENT_GRID.
  "you can set the height of it
* Set height for g_parent_html
  CALL METHOD DG_SPLITTER->SET_ROW_HEIGHT
    EXPORTING
      ID     = 1
      HEIGHT = 5.
  "from here as usual..you need to specify parent as splitter part
  "which we alloted for grid
  CREATE OBJECT G_GRID
         EXPORTING I_PARENT = DG_PARENT_GRID.
* Set a titlebar for the grid control
  CLEAR GS_LAYOUT.
  GS_LAYOUT-GRID_TITLE = TEXT-003.
  GS_LAYOUT-ZEBRA = SPACE.
  GS_LAYOUT-CWIDTH_OPT = 'X'.
  GS_LAYOUT-NO_ROWMARK = 'X'.
  GS_LAYOUT-CTAB_FNAME = 'CELLCOLOR'.
  CALL METHOD G_GRID->REGISTER_EDIT_EVENT
    EXPORTING
      I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_ENTER.
  CREATE OBJECT G_HANDLER.
  SET HANDLER G_HANDLER->HANDLE_DOUBLE_CLICK FOR G_GRID.
  SET HANDLER G_HANDLER->HANDLE_HOTSPOT_CLICK FOR G_GRID.
  SET HANDLER G_HANDLER->TOP_OF_PAGE FOR G_GRID.
  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.
**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[].
  "do these..{
* Initializing document
  CALL METHOD DG_DYNDOC_ID->INITIALIZE_DOCUMENT.
* Processing events
  CALL METHOD G_GRID->LIST_PROCESSING_EVENTS
    EXPORTING
      I_EVENT_NAME = 'TOP_OF_PAGE'
      I_DYNDOC_ID  = DG_DYNDOC_ID.
  "end }
* 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 = 'IT_FINAL'.
  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 = 'IT_FINAL'.
  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 = 'IT_FINAL'.
  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.
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.
  LOOP AT ITAB .
* First listbox (handle '1').
    IF SY-INDEX = 1.
      LS_DRAL-HANDLE = '1'.
      LS_DRAL-VALUE =  ' '.
      LS_DRAL-INT_VALUE =  ' '.
    ELSE.
      LS_DRAL-HANDLE = '1'.
      LS_DRAL-VALUE =  ITAB-POSNR.
      LS_DRAL-INT_VALUE =  ITAB-POSNR.
    ENDIF.
    APPEND LS_DRAL TO LT_DRAL.
  ENDLOOP.
**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
*&      Form  EVENT_TOP_OF_PAGE
*       text
*      -->DG_DYNDOC_ID  text
FORM EVENT_TOP_OF_PAGE USING   DG_DYNDOC_ID TYPE REF TO CL_DD_DOCUMENT.
  "this is more clear.....check it
  "first add text, then pass it to comentry write fm
  DATA : DL_TEXT(255) TYPE C.  "Text
* Populating header to top-of-page
  CALL METHOD DG_DYNDOC_ID->ADD_TEXT
    EXPORTING
      TEXT      = 'Test Report'
      SAP_STYLE = CL_DD_AREA=>HEADING.
* Add new-line
  CALL METHOD DG_DYNDOC_ID->NEW_LINE.
  CLEAR : DL_TEXT.
* Move program ID
  CONCATENATE 'Program Name :' SY-REPID
         INTO DL_TEXT SEPARATED BY SPACE.
* Add Program Name to Document
  PERFORM ADD_TEXT USING DL_TEXT.
* Add new-line
  CALL METHOD DG_DYNDOC_ID->NEW_LINE.
  CLEAR : DL_TEXT.
* Move User ID
  CONCATENATE 'User ID :' SY-UNAME INTO DL_TEXT SEPARATED BY SPACE
* Add User ID to Document
  PERFORM ADD_TEXT USING DL_TEXT.
* Add new-line
  CALL METHOD DG_DYNDOC_ID->NEW_LINE.
  CLEAR : DL_TEXT.
* Move Client
  CONCATENATE 'Client :' SY-MANDT INTO DL_TEXT SEPARATED BY SPACE.
* Add Client to Document
  PERFORM ADD_TEXT USING DL_TEXT.
* Add new-line
  CALL METHOD DG_DYNDOC_ID->NEW_LINE.
  CLEAR : DL_TEXT.
* Move date
  WRITE SY-DATUM TO DL_TEXT.
  CONCATENATE 'Date :' DL_TEXT INTO DL_TEXT SEPARATED BY SPACE.
* Add Date to Document
  PERFORM ADD_TEXT USING DL_TEXT.
* Add new-line
  CALL METHOD DG_DYNDOC_ID->NEW_LINE.
  CLEAR : DL_TEXT.
* Move time
  WRITE SY-UZEIT TO DL_TEXT.
  CONCATENATE 'Time :' DL_TEXT INTO DL_TEXT SEPARATED BY SPACE.
* Add Time to Document
  PERFORM ADD_TEXT USING DL_TEXT.
* Add new-line
  CALL METHOD DG_DYNDOC_ID->NEW_LINE.
* Populating data to html control
  PERFORM HTML.
ENDFORM.                    " EVENT_TOP_OF_PAGE
*&      Form  ADD_TEXT
*       To add Text
FORM ADD_TEXT USING P_TEXT TYPE SDYDO_TEXT_ELEMENT.
* Adding text
  CALL METHOD DG_DYNDOC_ID->ADD_TEXT
    EXPORTING
      TEXT         = P_TEXT
      SAP_EMPHASIS = CL_DD_AREA=>HEADING.
ENDFORM.                    " ADD_TEXT
*&      Form  HTML
*       text
FORM HTML.
  DATA : DL_LENGTH  TYPE I,                           " Length
         DL_BACKGROUND_ID TYPE SDYDO_KEY VALUE SPACE. " Background_id
* Creating html control
  IF DG_HTML_CNTRL IS INITIAL.
    CREATE OBJECT DG_HTML_CNTRL
         EXPORTING
              PARENT    = DG_PARENT_HTML.
  ENDIF.
* Reuse_alv_grid_commentary_set
  CALL FUNCTION 'REUSE_ALV_GRID_COMMENTARY_SET'
    EXPORTING
      DOCUMENT = DG_DYNDOC_ID
      BOTTOM   = SPACE
    IMPORTING
      LENGTH   = DL_LENGTH.
* Get TOP->HTML_TABLE ready
  CALL METHOD DG_DYNDOC_ID->MERGE_DOCUMENT.
* Set wallpaper
  CALL METHOD DG_DYNDOC_ID->SET_DOCUMENT_BACKGROUND
    EXPORTING
      PICTURE_ID = DL_BACKGROUND_ID.
* Connect TOP document to HTML-Control
  DG_DYNDOC_ID->HTML_CONTROL = DG_HTML_CNTRL.
* Display TOP document
  CALL METHOD DG_DYNDOC_ID->DISPLAY_DOCUMENT
    EXPORTING
      REUSE_CONTROL      = 'X'
      PARENT             = DG_PARENT_HTML
    EXCEPTIONS
      HTML_DISPLAY_ERROR = 1.
  IF SY-SUBRC NE 0.
    MESSAGE I999 WITH 'Error in displaying top-of-page'(036).
  ENDIF.
ENDFORM.                    " HTML
Regards
Vijay

Similar Messages

  • When I open my MacBook Air the keyboard comes up along with the screen and does not stay still?!

    When I open my MacBook Air the keyboard comes up along with the screen and does not stay still. So I need to hold down the keyboard while i open it. Other than that it works fine despite the fact that the fan noise some times is loud and sometimes it's getting warm at the base. I wonder if this can be fixed if i go to one of the apple branches.

    Yes. Take the computer to the Apple store to have it fixed.
    Best

  • Bootcamp screen brightness does not work.

    Hello, i can't adjust my screen brightness at all.... I hit the fn and f2/f1 buttons and the brightness icon appears and the bar goes down and up normally but the screen brightness does not change. i also tried changing the brightness in the bootcamp control panel and nothing happens. I can't find any solution for this problem anywhere, so I figured i'd give it a try and ask here how can i fix this.
    I'm using: Windows 7 - x64 on a macbook pro 2009 with bootcamp updated to version 3.3.
    Thanks

    Click on the start icon (bottom left of your screen) and search "Brightness" click on the adjust brightness thing. Hope this helped.

  • HT4044 Part of my iPad(1st gen) screen display does not show,hence I can only see it partially.It was not dropped and neither is it broken. Any help as I was told it cant be fixed and i hv 2 replace with a new unit i.e. pay in full as warranty is over? HE

    Part of my iPad screen display does not show. It was not dropped and neither is the screen broken. I was advised to see the local service provider for a diagnosis.
    I had finally managed to find time to find a local service provider last week (not easy) and was disappointed to be advised of Apple's policy of one for one exchange i.e. they wont repair and said that i would have to replace with a whole unit. As my unit is no longer under warranty, it meant that I had to pay for the full price of a new unit!
    I might as well have paid for the latest new unit but since my unit is only 2 years old at most, it would be a great waste of money.
    How can this be? Does this mean apple's product is inferior and do not last since warranty is only for one year?
    I sincerely hope there is a favourable solution otherwse my money is flushed down the drain.
    HELP!!!

    I was using my iPad last night, shut the power off and when I turned it on this morning 2/3 of the screen is not working.  It looks like the pandalela picture. What is the answer to fix this; is this a screen issue or and electronics issues.  Has anybody else experienced this?

  • PopcornTime starts with a black screen and does not load

    I installed PopcornTime from the AUR and it does not seem to load. When I launch the application, it simply loads a black screen and does not move from there.  When I launch the application from the terminal, I get this output.
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: eaaf5bae2afd45ba896648b3bf6f2fc4"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(1)] "Uncaught ReferenceError: vjs is not defined", source: app://host/src/app/vendor/videojshooks.js (1)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: e4335f5d7c7f4cba82de01016965692e"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(3)] "Uncaught ReferenceError: videojs is not defined", source: app://host/src/app/vendor/videojsplugins.js (3)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: f925bf0a7bd34ecdbd3bdba5dbac2f14"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(69)] "Uncaught ReferenceError: jQuery is not defined", source: app://host/src/app/vendor/dragwindow.js (69)
    [923:0617/080553:INFO:CONSOLE(14)] ""Database path: /root/.config/Popcorn-Time"", source: app://host/src/app/database.js (14)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: cb164b958a3d4c10a758076ead25f596"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(58)] "Uncaught ReferenceError: _ is not defined", source: app://host/src/app/app.js (58)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: 8a8a4d1cca6d4e92b4fb93c7191f767f"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(105)] "Uncaught TypeError: Cannot set property 'Config' of undefined", source: app://host/src/app/lib/config.js (105)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: 561c6f00e6f24272a26808627a55bf91"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(40)] "Uncaught TypeError: Cannot read property 'Localization' of undefined", source: app://host/src/app/language.js (40)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: bed93dbe7c31482fb3abf2a9c6b71b0a"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(291)] "Uncaught TypeError: Cannot read property 'vent' of undefined", source: app://host/src/app/lib/streamer.js (291)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: 560ecb14dfeb42a9aa9e7c2e8e26c7ab"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(4)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/models/filter.js (4)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: 387f133dc99d4361b427f502d413f513"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(11)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/models/movie.js (11)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: cc8fae14131741eaaf101787a3dfbca4"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(6)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/models/movie_collection.js (6)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: 7b1584741b7147fcb8c026eb22222c7a"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(4)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/models/stream_info.js (4)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: ed6d93bfbf6a40178ecae0aa0d63d8d8"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(6)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/models/show_collection.js (6)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: 2eca5d0cc8434c7db7f8d6c2f747a30b"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(6)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/models/favorite_collection.js (6)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: 1377c1c67414454a8b068bf894b9e26e"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(6)] "Uncaught TypeError: Cannot read property 'Config' of undefined", source: app://host/src/app/lib/cache.js (6)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: e9dacbd700cc4dedb0ed361ad21eeea5"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(128)] "Uncaught TypeError: Cannot set property 'CacheV2' of undefined", source: app://host/src/app/lib/cachev2.js (128)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: 8c4ec1c065874724b0f0df83c813ce76"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(47)] "Uncaught TypeError: Cannot read property 'Providers' of undefined", source: app://host/src/app/lib/providers/cache_provider.js (47)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: 274976668c8a40f48fa25f9bf7fad396"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(42)] "Uncaught TypeError: Cannot read property 'Providers' of undefined", source: app://host/src/app/lib/providers/cache_providerv2.js (42)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:53" "uncaughtException: 8d07e698bd2d471eabcc6c8577bff762"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(18)] "Uncaught TypeError: Cannot read property 'Providers' of undefined", source: app://host/src/app/lib/providers/ysubs.js (18)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 8eec46090df543a8a772c4606eff3e11"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(37)] "Uncaught TypeError: Cannot read property 'Providers' of undefined", source: app://host/src/app/lib/providers/trakttv.js (37)
    [923:0617/080553:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 03624594cd48407d9767f592a1f87f66"", source: util.js (549)
    [923:0617/080553:INFO:CONSOLE(119)] "Uncaught TypeError: Cannot read property 'Providers' of undefined", source: app://host/src/app/lib/providers/yts.js (119)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 60bbd32cf6474fe383566f955beb000c"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(92)] "Uncaught TypeError: Cannot read property 'Providers' of undefined", source: app://host/src/app/lib/providers/eztv.js (92)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: c9c3b618a9da49bc950c9037d21aeefe"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(67)] "Uncaught TypeError: Cannot read property 'Providers' of undefined", source: app://host/src/app/lib/providers/favorites.js (67)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 7663fc27ecc146388ae3fe80f65db1cc"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(31)] "Uncaught TypeError: Cannot read property 'Providers' of undefined", source: app://host/src/app/lib/providers/opensubtitles.js (31)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 8bc10daed5064544971ba460fb2004f2"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(17)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/title_bar.js (17)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 70946259c8ce42889aba096bb748600a"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(6)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/main_window.js (6)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: ca8fc30ee2c146978518399769767401"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught TypeError: Cannot read property 'Providers' of undefined", source: app://host/src/app/lib/views/movie_detail.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 21643a9627984324b61b6c8a8bcb350f"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught TypeError: Cannot read property 'Providers' of undefined", source: app://host/src/app/lib/views/show_detail.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 6ba1f0fef40745ff8ffa414c94003e27"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/settings.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 1393d99ebbcd44a6a0983a3e732fef6e"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/init_modal.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: d59eda2f9f03431c8657d4dfdd3ec368"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/disclaimer.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: fa2db4c3d1764e4795974a41f7c33e03"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/about.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 066747791f864cb7b4ce25fc2837987a"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(5)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/file_selector.js (5)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 10a5106be6ce4e26b22e71fc61dfccfc"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/help.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 9fbb3c3723af4b3ab23be9ec1cc7f8d8"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/player/loading.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: a077cf7a856049dcbf9a11cbf14caa0d"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/player/player.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 5128c15ad44547b1bd49ffec348654de"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(12)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/movie_browser/movie_browser.js (12)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 0a9ba38114654c4f91b900c4cadfc775"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught TypeError: Cannot read property 'View' of undefined", source: app://host/src/app/lib/views/movie_browser/filter_bar.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: ab751c37f72c481cbcc9901180d24ce5"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(7)] "Uncaught TypeError: Cannot read property 'Providers' of undefined", source: app://host/src/app/lib/views/movie_browser/movie_item.js (7)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 77d9dbb23b344f9aa3d370cef999c58e"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(8)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/movie_browser/movie_list.js (8)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: a9d052c94438459387e1989d9c41cbc9"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught TypeError: Cannot read property 'View' of undefined", source: app://host/src/app/lib/views/show_browser/filter_bar.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 33f1e096b6024989842d11dc36e20da6"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(12)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/show_browser/show_browser.js (12)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: d74d6db001be4f1b993df8ade2a1966e"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(6)] "Uncaught TypeError: Cannot read property 'Providers' of undefined", source: app://host/src/app/lib/views/show_browser/show_item.js (6)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: e847a67e7ffb4b429e3cf213c24c6b5a"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(8)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/show_browser/show_list.js (8)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 50dbc5d16ab748038848698b14fc6ba8"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/favorites/favorite_browser.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 1dbd51e95b864357aed5cfbe36e07b49"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/favorites/filter_bar.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 421a69aa7491406ebbedb02c3be52354"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(4)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/favorites/favorite_item.js (4)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 20e785f3bd1e43f49144e45c5baf1033"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(6)] "Uncaught ReferenceError: Backbone is not defined", source: app://host/src/app/lib/views/favorites/favorite_list.js (6)
    [923:0617/080554:INFO:CONSOLE(549)] ""%s - %s" "17 Jun 08:05:54" "uncaughtException: 3c39ae6503b341139802f5be4de6ecff"", source: util.js (549)
    [923:0617/080554:INFO:CONSOLE(3)] "Uncaught TypeError: Cannot call method 'start' of undefined", source: app://host/src/app/bootstrap.js (3)
    It seems as though quite a few files are missing, though the yaourt built the application just fine.

    I had the same issue with the git version. Install the stable version and it should work fine
    https://aur.archlinux.org/packages/popcorntime

  • I have updated my Iphone5 with new IOS6 - now the screen/display does not react to my taps on screen as in i cant tap in my pin to start???

    I have updated my Iphone5 with new IOS6 - now the screen/display does not react to my taps on screen as in i cant tap in my pin to startup???

    I have updated my Iphone5 with new IOS6 - now the screen/display does not react to my taps on screen as in i cant tap in my pin to startup???

  • HT4764 when i open safari, it opens with a highlighted screen and does not respond

    when i open safari, it opens with a highlighted screen and does not respond

    So it seems the issue is when iMovie is wanting to creat thumbnails, if I ask it to ignore then it's fine but if not it hangs up searching for the video file.

  • HT1657 Downloaded 2 rentals and they won't play. They ask if I would like to begin the rental period, I say yes and it takes me to the dvd screen, but does not play. I hit play, fast forward, skip chapters and nothing.

    Downloaded 2 rentals and they won't play. They ask if I would like to begin the rental period, I say yes and it takes me to the dvd screen, but does not play. I hit play, fast forward, skip chapters and nothing.

    I'd report the problem to the iTunes Store. 
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the items that are not playing properly. If you can't see "Report a Problem" next to the items, click the "Report a problem" button. Now click the "Report a Problem" links next to the items.

  • IChat 4.0.7 Screen Sharing does not work.

    Me and my friend both have identical machines, the intel iMac 20" 2.66mhz
    Software is identical
    iChat version is identical (4.0.7 (616))
    Video Chat works perfectly, our internet connections are fantastic, no issues there.
    Both using Netgear routers with uPnP enabled.
    Internet Sharing is OFF
    Firewall is "set access for specific services and applications" and iChat and iChat Agent are added.
    I conclude that Screen Sharing *does NOT work* as advertised.
    Apple, I am most disappointed, get it sorted for next release please.
    Who else has witnessed this epic failure?
    Thanks,
    edit
    Also, what is this iChat AV nonsense? Where are the iChat 4 forums?
    Message was edited by: Wayne

    Thanks again Leo for your help,
    Yes I was refering to the screen sharing in system preferences/sharing.
    Checked the video menu:
    Screen sharing enabled
    Camera enabled
    microphone enabled
    so no that's not it! Was hoping it was something simple like that too.
    Both netgear routers dont have any ports forwarded, just upnp enabled.
    The frustrating thing is, both macs are new, one is only days old, and neither mac has had it's setting messed about with or anything.
    It would be great to find the solution, 100's of people having similar issues if you google it.
    *edit*
    Just a thought, would the type of account make a difference? At the moment we are both using the type of accounts that iChat creates when you select "get an iChat account" (creates a [email protected] login)
    Message was edited by: Wayno

  • My passcode is working to unlock the screen but does not work with restriction passcode. Should they be different?

    My passcode is working to unlock the screen but does not work with restriction passcode.
    Tried it several times but it did not work, though i can use the phone and all features even after 13 failed attempts.
    Should restriction passcode be different from what i set?

    There is no default restriction password. If you didn't set it someone else may have. If you can't find it then you may have to follow the steps here:
    Forgot passcode for your iPhone, iPad, or iPod touch, or ...
    Do you have a backup which might not have this restriction passcode? If so restore to that backup?

  • Save Panel Image / Screen Image does not work as an Executable

    The Save Panel Image / Screen Image does not work as an Executable.  It looks like there is a conflict with the Path, since the Screen_Image.exe is launched as Screen_Image.vi.  I've tried this function both ways with the path name change Screen_Image.exe AND Screen_Image.vi.

    Any chance you might be able to post some code illustrating what you are talking about?
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Can i hook up a new macbook air to my older imac screen that does not have a thunderbolt i/o?

    can i hook up a new macbook air to my older imac screen that does not have a thunderbolt i/o? if not - what can i do to view on a larger display? thanks in advance for any help!!!

    You should be able to get an adapter that will change the Thunderbolt out to a DVI or HDMI out, and connect that to an external monitor.  I am not sure what connection your iMac screen has, or if it even HAS input capability.  I know that the 27' iMac BEFORE it was given the Thunderbolt ports had MiniDP input.  If your iMac is any older than that one, I am not sure. But the adapter should allow you to output to any DVI or HDMI display, depending on which adapter you get.

  • Screen Saver does not use selected Screen Saver when activated

    Screen Saver does not use selected Screen Saver when activated. After "Start screen saver" elapse time has been reached, a blank black full screen is displayed. I can activate the selected screen saver by using the hot corners function. Any help with this matter will be greatfully received.

    Hi again sassey,
    You're assuming correctly. Simply change the settings so that your screen saver activates before the sleep settings.
    Hope this solves your problem...

  • Boot screen resolution does not match the login screen on retina

    Boot screen resolution does not match the login screen on MBP retinas if you've set your resolution to hi-res thus resulting a flickering at login screen appearing instead of that nice login screen animation, due to I believe screen resolution change...
    is there a way to change boot screen resolution (times before login screen)???
    Or do we have to wait for apple to push an EFI update for this problem?
    Thanks in advance

    No one having this issue?
    please some one at least confirm this so I know thats not my setup spesific problem?

  • Apple iPAD 2.  Needs password to unlock iPAD; however there is a permanent keyboard displayed on the screen that does not respond to touch. iPAD switches on with button but does not turn off using it at moment.  Can you help please?

    Apple iPAD 2.  Needs password to unlock iPAD; however there is a permanent keyboard displayed on the screen that does not respond to touch. iPAD switches on with button but does not turn off using it at moment.  Can you help please?

    Try a reboot by holding both the power and home buttons until the apple logo appears, ignore the red slider if that appears.  See if that clears the glitch.

Maybe you are looking for

  • Macbook with Thunderbolt setup

    i am very interested in the Thunderbolt display, i currently have a mbp and would love to use the thunderbolt as a dock to charge and do work on, what i dont understand is, why or how does the thunderbolt cable come into play? if the thunderbolt disp

  • Purchase Orders Summary, Currency Rate Field

    Recently we applied Patch INV.RUP 14, after that users notice that Purchase Order summary screen => Purchase Order Headers Block => Rate field, it shows the Foreign Currency Rate, while it used to show Local Currency rate before applying the patch. D

  • Sametime activation on collaboration launch pad

    Hi All, I have installed LDS-D component on sametime server, and set parameters in servlets.properties file and lotus.ini javaUsers.classes parameter has been updated. What are the settings within portal for the sametime to come up on collaboration l

  • 'Your computer restarted because of a problem...' Start up

    Hi, I have noticed that since updating to Yosemite every time I start up after a planned shutdown I am receiving the 'your computer restarted because of a problem' dialogue. I have a Early 2011 MacBook Pro with 16gb Ram and a SSD/HDD combo replacing

  • Failed to load Main-Class manifest attribute from IWS.jar

    I have a problem that when I click the IWS.jar in dist folder, there is an error "Failed to load Main-Class manifest attribute from IWS.jar" i have search in internet with same case, they said to add a line "Main-Class: summary" in manifest.mf, so i