Why no Right-Click or Context Menu over Artboards?

A context menu in the Artboard Panel would be much faster and more natural, right?
Is there a reason this is missing?

Not in CS6.  But yes, completely agree, probably even more essential there, as I'm guessing most people give layers more of a workout than they do Artboards.

Similar Messages

  • How to create a plugin to open a pop up on right click (using context menu) of any link on any site and display the link url in the pop up

    We are developing a Plugin with the specific purpose to display the URL to which any link redirect to on any website.
    This URL should appear in the pop up when the user right clicks and selects the "show URL" option in the context menu.
    Can some one please help us either to find such plugin (except firebug) or guide us how to develop such a plugin.

    Look for related articles here: <br />
    http://developer.mozilla.org/en/

  • Right-click finder context menu no longer works

    When I bring up the context menu on any file/folder in my finder or desktop, none of the actions work - such as "Move to Trash", "Get Info", "Duplicate". In debugging I removed MagicPrefs, thinking it might issues with the mouse.
    It works if I used shortcut keys, or drag files to the trash.
    I'm not sure what changed recently - any help would be greatly appreciated.
    -John

    I'm able to bring up the menu (by right-click or control-click), all the options are enabled (nothing grayed out) ... when I choose any of them, nothing happens. No UI error, nothing in any of the logs I looked at.
    I switched to a wire-mouse and got the same result. I used the track pad and got the same result.
    Another observation - the labels do work, I can label a file some color and then remove it.

  • Web report - Right click for context menu

    I believe SAP switched the way (left mouse button to right one) to get web report context menu as of BW 3.5. I am looking for the official documentation for it. I could not find it in online help
    http://help.sap.com/saphelp_nw04/helpdata/en/b2/e50138fede083de10000009b38f8cf/frameset.htm
    Does anyone knows where I can find it?
    Thanks in advance.

    I'm using Firefox 4.0.1 on Ubuntu 9.10 32 bit. Every time I can reproduce this bug, I'm able to revert it by killing the Adoble Flash process:
    Example:
    $ ps ax | grep libflashplayer.so
    2072 ? Rl 0:05 /opt/firefox/plugin-container /usr/lib/flashplugin-installer/libflashplayer.so -omnijar /opt/firefox/omni.jar 32533 true plugin
    2229 pts/3 S+ 0:00 grep libflashplayer.so
    $ kill 2072
    Plugin version: Shockwave Flash 10.2 r159
    Hope this helps to find the cause.
    Regards.

  • Right-click (custom context) fails in Flash Player 10.1

    With the release of Flash player 10.1 the right-click (custom context menu) functionality in the software simulations my company builds no longer functions properly.  All files are published at Flash 8 in AS 2.0.  After completing a right-click step the browser crashes (IE 8, Chrome, FF, and Safari).  Anyone having similar problems?
    We had issues with our right-click files when flash player 9 was released and implemented a solution (attached the custom menu to a movieclip vs. a button instance) from Adobe to correct the error...now that isn't working any longer.

    Thanks for the quick response! here is the file list (all file versions are 10.1.53.64):
    C:\Windows\SysWOW64\Macromed\Flash:
    Flash10h.ocx
    FlashAuthor.cfg
    FlashInstall.log
    flashplayer.xpt
    FlashUtil10h_ActiveX.dll
    FlashUtil10h_ActiveX.exe
    install.log
    NPSWF32.dll
    NPSWF32_FlashUtil.exe
    uninstall_plugin.exe
    C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerTrust:
    Adobe Search For Help.cfg
    AdobeFireworksCS5.cfg
    AdobeXMPFileInfo.cfg
    AdobeXMPFileInfoCS5.cfg
    kuler.cfg
    ServiceManager.cfg
    I also made sure all the addson are enabled. Still doesn't work.
    disabled hardware acceleration.Still doesn't work.
    the last resort is will try to update the GPU driver - as ʇɐb ɹəuəllıʍ said.
    I will keep you posted either way. thanks

  • ALV: Right Button Click and Context Menu

    Hi Experts,
    I have to implement an ALV which should act on a right button click and show a context menu.
    Is this possible? I found only events for "on_double_click" or "on_link_click" and is it possible to show a context menu?
    Thanks in advanced.
    Best regards,
    Markus

    Hello Markus
    The relevant events are:
    CONTEXT_MENU_REQUEST
    USER_COMMAND
    Have a look at my sample report ZUS_SDN_ALV_CONTEXT_MENU_1.
    *& Report  ZUS_SDN_ALV_CONTEXT_MENU_1
    *& <a class="jive_macro jive_macro_thread" href="" __jive_macro_name="thread" modifiedtitle="true" __default_attr="910750"></a>
    *& Thread: ALV: Right Button Click and Context Menu
    *& Flow logic of screen 100 (no screen elements; ok_code = GD_OKCODE)
    *&    PROCESS BEFORE OUTPUT.
    *&      MODULE STATUS_0100.
    *&    PROCESS AFTER INPUT.
    *&      MODULE USER_COMMAND_0100.
    REPORT  zus_sdn_alv_context_menu_1.
    DATA:
      gd_okcode        TYPE ui_func,
      go_docking       TYPE REF TO cl_gui_docking_container,
      go_splitter      TYPE REF TO cl_gui_splitter_container,
      go_cell_top      TYPE REF TO cl_gui_container,
      go_cell_bottom   TYPE REF TO cl_gui_container,
      go_grid1         TYPE REF TO cl_gui_alv_grid,
      go_grid2         TYPE REF TO cl_gui_alv_grid,
      gs_layout        TYPE lvc_s_layo.
    DATA:
      gt_knb1          TYPE STANDARD TABLE OF knb1,
      gt_knvv          TYPE STANDARD TABLE OF knvv.
    *       CLASS lcl_eventhandler DEFINITION
    CLASS lcl_eventhandler DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS:
          handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
            IMPORTING
              e_row
              e_column
              es_row_no
              sender,
          handle_context_menu_request FOR EVENT context_menu_request
                                                     OF cl_gui_alv_grid
            IMPORTING
              e_object
              sender,
          handle_user_command FOR EVENT user_command OF cl_gui_alv_grid
            IMPORTING
              e_ucomm
              sender.
    ENDCLASS.                    "lcl_eventhandler DEFINITION
    *       CLASS lcl_eventhandler IMPLEMENTATION
    CLASS lcl_eventhandler IMPLEMENTATION.
      METHOD handle_double_click.
    *   define local data
        DATA:
          ls_knb1      TYPE knb1.
        CHECK ( sender = go_grid1 ).
        READ TABLE gt_knb1 INTO ls_knb1 INDEX e_row-index.
        CHECK ( ls_knb1-kunnr IS NOT INITIAL ).
        CALL METHOD go_grid1->set_current_cell_via_id
          EXPORTING
    *        IS_ROW_ID    =
    *        IS_COLUMN_ID =
            is_row_no    = es_row_no.
    *   Triggers PAI of the dynpro with the specified ok-code
        CALL METHOD cl_gui_cfw=>set_new_ok_code( 'DETAIL' ).
      ENDMETHOD.                    "handle_double_click
      METHOD handle_context_menu_request.
    *   define local data
        DATA: lt_fcodes    TYPE ui_funcattr,
              ls_fcode     TYPE uiattentry,
              ls_func      TYPE ui_func,
              lt_func      TYPE ui_functions.
        "   Inactivate all standard functions
        CALL METHOD e_object->get_functions
          IMPORTING
            fcodes = lt_fcodes.
        LOOP AT lt_fcodes INTO ls_fcode.
          ls_func = ls_fcode-fcode.
          APPEND ls_func TO lt_func.
        ENDLOOP.
        e_object->disable_functions( lt_func ).
    "   Add new functions
        e_object->add_separator( ).
        CALL METHOD e_object->add_function
          EXPORTING
            fcode = 'XD03'
            text  = 'Call Transaction'.
        CALL METHOD e_object->add_function
          EXPORTING
            fcode = 'DETAILS'
            text  = 'Display Details'.
      ENDMETHOD.                    "handle_context_menu_request
      METHOD handle_user_command.
    *   define local data
        DATA:
          ls_knb1   TYPE knb1,
          ls_row    TYPE lvc_s_row,
          ls_col    TYPE lvc_s_col.
        "   NOTE: in case of CL_GUI_ALV_GRID the functions of a context menu
        "         are handled in method USER_COMMAND.
        CHECK ( e_ucomm = 'XD03'      OR
                e_ucomm = 'DETAILS' ).
        CALL METHOD sender->get_current_cell
          IMPORTING
            es_row_id = ls_row
            es_col_id = ls_col.
        CASE e_ucomm.
          WHEN 'XD03'.
            READ TABLE gt_knb1 INTO ls_knb1 INDEX ls_row-index.
            SET PARAMETER ID 'BUK' FIELD ls_knb1-bukrs.
            SET PARAMETER ID 'KUN' FIELD ls_knb1-kunnr.
            CALL TRANSACTION 'XD03' AND SKIP FIRST SCREEN.
          WHEN 'DETAILS'.
      "       NOTE: only for the sake of simplicity the event handler method
            "             is called
            CALL METHOD lcl_eventhandler=>handle_double_click
              EXPORTING
                e_row  = ls_row
                sender = go_grid1.
          WHEN OTHERS.
        ENDCASE.
      ENDMETHOD.                    "handle_user_command
    ENDCLASS.                    "lcl_eventhandler IMPLEMENTATION
    START-OF-SELECTION.
      SELECT        * FROM  knb1 INTO TABLE gt_knb1
             WHERE  bukrs  = '1000'.
    * Create docking container
      CREATE OBJECT go_docking
        EXPORTING
          parent                      = cl_gui_container=>screen0
          ratio                       = 90
        EXCEPTIONS
          OTHERS                      = 6.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Create splitter container
      CREATE OBJECT go_splitter
        EXPORTING
          parent            = go_docking
          rows              = 2
          columns           = 1
    *      NO_AUTODEF_PROGID_DYNNR =
    *      NAME              =
        EXCEPTIONS
          cntl_error        = 1
          cntl_system_error = 2
          OTHERS            = 3.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Get cell container
      CALL METHOD go_splitter->get_container
        EXPORTING
          row       = 1
          column    = 1
        RECEIVING
          container = go_cell_top.
      CALL METHOD go_splitter->get_container
        EXPORTING
          row       = 2
          column    = 1
        RECEIVING
          container = go_cell_bottom.
    * Create ALV grids
      CREATE OBJECT go_grid1
        EXPORTING
          i_parent          = go_cell_top
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Set event handler
      SET HANDLER:
        lcl_eventhandler=>handle_double_click         FOR go_grid1,
        lcl_eventhandler=>handle_context_menu_request FOR go_grid1,
        lcl_eventhandler=>handle_user_command         FOR go_grid1.
      CREATE OBJECT go_grid2
        EXPORTING
          i_parent          = go_cell_bottom
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Display data
      gs_layout-grid_title = 'Customers'.
      CALL METHOD go_grid1->set_table_for_first_display
        EXPORTING
          i_structure_name = 'KNB1'
          is_layout        = gs_layout
        CHANGING
          it_outtab        = gt_knb1
        EXCEPTIONS
          OTHERS           = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      gs_layout-grid_title = 'Customers Details (Sales Areas)'.
      CALL METHOD go_grid2->set_table_for_first_display
        EXPORTING
          i_structure_name = 'KNVV'
          is_layout        = gs_layout
        CHANGING
          it_outtab        = gt_knvv  " empty !!!
        EXCEPTIONS
          OTHERS           = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Link the docking container to the target dynpro
      CALL METHOD go_docking->link
        EXPORTING
          repid                       = syst-repid
          dynnr                       = '0100'
    *      CONTAINER                   =
        EXCEPTIONS
          OTHERS                      = 4.
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * NOTE: dynpro does not contain any elements
      CALL SCREEN '0100'.
    * Flow logic of dynpro (does not contain any dynpro elements):
    *PROCESS BEFORE OUTPUT.
    *  MODULE STATUS_0100.
    *PROCESS AFTER INPUT.
    *  MODULE USER_COMMAND_0100.
    END-OF-SELECTION.
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS_0100'.  " contains push button "DETAIL"
    *  SET TITLEBAR 'xxx'.
    * Refresh display of detail ALV list
      CALL METHOD go_grid2->refresh_table_display
    *    EXPORTING
    *      IS_STABLE      =
    *      I_SOFT_REFRESH =
        EXCEPTIONS
          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.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE user_command_0100 INPUT.
      CASE gd_okcode.
        WHEN 'BACK' OR
             'END'  OR
             'CANC'.
          SET SCREEN 0. LEAVE SCREEN.
    *   User has pushed button "Display Details"
        WHEN 'DETAIL'.
          PERFORM entry_show_details.
        WHEN OTHERS.
      ENDCASE.
      CLEAR: gd_okcode.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  ENTRY_SHOW_DETAILS
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM entry_show_details .
    * define local data
      DATA:
        ld_row      TYPE i,
        ls_knb1     TYPE knb1.
      CALL METHOD go_grid1->get_current_cell
        IMPORTING
          e_row = ld_row.
      READ TABLE gt_knb1 INTO ls_knb1 INDEX ld_row.
      CHECK ( syst-subrc = 0 ).
      SELECT        * FROM  knvv INTO TABLE gt_knvv
             WHERE  kunnr  = ls_knb1-kunnr.
    ENDFORM.                    " ENTRY_SHOW_DETAILS
    Regards
      Uwe

  • Right Click Pop up Menu in internet Explorer

    i want to add my own options in the default context menu of the internet explorer which appear when we right clik the mouse. i want to show the customized right click pop up menu in my web application not just on my own machine by editing the registry entries.
    if any one know some javascipt or some else technique, please help me
    Thanks
    Waseem Aslam

    Dont post twice...
    also you should checkout a Javascript forum to get your answer

  • Update to 6.01 has resulted in extreme slow down when I right click for context menus? Tried usual fixes (new profile, cleaned cache).

    After updating to latest version for Osx, I noticed that when right clicking for context menus, enormous lag occurs. It has made it almost impossible to be productive. Any ideas?

    Thanks for your response and sorry for the delay in my rep[ly.
    Today I tested the Linux-64 version (Firefox 33) from the link you suggested. There weren't any install instructions or a README, but based on the file-system layout I guess it just needs to be extracted. I downloaded and extracted to my Downloads directory and ran the executable via command-line as my user (not root).
    Firefox popped up right away, but it was not usable for at least 30s. It asked to import from Chrome which I did (no errors). Every click on the top bar (address bar search, buttons to the right of search, bookmarks toolbar) resulted in a dimming un-dimming sequence of @7s, after which nothing (couldn't focus in the address bar, occasionally the bookmark menu would appear, but was not functional). Basically, it's un-usable.
    As I mentioned in an earlier reply, I am having similar problems with Komodo which is apparently also Mozilla based.
    Are there any logs I could tail and post that might help track this down?
    Not sure what to do at this point.

  • I'm trying to export a raw image from lightroom 5.6 to Photoshop cc 2014 2.1.  I right click to export menu in lightroom as I've always done to export to Photoshop.  Photoshop opens, but it can't open file, window opens to find a file to open.  I'd like t

    I'm trying to export a raw image from lightroom 5.6 to Photoshop cc 2014 2.1.  I right click to export menu in lightroom as I've always done to export to Photoshop.  Photoshop opens, but it can't open file, window opens to find a file to open.  I'd like this to export my lightroom images to edit in photoshop as it has always been able to do for me.  What fix do you recommend?

    Hi Ashley Clavette,
    The Initial view setting works perfectly when the file is opened in Acrobat after setting the desired Initial View.
    When you upload the file onto Wordpress, and view it on that website in the browser...it might be using a different pdf handler program which might be causing this issue ( it would be helpful, if you could provide the screenshot) , however when you download the pdf again from wordpress server...and open in Acrobat/Reader...then what  exactly happens ?  Does the pdf opens in the desired Initial View setting?
    Rahul

  • TO ADD A CUSTOM ENTRY IN RIGHT CLICK POP UP MENU IN ORACLE HRMS FLEX FIELDS

    We are building a custom help for Oracle HRMS. For this I need to add a custom Help entry in the right click pop up menu. I did this by adding the code APP_POPUP.INSTANTIATE('POPUP10','Custom Help',TRUE,'LINE') in the APPCORE lib. After this change the right click menu shows the new entry 'Custom Help' when user right clicks in any of the form but the new entry Custom Help' doesn't show up when I right click in flexfields. I am sure I need to do some thing else for flex fields.. Does any one have any idea on this ?

    You have to refer to the Current Form, Current Block , Current Item so that the menu appears only in the form where you want to see.

  • Combine supported files in acrobat missing in acrobat x pro when I right click drop down menu

    combine supported files in acrobat missing in adobe x pro when I right click drop down menu also Convert to Adobe PDF is missing too.  The open with & share with options are gone too when I right click files.  My computer crashed & I had to have the motherboard replaced.  The tech store put some of my programs back on my compter but not sure how or if they did stuff correctly.  Need help fixing my problem becasue I use this all the time.  Thanks

    I'm having the same issue. I got a new PC, insalled Acrobat X pro and when I right click on an Office file, I could not combine or convert Office files to PDF. I upgraded to Acrobat XI and still no fix. I triled to convert or combine office files to PDF from within Acrobat and I get an error message saying "Acrobat does not support the conversion of one or more of your files to PDF. Please remove these files or go to Settings and choose the PDF Portfolio option".
    I've tried to convert or combine Office 2003, 2007, 2010 and 2013 files and none work. The weird thing is that the option shows up for Excel .csv files. Even more werid is that I have the PDF tabs showing in the Office applications.
    I contacted Adobe support via chat and they were unable to help. I was directed here, so any help would be great.
    Thanks.

  • Why, when right click on some link the options "OpenLink in New Tab" and "Open Link in New Window" are exchanged?

    Why, when right click on some link the options "OpenLink in New Tab" and "Open Link in New Window" are exchanged?

    Dear friend, the problem is that there is exchange of something very useful from users an this break them habits! I'm not interested of forced using of tools! Of course it's good that there is a tool to solve my problem, but this action make me unhappy.
    last words - this is the way of losing users.

  • Unable to use right click on Context in a view..........

    Hi,
      I'm unable to use right click for creating nodes and attridbutes in a 'Context' of a view. Where as I can right click on 'RootUIElementContainer' and create elements. Can anybody have the idea to resolve this.
    Thanks.
    Nag.

    Thanks for the reply. I'm unable to get right click on context in change mode. I have been working without any problems for a quite few applications. But now I find that right click doesnot work on context.

  • Disable Right Click Pop-Up Menu on adobe reader activex control

    Hi,
    I am using adobe reader activex control on my vb.net window based application.May i know how can i disable right click pop-up menu on adobe reader activex control?I don't want search function from right click pop up menu.
    Please help me.
    Thanks and best regards,
    Ko Ko

    Hi,
    I would disable the right click.....
    perhaps you can call a javascript function to display a table of options on your jsp with a layer:
    function myOptions( )
    var fullText =      "<table width='278'>" +
         "<tr bgcolor='#FF9900'>" +
         "<td colspan='3'> <b><font color='#000000' face='MS Sans Serif' size='3'>Option1</font></b></td>" +
         "</tr>" +
    "<tr>" +
    "<tr bgcolor='#FF9900'>" +
         "<td colspan='3'> <b><font color='#000000' face='MS Sans Serif' size='3'>Option2</font></b></td>" +
         "</tr>" +
    "<tr>" +
         " <td height='35'></td>" +
         " <td colspan='2' height='35'>" +
         "     <div align='left'>" +
    " <br>" +
    "     <p><font color='#FF0000'>Select option's from above.</font></p>" +
    "</div>" +
         "</td>" +
              "</tr>" +
    "</table>";
    editLayer( fullText, lyr );
    showLayer( lyr );
    editLayer and showLayer will display table on JSP....remeber to call the layer "1yr"
    // Show the visible layer that is passed into the function
    function showLayer( _obj ){
    if ( ns() ){
         _obj.visibility = "show";
    } else {
         _obj.style.visibility = "visible";
    // Write the layer with the text in the parameters
    function editLayer( txt, obj ){
    var doc;
    if ( ns() ) {
         doc = self.document._obj.document;
         doc.write( _txt );
         doc.close();
    } else {
         doc = _obj;     
         doc.innerHTML = _txt;     
         doc.document.close();     

  • When ever I right click on the menu item "open containing folder" in the downloads window, it only opens the 'My Documents' folder. It never goes any farther than that. How do I fix this?

    Open 'Tools----downloads'.---Right click on any downloaded file that is available in the list.---click on 'Open Containing Folder'
    Results in opening the My documents folder.
    Not in the folder I have listed in Tools ---Options --- General---downloads---Save files to:

    You can use this extension to modify the menu.
    *Menu Editor: https://addons.mozilla.org/firefox/addon/menu-editor/
    You can also achieve this with code in the userChrome.css file below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #context-sendimage,
    #context-sendvideo,
    #context-sendaudio { display:none!important; }</nowiki></pre>

Maybe you are looking for