Event double -click doens't work

Dear All,
Pls help event double -click doens't work.
What can the reason be for it ?
Regards
Ilhan
data tree1 type ref to cl_gui_alv_tree.
data mr_toolbar type ref to cl_gui_toolbar.
include <icon>.
data: gt_sflight      type ZQMCOMP occurs 0,      "Output-Table
      gt_fieldcatalog type lvc_t_fcat, "Fieldcatalog
      ok_code like sy-ucomm.           "OK-Code
*  TREE_EVENT_RECEIVER                                                 *
class tree_event_receiver definition.
  public section.
    methods on_doubleclick
     for event link_click of cl_gui_alv_tree
      importing node_key fieldname.
ENDCLASS.                    "lcl_handler DEFINITION
*       CLASS tree_event_receiver IMPLEMENTATION
class tree_event_receiver implementation.
  METHOD on_doubleclick.
    MESSAGE I000(38) WITH fieldname.
  ENDMETHOD.                    "on_doubleclick
endclass.
start-of-selection.
end-of-selection.
call screen 100.
*&      Module  PBO  OUTPUT
*       process before output
module pbo output.
  set pf-status 'MAIN100'.
  if tree1 is initial.
    perform init_tree.
  endif.
  call method cl_gui_cfw=>flush.
endmodule.                             " PBO  OUTPUT
*&      Module  PAI  INPUT
*       process after input
module pai input.
  case ok_code.
    when 'EXIT' or 'BACK' or 'CANC'.
      perform exit_program.
    when others.
      call method cl_gui_cfw=>dispatch.
  endcase.
  clear ok_code.
  call method cl_gui_cfw=>flush.
endmodule.                             " PAI  INPUT
*&      Form  build_fieldcatalog
*       build fieldcatalog for structure sflight
form build_fieldcatalog.
  data: ls_fieldcatalog type lvc_s_fcat.
  ls_fieldcatalog-fieldname = 'DUNS'.
  ls_fieldcatalog-col_pos  = 7.
  ls_fieldcatalog-coltext  = 'Duns'.
  APPEND ls_fieldcatalog TO gt_fieldcatalog.
  clear ls_fieldcatalog.
  ls_fieldcatalog-fieldname = 'MONAT'.
  ls_fieldcatalog-col_pos  = 8.
  ls_fieldcatalog-coltext  = 'Monat'.
  APPEND ls_fieldcatalog TO gt_fieldcatalog.
  clear ls_fieldcatalog.
  ls_fieldcatalog-fieldname = 'ZE'.
  ls_fieldcatalog-col_pos  = 13.
  ls_fieldcatalog-coltext  = 'Ze'.
  APPEND ls_fieldcatalog TO gt_fieldcatalog.
  clear ls_fieldcatalog.
  ls_fieldcatalog-fieldname = 'MATKOSTEN'.
  ls_fieldcatalog-col_pos  = 14.
  ls_fieldcatalog-coltext  = 'Mat.Kosten'.
  APPEND ls_fieldcatalog TO gt_fieldcatalog.
  clear ls_fieldcatalog.
  ls_fieldcatalog-fieldname = 'ANTEIL'.
  ls_fieldcatalog-col_pos  = 15.
  ls_fieldcatalog-coltext  = 'Anteil'.
  APPEND ls_fieldcatalog TO gt_fieldcatalog.
  clear ls_fieldcatalog.
  ls_fieldcatalog-fieldname = 'GESMAT'.
  ls_fieldcatalog-col_pos  = 16.
  ls_fieldcatalog-coltext  = 'Ges.Mat'.
  APPEND ls_fieldcatalog TO gt_fieldcatalog.
  clear ls_fieldcatalog.
  ls_fieldcatalog-fieldname = 'GESLOH'.
  ls_fieldcatalog-col_pos  = 17.
  ls_fieldcatalog-coltext  = 'Ges.Lohn'.
  APPEND ls_fieldcatalog TO gt_fieldcatalog.
  clear ls_fieldcatalog.
  ls_fieldcatalog-fieldname = 'GESAMT'.
  ls_fieldcatalog-col_pos  = 19.
  ls_fieldcatalog-coltext  = 'Gesamt'.
  APPEND ls_fieldcatalog TO gt_fieldcatalog.
  call function 'LVC_FIELDCATALOG_MERGE'
       EXPORTING
            i_structure_name = 'ZQMCOMP'
       CHANGING
            ct_fieldcat      = gt_fieldcatalog.
