Editable field sprites capture a mouesdown on right click

I have editable field members and am using buddy to make a
right click copy/paste menu - problem is that editable field
sprites seem to think that a rightmousedown is also a left
mousedown. This completely breaks my behaviour. Anyone ever come
across this before? I'd rather not replace all my field members
with text members as thats another pile of re-scripting...
Thanks

That is weird! I had never noticed that. It only seems to
happen if
the #field member is editable. If the SPRITE is editable
instead (in
the Property Inspector on the Sprite tab), then there is no
problem.
That should be an easier fix than switching over to #text
members at least.

Similar Messages

  • Can't open new tab by going to file/new tab (or CTRL+T or clicking on the new tab field). Only way is to right click on a link and choose open in new tab.

    Can't open new tab by going to file/new tab (or CTRL+T or clicking on the new tab field). Only way is to right click on a link and choose open in new tab.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Trying to donwload ebook that is in digitial editions to my sony ereader. when i right click on picture of book the drop down window does not have "copy to computer/device??

    whne I try to download a book that I have in my adobe digitial editions library, and I right click on the picture of the book, the window that drops down doe snot have " copy to computer/device" I have a sony ereader

    See these threads for some possible solutions:
    Bluetooth and 10.7
    Bluetooth speaker error

  • ALV  issue - capturing user changes in editable fields using custom button?

    Hi,
    I created a custom button in ALV tool bar.   And also in my ALV grid I have couple of fields Editable option. User can change values for these 2 fields.
    My question is -
    After changing values for these editable fields(more than 1 record)  , user will click on custom button and then I have to update all the user changed values in to my internal table(lt_tab)  and then I have to process logic.
    Problem is when user click on Custom button in ALV tool bar it is not having the changed values in lt_tab table.
    Only when user clicks  some thing on ALV grid records or fields then it is getting all the changed values in to lt_tab.
    Can any one tell me how I can get changed values when user clicks on custom button?
    1. Can we place custom button in ALV Grid? instead of ALV tool bar? 
    or
    How I can capture user changes when they click on custom button?
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    TABLES
          T_OUTTAB                          = lt_tab
    Please check this logic-
    CASE r_ucomm.
        WHEN '&IC1'.
    - It_tab  having all changed field values
      WHEN 'custom button'.
          lt_tab  - not having any changed values - showing all initial lt_tab values.
    I highly appreciate your answers on this.
    Thanks.
    Rajesh.

    Hi,
    Use this code, its working:-
    *&      Form  ALV_DISPLAY
    *       SUB-ROUTINE ALV_DISPLAY IS USED TO SET THE PARAMETERS
    *       FOR THE FUNCTION MODULE REUSE_ALV_GRID_DISPLAY
    *       AND PASS THE INTERNAL TABLE EXISTING THE RECORDS TO BE
    *       DISPLAYED IN THE GRID FORMAT
    FORM alv_display .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
    *     I_INTERFACE_CHECK                 = ' '
    *     I_BYPASSING_BUFFER                = ' '
    *     I_BUFFER_ACTIVE                   = ' '
         i_callback_program                = v_rep_id       " report id
         i_callback_pf_status_set          = 'PF'           " for PF-STATUS
         i_callback_user_command           = 'USER_COMMAND' " for User-Command
    *     I_CALLBACK_TOP_OF_PAGE            = ' '
    *     I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
    *     I_CALLBACK_HTML_END_OF_LIST       = ' '
    *     I_STRUCTURE_NAME                  =
    *     I_BACKGROUND_ID                   = ' '
    *     I_GRID_TITLE                      =
    *     I_GRID_SETTINGS                   =
         is_layout                         = wa_layout      " for layout
         it_fieldcat                       = it_field       " field catalog
    *     IT_EXCLUDING                      =
    *     IT_SPECIAL_GROUPS                 =
         it_sort                           = it_sort        " sort info
    *     IT_FILTER                         =
    *     IS_SEL_HIDE                       =
    *     I_DEFAULT                         = 'X'
         i_save                            = 'A'
         is_variant                        = wa_variant     " variant name
    *     IT_EVENTS                         =
    *     IT_EVENT_EXIT                     =
    *     IS_PRINT                          =
    *     IS_REPREP_ID                      =
    *     I_SCREEN_START_COLUMN             = 0
    *     I_SCREEN_START_LINE               = 0
    *     I_SCREEN_END_COLUMN               = 0
    *     I_SCREEN_END_LINE                 = 0
    *     I_HTML_HEIGHT_TOP                 = 0
    *     I_HTML_HEIGHT_END                 = 0
    *     IT_ALV_GRAPHICS                   =
    *     IT_HYPERLINK                      =
    *     IT_ADD_FIELDCAT                   =
    *     IT_EXCEPT_QINFO                   =
    *     IR_SALV_FULLSCREEN_ADAPTER        =
    *   IMPORTING
    *     E_EXIT_CAUSED_BY_CALLER           =
    *     ES_EXIT_CAUSED_BY_USER            =
        TABLES
          t_outtab                          = it_final      " internal table
       EXCEPTIONS
         program_error                     = 1
         OTHERS                            = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " ALV_DISPLAY
    *&      Form  USER_COMMAND
    *       SUB-ROUTINE USER_COMMAND IS USED TO HANDLE THE USER ACTION
    *       AND EXECUTE THE APPROPIATE CODE
    *      -->LV_OKCODE   used to capture the function code
    *                     of the user-defined push-buttons
    *      -->L_SELFIELD   text
    FORM user_command USING lv_okcode LIKE sy-ucomm l_selfield TYPE slis_selfield.
    * assign the function code to variable v_okcode
      lv_okcode = sy-ucomm.
    * handle the code execution based on the function code encountered
      CASE lv_okcode.
    * when the function code is EXECUTE then process the selected records
        WHEN 'EXECUTE'. "user-defined button
    * to reflect the data changed into internal table
          DATA : ref_grid TYPE REF TO cl_gui_alv_grid. "new
          IF ref_grid IS INITIAL.
            CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
              IMPORTING
                e_grid = ref_grid.
          ENDIF.
          IF NOT ref_grid IS INITIAL.
            CALL METHOD ref_grid->check_changed_data.
          ENDIF.
    * refresh the ALV Grid output from internal table
          l_selfield-refresh = c_check.
      ENDCASE.
    ENDFORM.
    This will reflect all the changes in the internal table. Now you can include your logic as per your requirement.
    Hope this solves your problem.
    Thanks & Regards,
    Tarun Gambhir

  • Editing issue with DVCpro 50, blak lines right and left

    Hello to everyone, I am editing in native DVCpro 50. In the canvas I get a thin black line left and right, so the footgae is not completely covering the canvas view. Should I resize the footgae a little bit to match this?
    My problem is that I am bringing pictures to the project so I dont know if I should adjust them to the cambas or to the slightlt smaller fame of the footage, this would be a hard work to make everything equal
    Thanks for your help

    If this is for TV, the lines will be outside the safe action area anyway, so they will not be seen.
    You will see them on a computer though.
    If you really need to zoom in slightly, do it when your edit is locked to one clip.
    Right click that clip in the timeline and copy it.
    Highlight all the other clips, right click and go to Paste Attributes then select Basic Motion.
    That will change all the others to match.

  • SAP BW 7 - Call URL from Right Click Menu

    Is it possible to make a http call from the right click menu? I know this was possible in 3.5, but the new code seems to have limited my ability to edit the options that appear when I right click on a field and I need to make a call out to another web server for some external data. Is this possible?
    Any information that anyone has about a potential work around would be great!!
    Thx.

    Kristine,
    Have you tried using RRI (Transaction RSBBS)? You can call URL , pass values etc.
    -Saket

  • I have a new Airbook and I cannot seem to right click to copy, paste and the other options?

    Hey Everyone... Can someone please tell me how to get my right click working on my trackpad?  On my mac book pro it works but on this airbook nothing happens when i right click.. to do any of my wanted options I have to highlight then go to the edit menu.!
    Thanks Tammy

    you can right click wither by Clicking or tapping with two fingers, or clicking on the bottom right corner of the trackpad. you can change this by going into System Preferences, Track Pad, Point & Click, Right Click.
    alternatively you can always do a normal click while holding down Control.

  • [SOLVED]problems doing things on DE as admin, right click permissions

    there are a few things that seem counter productive to having a DE, im using KDE and when i want to edit file permissions through the DE i right click on a file, properties, permissions tab, if i dont have permissions, then i cant edit permissions.  then i have to chmod, or chown in the console just to do what i was trying to do in my DE. 
    am i just going through a paradigm shift having been using  winows wayyyy tooo long?  or is there a way to get this to pop up an administration password so i can continue the operation in the DE, rather than have to switch out to the console each time?
    i think what im trying to do here is when im in a DE, i want control as a desktop user, and password prompt antyhing that is ROOT, but atleast have access to it, and not have to back into a shell everytime i have to make config changes.    or is this just the windows tricks my mind is playing on me?
    Last edited by wolfdogg (2011-05-28 20:25:26)

    ConnorBehan wrote:I for one think the expectation that users will happily say "oh shit, I opened this file manager as the wrong user, so I guess I better close it, then open it again as the right user and navigate all the way back to this directory and THEN do what I want to do"
    lol, that about explains what i am experiencing, good way to put it.
    i think as i am mentioning in this post https://bbs.archlinux.org/viewtopic.php?id=119747 that there should be a prompt for a password, similar to when you add a share and the "Run as root -KDE su" password prompt comes up.  i think this should pop up for things like when your in file editor and try to edit a conf file as a standard user, and forget that your just a standard user until after you spent your time doing the edits, and when your trying to set permissions for things that you dont have permission for. 
    is there a setting, or a way to set this up to catch the action and prompt you?
    i do see what your saying that its habit after you do it, i was just thinking that having to form that habit is counter productive to a DE, since a DE stands for "i want to use my mouse" and not "i want to type more"  and look at the keyboard when its half-dark and look for some hotkeys, usually after midnight i get like this. 
    personally, i get lazy at times, after spending a rigorous amount of time patiently coding, and typing 45-80 wpm hours on end, and at the end of the day, i want some mouse action, lol.
    Last edited by wolfdogg (2011-05-28 05:35:26)

  • Can I use right click without disabling accessibility?

    I'm using Captivate 5. 
    Is there a way that I can capture or use the right click without disabling the "enable accessibility" feature? 
    I am producing resources for disabled students so would prefer to keep the accessibility on. 
    Many thanks in advance
    Helen

    Unfortunately no, not as far as I am aware.

  • To capture the selected rows along with edited field contents in alv report

    Dear All,
             I do have requirement where, in alv report output one field is editable and need to save the content of the edited field along with the selected rows.
             For example If there are 10 records displayed in the alv output with 20 fields.
    Out of this 20 fields one field (say XYZ) is editable. Also i have already created a new pushbutton (say ABC) on alv output. Now in the alv output if we maintain some value in the field (XYZ ) for the 2nd and 4th record and select this two records, and when clicked on the pushbutton (ABC) it has to update the DB table.
          I am using the Func Module  'REUSE_ALV_GRID_DISPLAY'. 
          Your early reply with sample code would be appreciated.
    Thanks in Advance.

    HI Naveen ,
    There is an import parameter "i_callback_program" in the function module,
    plz pass the program name to it.
    Capture the command by passing a field of type sy-ucomm to "I_CALLBACK_USER_COMMAND ".  Check the returned command and
    and program a functionality as desired.
    u can try the event double_click or at line selection. there u can use READLINE command to c if the line has been selected.
    In case it is , process the code segment.
    Regards
    Pankaj

  • Make simultaneously or sequentially moveable and editable fields or text sprites in movie.

    I am having a bit of a problem with creating field or text sprites that are both editable and moveable. I want a user to be able to enter text into the sprites and move them around on the stage to serve as labels for schematics they are making. I can easily make them moveable or editable, but when trying to do both one property interferes with the other. I have been using various combinations of the properties on the mouseenter, mouseleave, and mousedown handlers. One version of my non-workable efforts are below. Seems I can move a sprite but once editable gets focus can't move it anymore.  Any ideas?
    rod
    property spritenum
    on mouseenter me
      sprite(spritenum).moveablesprite = true
    sprite(spritenum).editable = false
    end
    on mouseleave me
      sprite(spritenum).editable = false
      sprite(spritenum).moveablesprite = false
    end 
    on mousedown me
      sprite(spritenum).moveablesprite = true
      sprite(spritenum).editable = false
    end
    on mouseup me
      sprite(spritenum).moveablesprite = false
      sprite(spritenum).editable = true
    end

    Just set your text properties in the property inspector and attach a drag sprite behavior.
    --  Drag sprite
    property  sp  -- this sprite
    property  pStartLoc  --  sprite location upon mouseDown
    property  pMouseStart  -- mouse location upon mouseDown
    property  pMoving  -- flag for enterFrame. True/False
    on beginSprite me
      sp = sprite(me.spriteNum)
      pMoving = false
    end beginSprite
    on mouseDown me
      pStartLoc = sp.loc
      pMouseStart = _mouse.mouseLoc
      pMoving = true
    end mouseDown
    on mouseUp me
      pMoving = false
    end
    on mouseUpoutside me
      pMoving = false
    end
    on enterFrame me
      if not pMoving then exit
      deltaMouse = _mouse.mouseLoc - pMouseStart
      sp.loc = pStartLoc + deltaMouse
    end enterFrame

  • Unable to capture context attributes of editable fields

    Hello All,
    In my application, there are two trans. containers. One holds set of material info fields at top and in the bottom the container holds a table with quantity data of the material.
    The material info container has a edit button and 3 fields are editable and saved from the container. In the bottom container there is button to move to next material. Before moving, I check if any data is changed in material info container and display pop up to save it.
    Now, when i click the save button in the mat info container the ediatbel fields data is passed and gets saved. But, when the same save method is called from the confirmation pop up in the bottom container table the editable fields data is not passed. No idea on the reason behind this behaviour.
    The code used to retrieve the data is      
    nd_vipos_mat_master->get_static_attributes(
                IMPORTING
                  static_attributes = lr_vipos_mat_info ).
    Kindly assist.
    Regards,
    Sharath

    Hi ,
    When you are saving data using popup, you must have subscribed an action with popup button. I hope it is not the same action which you are using with SAVE button.
    You can try subscribing the same action for popup which you used in Save button. Ex: if on saving directly, you are calling action "OnSave" and from popup, the triggered action is "OnActionSaveFrom Popup".  So dont use this new action while subscription with popup button. use "OnSave" with popup button also.
    if it is working with save button, it should be fine with popup also.
    Thanks
    Vishal

  • Conditional BACK SPACE handling (only ADF Editable fields)

    Hi,
    On January 2011, Franck posted an article on Code Corner (Using JavaScript in ADF Faces Rich Client Applications).
    I have a similar problem as the one described on page 33 (Keyboard event handling).
    I implemented the example provided by Franck and it works fine.
    I'am able to disable the BACK SPACE Key in our application.
    But this fix created another issue : we are unable to use the BACK SPACE key in an InputText for example. We have to use the Delete Key.
    There is a note in Frank's article talking about conditional. note from the article :
    Note: Keyboard shortcuts that should invoke server-side functions conditionally can be intercepted in the callback handler. The callback function would return false for events that should be further handled by the browser.
    How can id implemente this requirement ?
    Thanks.

    Hi Franck,
    I tried this code.
    But i want to let the browser handle the BACK SPACE key on for Editable fields on the screen.
    getActiveComponent() returns last field that had the focus even when i click anywhere else on my screen (document).
    when i click on an empty space on the screen (af:document) or a readOnly field, getActiveComponent() doesn't return these components Id but the last active component i think.
    This is my problem right now. Your example works fine for unconditional BACK SPACE handling.
    But i can't use the BACK SPACE in an input text component to remove any entry.
    How to force the system to return the Id of any component on the screen ?
    Maybe i should capture the mouse click event and get the source of this event ?
    Thanks for you help.

  • Interactive report with checkbox and editable field

    Hi,
    For a project I'm working on I need to create a interactive report in Apex 3.2 with the ability to select lines and to modify one of the columns in the report.
    To do this, I started off by adding these two fields to the selection query of my IR:
    apex_item.checkbox(1, product_number) cb
    and
    apex_item.text (2,QTY_TO_ORDER) QTY_TO_ORDER
    cb is the checkbox files, and QTY_TO_ORDER is the editable field.
    That worked like a charm and I got my two fields in the report.
    To process the values, I added this page process, wich for now should only store the "product number" and "QTY_TO_ORDER" fields in a table.
    BEGIN
    FOR i in 1..APEX_APPLICATION.G_F01.count LOOP
    insert into mytmptable values (APEX_APPLICATION.G_F01(i),APEX_APPLICATION.G_F02(i));
    END LOOP;
    commit;
    end;
    However, this doesn’t work the way I want it to work. When I check the checkboxes of two rows, it will store two rows with the right product numbers, but it will take the top two QTY_TO_ORDER field of the table regardless of which ones are checked. I was able to solve this problem, by adding a rownum to the query and using the rownum as the value for the checkbox. Since I still need the product_number and qty_to order fields I made them both text fields.
    I changed my page process to:
    BEGIN
    FOR i in 1..APEX_APPLICATION.G_F01.count LOOP
    insert into mytmptable values (APEX_APPLICATION.G_F02(APEX_APPLICATION.G_F01(i)),
    APEX_APPLICATION.G_F03(APEX_APPLICATION.G_F01(i)));
    END LOOP;
    commit;
    end;
    This seemed to solve the problem, and I now got the right values in the table, unless I used sorting in the report... As soon as I sorted the report in a way different than by rownum, I got the wrong values in the table. The reason for this is of course that my insert just selects the nTh row from the table, and my rownums aren't dynamic.
    I've found a lot of examples on the internet using '#ROWNUM#' in the selection, which should dynamically generate a rownum in the report. This seems to work in normal report, but in a interactive reports, the literal values '#ROWNUM#' shows up.
    Is there any way to solve this issue?

    Hi,
    Try with 3 fields:
    apex_item.checkbox(1, product_number) cb,
    apex_item.text (2,QTY_TO_ORDER) QTY_TO_ORDER,
    apex_item.hidden(3, product_number) prod_no
    The hidden field should be display as a hidden column.
    Then your process can be:
    BEGIN
    FOR i in 1..APEX_APPLICATION.G_F01.count LOOP
    FOR j in 1..APEX_APPLICATION.G_F03.count LOOP
    IF APEX_APPLICATION.G_F01(i) = APEX_APPLICATION.G_F03(j)) THEN
    insert into mytmptable values (APEX_APPLICATION.G_F01(i),APEX_APPLICATION.G_F02(j));
    exit;
    END IF;
    END LOOP;
    END LOOP;

  • (non)Editable field on Myspace & Firefox 3.5/6

    Symptom: flash app has an editable field that becomes non-editable on Myspace, but only when accessing it with Firefox 3.5 or 3.6;
    What's more, it actually can be edited, as long as one right-clicks into the field.
    The app is made with Flash Pro CS5 and embedded on Myspace using AddThis, if that makes any difference.
    The same app behaves just fine in Chrome or IE8. All of these are on WinXP, in case that's at play.
    My skills with flash are limited, so I'm at a loss as to where things would go wrong.
    As these apps are also working just fine on other sites, I'm guessing this is very Myspace limited issue, but what?
    thanks,
    karoy

    I had the same problem.  Called HP support and that was useless.  They tried to help me restore to before the problem but the restore wouldn't work!  In the end they wanted me to restoer to factory settings.  All because they haven't bothered to test their update with some pretty standard software (firefox).  I always get the same response from their service folks - "you are using software that is not from HP so we can't really help you".  Well, yeah - uh, I occassionally do use software on my laptop that is not made by HP.
    I had high hopes for moving from Dell to HP, but am just disappointed over and over again.  Perhaps my expectations were too high, but never the less, I will not buy an HP laptop again.