endform.                               " build_fieldcatalog
*&      Form  build_hierarchy_header
*       build hierarchy-header-information
*      -->P_L_HIERARCHY_HEADER  strucxture for hierarchy-header
form build_hierarchy_header changing
                               p_hierarchy_header type treev_hhdr.
  p_hierarchy_header-heading = 'Hierarchy-Kopf'.            "#EC NOTEXT
  p_hierarchy_header-tooltip =
                         'Hierarchy-Kopf !'.
  p_hierarchy_header-width = 30.
  p_hierarchy_header-width_pix = ''.
endform.                               " build_hierarchy_header
*&      Form  exit_program
*       free object and leave program
form exit_program.
  call method tree1->free.
  leave program.
endform.                               " exit_program
*&      Form  build_header
*       build table for html_header
*  -->  p1        text
*  <--  p2        text
form build_comment using
      pt_list_commentary type slis_t_listheader
      p_logo             type sdydo_value.
  data: ls_line type slis_listheader.
  clear ls_line.
  ls_line-typ  = 'H'.
  ls_line-info = 'LIBOLO '.
  append ls_line to pt_list_commentary.
  clear ls_line.
  clear ls_line.
  ls_line-typ  = 'A'.
  ls_line-info = 'Liste'.
  append ls_line to pt_list_commentary.
*  p_logo = 'ENJOYSAP_LOGO'.
endform.
*       FORM create_hierarchy                                         *
FORM create_hierarchy.
  data: ls_sflight type ZQMCOMP,
        lt_sflight type ZQMCOMP occurs 0.
* get data
  select * from ZQMCOMP into table lt_sflight.
*  sort lt_sflight by carrid connid fldate.
* add data to tree
  data: l_carrid_key type lvc_nkey,
        l_connid_key type lvc_nkey,
        l_last_key type lvc_nkey.
  loop at lt_sflight into ls_sflight.
    on change of ls_sflight-KUNDE.
      perform add_carrid_line using    ls_sflight
                              changing l_carrid_key.
    endon.
    on change of ls_sflight-MONAT.
      perform add_connid_line using    ls_sflight
                                       l_carrid_key
                              changing l_connid_key.
    endon.
    perform add_complete_line using  ls_sflight
                                     l_connid_key
                            changing l_last_key.
  endloop.
* calculate totals
  call method tree1->update_calculations.
* this method must be called to send the data to the frontend
  call method tree1->frontend_update.
endform.                               " create_hierarchy
*&      Form  add_carrid_line
*       add hierarchy-level 1 to tree
*      -->P_LS_SFLIGHT  sflight
*      -->P_RELEATKEY   relatkey
*     <-->p_node_key    new node-key
form add_carrid_line using     ps_sflight type ZQMCOMP
             p_relat_key type lvc_nkey
                     changing  p_node_key type lvc_nkey.
  data: l_node_text type lvc_value,
        ls_sflight type ZQMCOMP.
* set item-layout
  data: lt_item_layout type lvc_t_layi,
        ls_item_layout type lvc_s_layi.
  ls_item_layout-t_image = '@3P@'.
  ls_item_layout-fieldname = tree1->c_hierarchy_column_name.
  ls_item_layout-style   =
                        cl_gui_column_tree=>style_intensifd_critical.
  append ls_item_layout to lt_item_layout.
* add node
  l_node_text =  ps_sflight-KUNDE.
  call method tree1->add_node
    exporting
          i_relat_node_key = p_relat_key
          i_relationship   = cl_gui_column_tree=>relat_last_child
          i_node_text      = l_node_text
          is_outtab_line   = ls_sflight
          it_item_layout   = lt_item_layout
       importing
          e_new_node_key = p_node_key.
endform.                               " add_carrid_line
*&      Form  add_connid_line
*       add hierarchy-level 2 to tree
*      -->P_LS_SFLIGHT  sflight
*      -->P_RELEATKEY   relatkey
*     <-->p_node_key    new node-key
form add_connid_line using     ps_sflight type ZQMCOMP
                               p_relat_key type lvc_nkey
                     changing  p_node_key type lvc_nkey.
  data: l_node_text type lvc_value,
        ls_sflight type sflight.
* set item-layout
  data: lt_item_layout type lvc_t_layi,
        ls_item_layout type lvc_s_layi.
  ls_item_layout-t_image = '@3Y@'.
  ls_item_layout-style   =
                        cl_gui_column_tree=>style_intensified.
  ls_item_layout-fieldname = tree1->c_hierarchy_column_name.
  append ls_item_layout to lt_item_layout.
* add node
  l_node_text =  ps_sflight-MONAT.
  call method tree1->add_node
    exporting
          i_relat_node_key = p_relat_key
          i_relationship   = cl_gui_column_tree=>relat_last_child
          i_node_text      = l_node_text
          is_outtab_line   = ls_sflight
          it_item_layout   = lt_item_layout
       importing
          e_new_node_key = p_node_key.
endform.                               " add_connid_line
*&      Form  add_cmplete_line
*       add hierarchy-level 3 to tree
*      -->P_LS_SFLIGHT  sflight
*      -->P_RELEATKEY   relatkey
*     <-->p_node_key    new node-key
form add_complete_line using   ps_sflight type ZQMCOMP
                               p_relat_key type lvc_nkey
                     changing  p_node_key type lvc_nkey.
  data: l_node_text type lvc_value.
  data: lt_item_layout type lvc_t_layi,
        ls_item_layout type lvc_s_layi.
  ls_item_layout-fieldname = tree1->c_hierarchy_column_name.
  append ls_item_layout to lt_item_layout.
  l_node_text =  ps_sflight-QMART.
  call method tree1->add_node
    exporting
          i_relat_node_key = p_relat_key
          i_relationship   = cl_gui_column_tree=>relat_last_child
          is_outtab_line   = ps_sflight
          i_node_text      = l_node_text
          it_item_layout   = lt_item_layout
       importing
          e_new_node_key = p_node_key.
endform.                               " add_complete_line
*&      Form  register_events
*       text
*  -->  p1        text
*  <--  p2        text
form register_events.
  data: lt_events type cntl_simple_events,
        l_event type cntl_simple_event.
  l_event-eventid = cl_gui_column_tree=>eventid_expand_no_children.
  append l_event to lt_events.
  l_event-eventid = cl_gui_column_tree=>eventid_header_context_men_req.
  append l_event to lt_events.
  l_event-eventid = cl_gui_column_tree=>eventid_node_context_menu_req.
  append l_event to lt_events.
  l_event-eventid = cl_gui_column_tree=>eventid_item_context_menu_req.
  append l_event to lt_events.
  l_event-eventid = cl_gui_column_tree=>eventid_header_click.
  append L_EVENT to lt_events.
  l_event-eventid = cl_gui_column_tree=>eventid_item_keypress.
  append L_EVENT to lt_events.
* set Handler
  data: l_event_receiver type ref to tree_event_receiver.
  create object l_event_receiver.
  set handler l_event_receiver->on_doubleclick for tree1.
  call method tree1->set_registered_events
      exporting
        events = lt_events
      exceptions
        cntl_error                = 1
        cntl_system_error         = 2
        illegal_event_combination = 3.
  if sy-subrc <> 0.
    message x208(00) with 'ERROR'.                          "#EC NOTEXT
  endif.
endform.                               " register_events
*&      Form  change_toolbar
*       text
*  -->  p1        text
*  <--  p2        text
form change_toolbar.
* get toolbar control
  call method tree1->get_toolbar_object
          importing
              er_toolbar = mr_toolbar.
  check not mr_toolbar is initial.
* add seperator to toolbar
  call method mr_toolbar->add_button
          exporting
              fcode     = ''
              icon      = ''
              butn_type = cntb_btype_sep
              text      = ''
              quickinfo = 'This is a Seperator'.            "#EC NOTEXT
* add Standard Button to toolbar (for Delete Subtree)
  call method mr_toolbar->add_button
          exporting
              fcode     = 'DELETE'
              icon      = '@18@'
              butn_type = cntb_btype_button
              text      = ''
              quickinfo = 'Delete subtree'.                 "#EC NOTEXT
* add Dropdown Button to toolbar (for Insert Line)
  call method mr_toolbar->add_button
          exporting
              fcode     = 'INSERT_LC'
              icon      = '@17@'
              butn_type = cntb_btype_dropdown
              text      = ''
              quickinfo = 'Insert Line'.                    "#EC NOTEXT