Maybe you are looking for

  • Error reading data from Infocube using shell script.

    Dear all , I am facing a problem while reading data from an infocube using a shell script. The details are as follows. One of the shell script reads the data from the infocube to extract files with the values. The tables used for extraction by the sh

  • Write file to directory

    Hi, all the while i am able to write file to different apps directories... just recently i asked Basis to create one more directory for which i am not able to write file... I tried to put the same file in older directory, which i am able to do. i tri

  • Syncing movies on iPad without removing music and books?

    I have an iPad loaded with music, books, apps and some movies, which I normally sync to my iMac. I am travelling and have a laptop with some movies that I want to sync to my iPad. Even if I just select the movies though and don't select any other syn

  • Function module to get the BOM details for a material-plant combination

    hi Is there any function module to get the BOM details such as         BOM Usage       -STLAN         Alternative BOM -STLAL         Items                -POSNR         Required Quantity-EMENG         Resulting Quantity-MENGE         Unit of measure 

  • Keynote 6.5 constant freeze and crash

    I am running OS X 10.10 on an 2009 Apple MacBook Pro 17in 2.66GHz Intel Core 2 Duo with 8gb ram. For the most part, everything runs really well. I use Logic Pro, Final Cut Pro, and more daily with no issues. However, Keynote is causing me HUGE issues