endform.                               " change_toolbar
*&      Form  init_tree
*       text
*  -->  p1        text
*  <--  p2        text
FORM init_tree.
* create fieldcatalog for structure sflight
  perform build_fieldcatalog.
* create container for alv-tree
  data: l_tree_container_name(30) type c,
        l_custom_container type ref to cl_gui_custom_container.
  l_tree_container_name = 'TREE1'.
  if sy-batch is initial.
    create object l_custom_container
      exporting
            container_name = l_tree_container_name
      exceptions
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5.
    if sy-subrc <> 0.
      message x208(00) with 'ERROR'.                        "#EC NOTEXT
    endif.
  endif.
* create tree control
  create object tree1
    exporting
        parent              = l_custom_container
        node_selection_mode = cl_gui_column_tree=>node_sel_mode_single
        item_selection      = 'X'
        no_html_header      = ''
        no_toolbar          = ''
    exceptions
        cntl_error                   = 1
        cntl_system_error            = 2
        create_error                 = 3
        lifetime_error               = 4
        illegal_node_selection_mode  = 5
        failed                       = 6
        illegal_column_name          = 7.
  if sy-subrc <> 0.
    message x208(00) with 'ERROR'.                          "#EC NOTEXT
  endif.
* create Hierarchy-header
  data l_hierarchy_header type treev_hhdr.
  perform build_hierarchy_header changing l_hierarchy_header.
* create info-table for html-header
  data: lt_list_commentary type slis_t_listheader,
        l_logo             type sdydo_value.
  perform build_comment using
                 lt_list_commentary
                 l_logo.
* repid for saving variants
  data: ls_variant type disvariant.
  ls_variant-report = sy-repid.
* create emty tree-control
  call method tree1->set_table_for_first_display
     exporting
               I_STRUCTURE_NAME     = 'ZQMCOMP'
               is_hierarchy_header  = l_hierarchy_header
               it_list_commentary   = lt_list_commentary
*               i_logo               = l_logo
               i_background_id      = 'ALV_BACKGROUND'
               i_save               = 'A'
               is_variant            = ls_variant
     changing
               it_outtab            = gt_sflight "table must be emty !!
              it_fieldcatalog      = gt_fieldcatalog.
* create hierarchy
  perform create_hierarchy.
* add own functioncodes to the toolbar
  perform change_toolbar.
* register events
  perform register_events.
* adjust column_width
  call method tree1->COLUMN_OPTIMIZE.
ENDFORM.                    " init_tree

Hi,
to do so, you need to declare those fields in the form CREATE_HIERARCHY.
For example, to add FLDATE node, you should do:
    ON CHANGE OF LS_SFLIGHT-CARRID.
      PERFORM ADD_CARRID_LINE USING    LS_SFLIGHT
                              CHANGING L_CARRID_KEY.
    ENDON.
    ON CHANGE OF LS_SFLIGHT-CONNID.
      PERFORM ADD_CONNID_LINE USING    LS_SFLIGHT
                                       L_CARRID_KEY
                              CHANGING L_CONNID_KEY.
    ENDON.
    ON CHANGE OF LS_SFLIGHT-FLDATE.
      PERFORM ADD_FLDATE_LINE USING    LS_SFLIGHT
                                       L_CONNID_KEY
                              CHANGING L_FLDATE_KEY.
    ENDON.
    ON CHANGE OF LS_SFLIGHT-PRICE.
      PERFORM ADD_PRICE_LINE USING     LS_SFLIGHT
                                       L_FLDATE_KEY
                              CHANGING L_PRICE_KEY.
    ENDON.
and then create the new FORMS PERFORM ADD_PRICE_LINE and
PERFORM ADD_FLDATE_LINE  by copy of the existent
PERFORM ADD_CONNID_LINE and change the  L_NODE_TEXT in the form.
I suposed you are new to ALV's, so i have a sugestion for you.
Instead of  CL_GUI_ALV_TREE try to use some examples of CL_GUI_ALV_TREE_SIMPLE. It's much more simple to understand and to work with. For example Report BCALV_TREE_SIMPLE_DEMO.
In this case, to add more nodes to the the you just need to add 3 lines of code in
perform build_sort_table.
Regards,

Similar Messages

  • My double click isn't working for itunes to choose songs ? how can i get it working ?

    ever since i got my macbook pro my double clicking hasnt been working on itunes to choose songs, so in stead i have to use arrow keys. how do i get my double click working again ?

    Is it working normal in the Mac system?
    Tried clicking a little bit faster, or a little bit slower than normal?

  • How to make Double Click To Edit work instead of ClickToEdit for Af:Table

    Hi All,
    We use AF:Table in clickToEdit mode and most of the time the users use this table for selecting a master record then work on the detail records. To avoid the cost of rendering the selected row as editable we would like to change the behavior to Double Click To edit. This way the user can intentionally put the selected row in edit mode when needed. What would be the best approach to achieve this ?
    We use 11.1.1.6 and ADF BC.
    Thanks

    Not sure if you can get it to work in 11.1.1.6.0 as you don't have the ActiveRowKey property which can be used to make a table row editable. The property comes with 11gr2.
    What you can try is to set the tabel to clicktoedit, add a clientListener which you use to listen to the click event and then cancel the event. Add another clientListener whihc handles the doubleClick event, make the clicked row the current row (see http://www.oracle.com/technetwork/developer-tools/adf/learnmore/56-handle-doubleclick-in-table-170924.pdf) and, well now comes the problem, make the current row editable. I don't know how to do this without the ActiveRowKey property.
    One other possible solution is a trick described here http://dstas.blogspot.com/2010/08/press-edit-button-to-make-table-row.html
    here a transient attribute is used to manipulate the isEditable() status of an attribute of the VO. This should do the trick, but is much more work.
    May be someone else knows a better solution.
    Timo

  • The double click is not working so cannot navigate. Do you think this is a fault or have the setting been changed

    I am new to apple and found that the double click on my MacBook air is not working so stuck on one screen and can not move. Is there another way other than double clicking to move between screens? Do you think this is a fault or just that the settings have been changed
    Thank you

    It is probably set too fast or too slow. Go to System Preferences from the Apple menu. Click on trackpad and adjust the double-click speed here.

  • Double clicking does not work in Yosemite.

    I just upgraded OS X snow leopard to Yosemite. Every thing seems to work fine, but i found that the double clicking not working. Every time i have to right click to open any file. If i double click a file then it appears like renaming the file. So please help me out guys...

    Thanks for the feedback. But. rather than doing that, you could try moving the com.apple.fibder.plist file from your original user's /Library/Preferences/ folder to the Desktop, OPTION-click and hold the Finder's Dock icon, and select RELAUNCH. That restores a default plist and may fix the problem. If so, delete the moved file and reset the Finder's preferences.

  • Double click does not work

    I used to be able to double-click on cfm files on my computer
    (XP pro) or right-click and select "Edit in Homesite+" and they
    would open perfectly in Homesite. (I'm running Homesite 5.5.)
    Now, for some reason, neither of those work -- when I try
    them, Homesite opens, but only shows a blank document (in the edit
    tab). The only way I can open files now is to do File--> Open
    from within Homesite, or via the Resource Tab i the left side.
    Any ideas why??
    Thanks,
    Tom

    I have something similar. Just did a rebuild on my machine
    with XP SP2, installed the Macromedia Studio 8 and then the
    HomeSite+ 5.5. Dreamweaver was installed first through the initial
    studio setup, and HomeSite+ after with a restart.
    My problem, I am able to open .js, .css. .cfm files fine, but
    when it comes to .htm/.html I cannot open them (through menu or
    right-click) locally. On my mapped drives to the multiple servers,
    I am able to open them. Some include the XML declaration at the
    top, some do not. However, when I open an HTML file locally, it
    opens HomeSite+ to a blank page. I even tested it by creating a new
    HTML document in HomeSite, writing some HTML layout, and saved it
    to my Desktop >> Closed HomeSite+ >> Right-click "Open
    With..." HomeSite+ and it comes up blank as a page named
    "Untitled1".
    I have made sure my extensions for html,htm, cfm are turned
    off in Dreamweaver and my HomeSite extensions are exactly how you
    have them. Ex:
    http://www.wilzdezign.com/support/homesite_support.gif
    Should I try a reinstall of HomeSite+ ?

  • Single Click versus Double Click Action not working

    Hello, having an issue with actions on symbols.
    I have symbols that when clicked play at a specific location on the timeline.
    Tthe first symbol uses single click (how I want it)
    The rest of the symbols also use single click, but when I test the animation they require double click (even though they are coded to be single click)
    Any ideas?
    Here is a testing location for the animation:
    http://www.contentx.com/DSU_discovery/MainAnim.html
    Ideally I want single click on all the symbols. The double click is confusing.
    Thanks!
    zack

    Hi, Zack-
    Marie nailed it without even looking at the project.    You are calling play() on a place that has a trigger that says stop().  The reason it plays the second time is rather complicated and has to do with the default play() behavior when there's a trigger, but the easy thing to do is to add one to your click event timecode.
    For instance: Presentation.click currently says:
    sym.play(22000);
    Just replace it with:
    sym.play(22001);
    The next easiest thing to do is to change your play call to use the optional "false" parameter to force it to not execute the trigger at 2200.
    sym.play(22000, false);
    http://www.adobe.com/devnet-docs/edgeanimate/api/current/index.html#symbolinstance
       - scroll down to "play" to read more about the API
    Hope that helps!
    -Elaine

  • Double Click No Longer Working

    I have a macbook pro w. retina. The problem I am having is that when I double click a file it dose not open. I can only open it if I click it with two fingers then click open. It use to work. How do I put it back where double click will work. Its not one of those problomes where I cant do what I need to do but it is getting tedious.
    never mind. Problom fixed

    Hi, have you checked these settings? system preferences>track pad
    system preferences>accessibility

  • HT6114 My double clicks no longer work after doing this update.  What happened?

    Double clicks in iPhoto no longer work after doing the update.  Trying to troubleshoot, but feeling dense in that I can't get this thing to work.  Any suggestions, please?

    Try this thread >   https://discussions.apple.com/message/23317566#23317566

  • Double Clicking does not work

    Hello, I am trying to help a friend out here with her mac, for some reason when she double clicks on a file or anything including the hard drive icon it will not open. I have never seen this before. What could it possibly be? any help would be much appreciated.

    Hi Nathan II, and a warm welcome to the forums!
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    The usual reason why updates fail or mess things up, is if Permissions are not fixed before & after every update, with a reboot... you may get a partial update when the installer finds it doesn't have Permissions to change one obscure little part of the OS, leaving you with a mix of OS versions.
    Some people get away without Repairing Permissions for years, some for only days.
    If Permissions are wrong before applying an update, you could get mixed OS versions, if Directory is the slightest messed up, who knows!
    If many Permission are repaired, or any Directory errors are found, you may need to re-apply some the latest/biggest updates.
    May even need to do an Archive and Install if you have room on the HD, but saves all your files and gives a new OS...
    http://docs.info.apple.com/article.html?artnum=107120
    I only use Software Update to see what is needed, then get them for real via...
    http://www.apple.com/support/downloads/
    That way I can wait a week or so, check the forums for potential problems, and get Permissions & such in order before installing.
    If all the above fails, then it appears to be time for an Archive & Install, which gives you a new/old OS, but can preserve all your files, pics, music, settings, etc., as long as you have plenty of free disk space...
    http://docs.info.apple.com/article.html?artnum=107120
    Just be sure to select Preserve Users & Settings.

  • Xcode 4 "option + double click" shortcut not working.

    Hello,
    I just updated to Xcode 4 and have encountered one minor but very frustrating problem. When I want to find out more information about an object in my program I used to be able to press option and double click and it would bring me to that object's documentation.
    In Xcode 4 when I do the same it takes me to an empty search result in the organizer's documentation tab. It seems as though I am missing the documentation on my computer or something.
    Has anyone else had this problem? Any ideas on how to fix it?

    Xcode 4 Forums:
    https://devforums.apple.com/community/xcode4
    Xcode 4 User Guide:
    http://developer.apple.com/library/ios/documentation/ToolsLanguages/Conceptual/X code4UserGuide/

  • New to this online version of photoshop and it's driving me nuts. i just want to double click and get working but it doesn't start

    how the hell do you use this program? i've signed up for the free trial, and last used photoshop 7 and cs 2, 3 but this is driving me crazy. i can't even open the program to use it. when i click the app icon that says it's installed nothing happens. i just go to the tutorials and overview. i just want to start working. what am i doing wrong?old

    There is no online version of Photoshop. Photoshop is downloaded and installed on your machine.  Follow the download instructions else you will be denied access  Adobe CC 2014 Direct Download Links – Creative Cloud 2014 Release | ProDesignTools

  • Magic mouse double click not operating. With iMac 24" and 10.6.8 bluetooth cannot discover the mouse and spins for ever, but mouse was working OK until 2 weeks ago. Now double click does not work, have to go to menu to open messages etc.. A nuisance.

    Magic mouse is not discovered by bluethooth software, but it worked OK until 2 weeks ago (10.6.8 and iMac 24). Now the double clik does not open messages, I must go to the file menu to do it. A nuisance. Closing a file takes exactly 2 or 3 seconds! Any idea? Mouse and batteries are OK and checked by retailer. Please help.

    Also using iMac 10.6.8
    My magic mouse works ok but I am getting the same message from Mouse prefs that no mouse is “discovered” and the progress gear spins forever. For the time being, at least, my mouse functions as expected.
    I have trashed mouse prefs and rebooted, but that did not solve the problem.

  • Right click doen't work anymore

    I installed Essbase 11.1.1.3 with the Excel Addin and Smart View. I have Office 2007 but I tried also Office 2003.
    The problem is that now the right click on a Excel page doesn't work anymore. It doesn't show the menu.
    Is this a normal behaviour?
    What I have to do? What is a possible solution?
    Thanks in advance.

    Essbase add ins - Options - global tab - enable secondary button (checked)

  • Double Click on Graphic in Map is not Working

    Hi,
    I had created an application where the user can click on map and a marker will be created and it stores x y values and stored in database and user can also drag the marker and place it to appropriate position and after the user drag and drop the marker we have a confirm button to send the x y values to database. I need to remove that confirm button and replace that with the double click where user double clicks the marker parameters should pass.
    For dragging marker i use mousedown event, but when i add doubleclick event its not working
    gr.doubleClickEnabled = true;
    gr.addEventListener(MouseEvent.DOUBLE_CLICK,registerComplaint);
    gr.addEventListener(MouseEvent.MOUSE_DOWN,mousedownGraphic);
    even when i comment the mouse down event double click on graphic marker is not working.
    Help me out in this task as i need to do urgently.
    Regards
    Arun Mohan

    While I can't possibly guess the cause your problem, there is an easy workaround for this.
    // record the time for the last mouse down
    private var _lastMouseDownTime:uint = new Date().time;
    // how fast the second mouse down needs to be to qualify for double click
    private var _doubleClickThreshold:uint = 500;
    // traces mouse down and double click
    private function mouseDown(e:MouseEvent):void {
                trace("mousedown");
                var mouseDownTime:uint = new Date().time;
                if(mouseDownTime - _lastMouseDownTime <= _doubleClickThreshold){
                    trace("doubleclick");
                _lastMouseDownTime = mouseDownTime;

Maybe you are looking for

  • Battery life issue related to display/graphics?

    Hi I bought a refurbished macbook pro last May. And the battery didn't even last 2 hours and half, which i found it weird since the macbook pro i had before(2007 model) had battery life of 3hours and half. a month later i bought it, i started having

  • 6 minute boot times

    Recently my MBP running Leopard 10.5.2 has been experiencing 6 minute boot times. The first screen with the apple lasts about 1 minute with the spinning circle and then the machine goes to a light blue screen and just sits for about five minutes. Aft

  • - Use of ResourceBundle without Locales

    Hello! I'm trying to use a ResourceBundle to store properties that arn't locale-specific - its a sort of look-and-feel type arrangement. The way more specific ResourceBundles inherit properties from more general ones would be really useful, but since

  • Role Import to ERM

    Hellow Eperts, I imported roles to the ERM from SAP ECC, SRM, CRM, BW systems. When I searched for the roles in the ERM system, all the roles where at the "Derive roles" level instead of "approval" level (or being comleted). Do you know why did it ha

  • ClassCastException at OAKeyFlexHelper.CreateFlex Error

    Hi, <br> When iam trying to call KeyFlexField.. Iam getting this error...Can anyone look into this please... <br><br><br><br> oracle.apps.fnd.framework.OAException: java.lang.ClassCastException: java.lang.String <br>      at oracle.apps.fnd.framework