Select multiple suggested faces

So far I'm really happy with photos. However, I can't figure out if there is a way to select multiple "suggested faces" to drag and drop under whoever's name it goes under. There are a bunch of pictures of my son showing up and I can drag and drop them one at a time, but would like to select all of them at one time. Any ideas? I tried command, option, right click...

I have the same issue - it's really, really cumbersome to add multiple photos to faces if the facial recognition software hasn't already identified the shots as the same face. Being able to select multiple suggested faces from the strip at the bottom would be a huge time and frustration saver.

Similar Messages

  • How to name multiple suggested faces?

    Hi there!
    I'm using Photos on OS X Yosemite 10.10.3. I'm trying to name all the faces Photos show me but, i'm spending much time on it because i can't name (or ignore) multiple faces at once. I tried using Command, Shift, Control and Option keys to select multiple faces, but nothing happens.
    Is this feature present on Photos? If it's not, i'd like to recommend it!
    Thanks!

    How to change the main profile pic for each face.
    Click on the faces icon to expose all the faces for that person. Select the one you prefer and right-click on it. Choose 'Make Key Photo'
    No idea on No.2
    Not possible on No. 3. Photos has very very few batch change options.

  • H:datatable..select multiple rows

    Hi all, i'm trying to select multiple rows but couldn't do it.. can you please help me to solve this trouble?
    Here the code..
    kbankMainView.jsp
    function doCount() {
              button = document.getElementById('formProcedurelist:buttonCount');
              button.click();
    <h:commandButton id="buttonCount" style="visibility:hidden" action="#{MainViewBean.getSelectedItems}"></h:commandButton>
    <h:dataTable id="tableProcedurelist" value="#{MainViewBean.procedureList}" rendered="#{!empty MainViewBean.procedureList}" var="procedure" border="1" headerClass="heading" columnClasses="col0,col1,col2,col3,col4,col5">
                                <h:column>
                                     <f:facet name="header">
                                       <f:verbatim>Sel.</f:verbatim>
                                  </f:facet>
                                     <h:selectBooleanCheckbox value="#{MainViewBean.selectedIds[procedure.idProcedura]}" style="cursor:pointer" onclick="javascript:doCount()"/>
                                </h:column>Here my bean..
    MainViewBean
    private List<TKbankProcedure> selectedProcedureList;
    private Map<Integer, Boolean> selectedIds = new HashMap<Integer, Boolean>();
    private ArrayList<TKbankProcedure> procedureList;
    public void getSelectedItems() {
             // Get selected items.
             selectedProcedureList = new ArrayList<TKbankProcedure>();
            for (TKbankProcedure procedure : procedureList) {
                if (selectedIds.get(procedure.getIdProcedura()).booleanValue()) {
                     selectedProcedureList.add(procedure);
                    selectedIds.remove(procedure.getIdProcedura()); // Reset
            System.out.println("number sel. items = " + selectedProcedureList.size());
        }and here my faces-config.xml:
    <managed-property>
                   <property-name>selectedIds</property-name>
                   <property-class>java.util.Map</property-class>
                   <map-entries>
                        <key-class>java.lang.Integer</key-class>
                        <value-class>java.lang.Boolean</value-class>
                   </map-entries>
              </managed-property>
              <managed-property>
                   <property-name>selectedProcedureList</property-name>
                   <property-class>java.util.List</property-class>
                   <list-entries>
                        <value-class>databaseKbank.TKbankProcedure</value-class>
                   </list-entries>
              </managed-property>
              <managed-property>
                   <property-name>procedureList</property-name>
                   <property-class>java.util.ArrayList</property-class>
                   <list-entries>
                        <value-class>databaseKbank.TKbankProcedure</value-class>
                   </list-entries>
              </managed-property>I can't understand why returns me 0 elements selected..i really hope in your help!
    However, thanks BalusC for the help you gave me in the other post!!
    Edited by: emergencyDeveloper on Dec 22, 2008 7:52 AM

    BalusC, i've removed entries and seemed to work..but still doesn't!
    Returns me these Exceptions:
    ERROR [InvokeApplicationPhase] #{MainViewBean.getSelectedItems}: javax.faces.el.EvaluationException: java.lang.NullPointerException
    javax.faces.FacesException: #{MainViewBean.getSelectedItems}: javax.faces.el.EvaluationException: java.lang.NullPointerException
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:78)
    Caused by: javax.faces.el.EvaluationException: java.lang.NullPointerException
         at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:130)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:72)
         ... 26 more
    Caused by: java.lang.NullPointerException
         at m2u_kbank.MainViewBean.getSelectedItems(MainViewBean.java:251)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
         ... 27 more
    11:32:37,698 ERROR [[Faces Servlet]] Servlet.service() for servlet Faces Servlet threw exception
    javax.faces.FacesException: #{MainViewBean.getSelectedItems}: javax.faces.el.EvaluationException: java.lang.NullPointerException
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:78)
    Caused by: javax.faces.el.EvaluationException: java.lang.NullPointerException
         at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:130)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:72)
         ... 26 more
    Caused by: java.lang.NullPointerException
         at m2u_kbank.MainViewBean.getSelectedItems(MainViewBean.java:251)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
         ... 27 moreCan't found data in procedureList ArrayList, i think error is there..
    Bean:
    public void getSelectedItems() {
             // Get selected items.
             selectedProcedureList = new ArrayList<TKbankProcedure>();
             Iterator it = procedureList.iterator();
            while (it.hasNext()) {
                 TKbankProcedure procedure = (TKbankProcedure)it.next();
                if (selectedIds.get(procedure.getIdProcedura()).booleanValue()) {
                     selectedProcedureList.add(procedure);
                    selectedIds.remove(procedure.getIdProcedura()); // Reset
        }Hope in your suggest!
    Thanks

  • How to select multiple lines in ALV report

    hi gurus,
    I am working on an interactive ALV report where i have to select multiple lines from the basic list into an internal table, based on check box clicks. Using RS_SELFIELD i can select only 1 row. The coding has been done based on Call Function. Can u please suggest some way.
    Regards,
    Satyajit

    hi,
    try like this
    TABLES:     ekko.
    TYPE-POOLS: slis.                                 "ALV Declarations
    TYPES: BEGIN OF t_ekko,
      sel,                         "stores which row user has selected
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      statu TYPE ekpo-statu,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
      menge TYPE ekpo-menge,
      meins TYPE ekpo-meins,
      netpr TYPE ekpo-netpr,
      peinh TYPE ekpo-peinh,
    END OF t_ekko.
    DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_ekko TYPE t_ekko.
    DATA: fieldcatalog TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          fieldcatalog1 TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          gd_tab_group TYPE slis_t_sp_group_alv,
          gd_layout    TYPE slis_layout_alv,
          gd_repid     LIKE sy-repid.
    DATA : BEGIN OF det_tab OCCURS 0,
            ebeln LIKE ekpo-ebeln,
           END OF det_tab.
    START-OF-SELECTION.
      PERFORM data_retrieval.
      PERFORM build_fieldcatalog.
      PERFORM build_layout.
      PERFORM display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
    *       Build Fieldcatalog for ALV Report
    FORM build_fieldcatalog.
      fieldcatalog-fieldname   = 'EBELN'.
      fieldcatalog-seltext_m   = 'Purchase Order'.
      fieldcatalog-outputlen   = 10.
      fieldcatalog-emphasize   = 'X'.
      fieldcatalog-key         = 'X'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'EBELP'.
      fieldcatalog-seltext_m   = 'PO Item'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'STATU'.
      fieldcatalog-seltext_m   = 'Status'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'AEDAT'.
      fieldcatalog-seltext_m   = 'Item change date'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MATNR'.
      fieldcatalog-seltext_m   = 'Material Number'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MENGE'.
      fieldcatalog-seltext_m   = 'PO quantity'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MEINS'.
      fieldcatalog-seltext_m   = 'Order Unit'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'NETPR'.
      fieldcatalog-seltext_m   = 'Net Price'.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-do_sum      = 'X'.        "Display column total
      fieldcatalog-datatype     = 'CURR'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'PEINH'.
      fieldcatalog-seltext_m   = 'Price Unit'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
    *       Build layout for ALV grid report
    FORM build_layout.
      gd_layout-box_fieldname     = 'SEL'.
      "set field name to store row selection
      gd_layout-edit              = 'X'. "makes whole ALV table editable
      gd_layout-zebra             = 'X'.
    ENDFORM.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
    *       Display report using ALV grid
    FORM display_alv_report.
      gd_repid = sy-repid.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program       = gd_repid
          i_callback_user_command  = 'USER_COMMAND'
          i_callback_pf_status_set = 'SET_STAT'
          is_layout                = gd_layout
          it_fieldcat              = fieldcatalog[]
          i_save                   = 'X'
        TABLES
          t_outtab                 = it_ekko
        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.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
    *       Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      SELECT ebeln ebelp statu aedat matnr menge meins netpr peinh
       UP TO 10 ROWS
        FROM ekpo
        INTO CORRESPONDING FIELDS OF TABLE it_ekko.
    ENDFORM.                    " DATA_RETRIEVAL
    *       FORM USER_COMMAND                                          *
    *       --> R_UCOMM                                                *
    *       --> RS_SELFIELD                                            *
    FORM user_command USING r_ucomm LIKE sy-ucomm
                      rs_selfield TYPE slis_selfield.
    * Check function code
      CASE r_ucomm.
        WHEN '&IC1'.
          IF rs_selfield-fieldname = 'EBELN'.
            READ TABLE it_ekko INTO wa_ekko INDEX rs_selfield-tabindex.
            SET PARAMETER ID 'BES' FIELD wa_ekko-ebeln.
            CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.
          ENDIF.
        WHEN 'DET'.  "button add by me
          CLEAR det_tab.
          REFRESH det_tab.
          LOOP AT it_ekko INTO wa_ekko WHERE sel = 'X'.
            MOVE-CORRESPONDING wa_ekko TO det_tab.
            APPEND det_tab.
          ENDLOOP.
          PERFORM build_cat.
          PERFORM dis_data.
      ENDCASE.
    ENDFORM.                    "user_command
    *&      Form  set_stat
    *       text
    *      -->RT_EXTAB   text
    FORM set_stat USING rt_extab TYPE slis_t_extab.
      SET PF-STATUS 'ZSTAT' EXCLUDING rt_extab.
    ENDFORM.                    "set_stat
    *&      Form  build_cat
    *       text
    FORM build_cat.
      CLEAR fieldcatalog1.
      REFRESH fieldcatalog1.
      fieldcatalog1-fieldname = 'EBELN'.
      fieldcatalog1-tabname = 'DET_TAB'.
      fieldcatalog1-seltext_m = 'Order No.'.
      fieldcatalog1-outputlen = 10.
      APPEND fieldcatalog1 TO fieldcatalog1.
      CLEAR fieldcatalog1.
    ENDFORM.                    "build_cat
    *&      Form  dis_data
    *       text
    FORM dis_data.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = 'ZTEST_DS'
          it_fieldcat        = fieldcatalog1[]
          i_save             = 'X'
        TABLES
          t_outtab           = det_tab.
    ENDFORM.                    "dis_data
    here i have copied standard gui status of ALV into my z status ZSTAT and add one button DET......
    here u can select morethan one line using control(ctrl)
    reward if usefull...

  • How do you select multiple messages/conversations on SMS/MMS to forward or save to memory card on Samsung Stratosphere?

    How do you select multiple messages/conversations on SMS/MMS to forward or save to memory card on Samsung Stratosphere? 
    My screen is cracked and I need to replace my phone and I don't see a way of selecting multiple messages or even conversations one at a time to forward them to email or to save them to a memory card.  I can delete thread but can't forward it or move it.  Is there a setting somewhere that will move the storage location for messages to the memory card instead of internal?
    If not, any suggestions on backup apps?  I have heard of Txtract to back up SMS and MMS messages, and Titanium Backup to back up everything (SMS, MMS, apps, app data...).  Anyone have any experience with those, or other suggestions?
    Thanks!
    Rich

    <Duplicate topic.  This thread will be locked.  Please see Help transferring data (SMS, MMS, Apps, App data) to new phone? for any replies.>

  • Does Aperture support deletion of multiple "unnamed" face tags?

    Faces is a great feature.  I love it.
    I have 40,000 pictures in iPhoto.  iPhoto currently does not have a way to select all "unnamed" face tags in a photo and remove them.  I have to click each separate "unnamed" face tag to delete it.  Because of the volume I am working with, without a global delete feature, I am looking at a 100-hour project (approximately 60,000 mouse clicks) to accomplish the deletion of all these "unnamed" face tags.
    I was hoping that Aperture would offer this feature, since it is a Pro app.  I called Apple today and they told me that "No, Aperture does not have this feature, either."
    Does anyone know if Aperture does have a way of doing this?  I tried to get an Apple Aperture support rep on the phone to think "outside the box" today on this, but he couldn't think of anything.
    It just kills me that because I can't select multiple face tags in a photo and mass delete them with a single keystroke or click that I'm facing 100-200 hours worth of work, literally about 60,000 mouse clicks, in order to get rid of all my "unnamed" face tags.
    Thanks for any ideas anyone might have.

    Why is it worth 100 hours of your time to remove them?
    (While I think_if_ there is a way to do what you want.)

  • Is there a way to select multiple sequences and batch export them using the same settings in CS6?

    I am a current Final Cut Pro7 user and looking to switch over to Premiere Pro CS6.  We edit approx. 100 short (15 sec.) videos daily, and then select them all at the end of the day and batch export them over night using the same export recipe for all. I have having trouble finding an easy way to do this in Premiere pro CS6, as command +E is grayed out if i select more than one sequence at a time. 
    so far, it appears that i have to select each video individually and manually set encoding recipe and export location for each....  Not only would this be terribly time consuming, but it leaves a lot of room for error and missed videos.  I thought i would be able to send all of the sequences to Adobe Media Encoder,  but i dont see that option either.
    Any suggestions/
    thanks!

    Open Media Encoder and add your Sequences:
    File > Add Premiere Pro Sequence
    Navigate to your Premiere Project and select it in the list.
    You can then select multiple Sequences from the Project (Ctrl+Click)
    and load them all at once into Media Encoder and apply
    the same encoding preset to all Sequences at the same time.

  • Is there NO way to select multiple songs to go into a Music Playlist at once, vs doing it one by one?!

    Argh.  So irritating how something that should be very simple and intuitive results in useless calls to Sprint (my carrier) and BB. with endless holds, transfers, pasing the buck,and still no results.  Then I'm suggested to go to the Forums...you know...where other paying BB customers can try tp provide the IT support that BB apparetnly could care less to do for its paying customers?
    Anyway, I want to have multiple playlists in my BB Music so that when I host parties, I can play a particular type of music by selecting one of the playlists.  I was able to move songs to my BB but they only seem to move to the general Music Library (All Songs).  I was able to create Playlists, but it seems you can only move songs to the Playlist ONE AT A TIME.  There is apparently no way to select multiple songs to go to a playlist?  No way to move an entire folder of music from my PC to my BB songs, as its own separate sub-folder (i.e., Playlist)?
    I know I've been able to do this with other devices in the past. 
    Otherwise the BB Music Playlist options seems totally pointless. 
    Tx

    It says: ''users can re-enable it from the Add-ons Manager if necessary''
    *https://addons.mozilla.org/en-US/firefox/blocked/i106
    *https://addons.mozilla.org/en-US/firefox/blocked/i107
    <blockquote>Why was it blocked?<br />
    The RealPlayer Browser Record extension is causing significant problems on Flash video sites like YouTube. This block automatically disables the add-on, but users can re-enable it from the Add-ons Manager if necessary.</blockquote>
    You can try to delete the files extensions.* (e.g. extensions.sqlite, extensions.ini, extensions.cache) and compatibility.ini in the Firefox profile folder to reset the extensions registry.
    *https://support.mozilla.org/kb/Profiles
    New files will be created when required.
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar (or click the "Find Updates" button in older Firefox versions) to check if there is a compatibility update available.
    See "Corrupt extension files":
    *http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    *https://support.mozilla.org/kb/Unable+to+install+add-ons

  • How to select multiple records from a TREE in the table

    HI,
    I have a tree structure which is in the table.When I open the node of the tree,all the subnodes are coming as one-one records in the table.I want to slect multiple record from this table.I applied onLeadSelect for this table,I can select only 1 record from the table.
    Can any one plz suggest me how to select multiple records from the table so that I can get all the data of those selected record.
    Regards
    -Sandip

    Rashmi/Kukku,
    First of all, Thanks for your help!
    Is there any other way in which we can access tables other than using BAPIs or RFCs?
    In my case, there is a table structure which has to be updated with values after validating a key. i don't think there is any RFC available now. do i need to create bapi/rfc for that?
    Krishna Murthy

  • Cannot select multiple iPhoto events for screen saver anymore... why?

    I previously had Lion and just upgraded to Mavericks last week. My screen saver settings were wiped out (no big deal), so I went into the settings to select the events, faces, etc. I had previously selected to run. But when I went to try put things back to normal, it looks as if you can only select one event, face, etc... not multiples. Am I missing something? Or is that the way things are now?

    iPhoto 9.4.3

  • SAPGUI JAVA 7.10 (OSX 10.5.1): cannot select multiple columns in ALV

    Hi,
    in sapgui java 7.10 (on mac osx 10.5.1) I cannot select multiple columns in ALV reports.
    I can do it only in some transactions (like SE16). But on all our custom reports (REUSE_ALV_GRID_DISPLAY) in does not work.
    Any hint?
    Many thanks,
    Lorenzo

    Hi Lorenzo,
    did you double check if selecting multiple columns works with SAP GUI for Windows in the same report?
    If yes, I suggest to file a bug report so we can do a remote logon to run your custom report.
    If not it might be because of REUSE_ALV_GRID_DISPLAY itself or your parameters calling REUSE_ALV_GRID_DISPLAY.
    Best regards
    Rolf-Martin

  • Cannot select multiple messages in a sequence diagram

    In sequence diagrams, deleting multiple messages is tedious because multiple messages cannot be selected by using a selection rectangle.
    1) If the rectangle contains a single message, its object is also highlighted. So when multiple messages are selected, the corresponding objects are selected.
    2) If the selection rectangle overlaps a single line of the combined fragments box, the entire box is selected.
    I could same time if Studio used normal CTRL conventions. In other applications, holding down CTRL has two possible results.
    1) If the item to be selected is not highlighted, then that item becomes highlighted and is added to the selection group. Studio does this.
    2) If the item to be selected is already highlighted, then that item becomes non-highlighted and is removed from the selection group. Studio does not do this. So I cannot use a selection rectangle, then selectively use CTRL to remove unwanted items from the selection.
    Can anyone suggest a way of selecting multiple messages?
    As a side issue, does anyone know how to remove individual items from a selection?

    TreySpiva wrote:
    Have you tried using the Shift key when selecting?It's the same problem. Selecting one or more messages also highlights the sending and receiving objects associated with the messages. Pressing DELETE at this point would also delete the objects.

  • In Flash CS4, how do you select multiple anchor points across separate layers?

    I am talking about anchor points on a line, not a keyframe. They are also called "handles". I can select the anchor points as "white" quickly, but I can't get them to be "solid"without doing it layer by layer, which is tedious. What I want is way to select lines that are in different layers and get the points I selected in a way similar to the regular selection tool or free transform tool. I have been trying to do this all day and I can't find a good way to do this, and I would appreciate any help.
    Here is an image of what I'm trying to do, but more easily. The lines are on separate layers, but when I select them with the subselection tool I have to go layer by layer selecting the points. I'm trying to look for a very quick way of doing it. When I do select all with the subselection tool on, the anchor points are only "white" and not "solid" as shown below.

    Now you're post was a while ago and I still need a solution, but I have to say this. I didn't mean to be rude to you; it’s just that it doesn’t answer my question I specified in the original post. I know your intentions are good, but it frustrates me when someone doesn’t fully read a post and offers a solution, it sometimes gives a false impression that the problem is taken care of. Example of being "helpful": http://forums.adobe.com/message/2540277    Yes I know there is a “Yes, my question has been answered,” but you know they don’t always select it, and other people know that as well. But you are right; I should probably act a little bit nicer and reiterate what I’ve already said before, I’ll probably get more help from it. It just seems to be a simple feature that seems to be needed to be in the program. I didn't mean it takes forever to move, it takes forever to select multiple anchor points across, let's say 10 layers, so that's 10 different lines on 10 layers. You have to select each layer and then select the anchor points. If there is an away to select anchor points across all layers in one go please tell me. Maybe I was wrong, but I could’ve sworn I’ve seen ideas that were posted on here get taken into Adobe as a suggestion, but yes I submitted it as a suggestion to Adobe, but I wanted to confirm that there was no way of doing it first since it seems kind unbelievable because the regular selection tool works across multiple layers.

  • Select multiple rows in a grid

    Hi All,
    I want to select multiple rows in a grid on click of a button, there is no checkbox there are multiple rows which need to be selected like we do on pressing shift key on the keyboard. Please suggest how can this be done.
    thanks in advance.
    Regards,
    Anju

    Hi Anju,
    You can check this link to solve your problem:
    https://wiki.sdn.sap.com/wiki/display/Snippets/ALV%2bGrid%2bDisplay%2bwith%2bcheckbox%2bto%2bprocess%2bselected%2brecords%2bat%2bruntime
    Hope it helps you.
    Thanks & Regards,
    Sarita Singh Rathour

  • How to select multiple logs in Transaction Code SLG1

    Hi all,
    I have application log, it is working fine but i need to select multiple logs to download. it has the facility to download one log file at time. but i need to select multiple logs to download. can any one suggest or give some piece of code or information is advantageous.
    Thank you
    Regards
    Ravi.Golla

    Hi all,
    I have application log, it is working fine but i need to select multiple logs to download. it has the facility to download one log file at time. but i need to select multiple logs to download. can any one suggest or give some piece of code or information is advantageous.
    Thank you
    Regards
    Ravi.Golla

Maybe you are looking for

  • Do I need AirPort?

    I'd like to resist buying yet more Apple Gear if possible, although fantastic and pretty much the best solution to everything about computers, because they're expensive. So I have pretty much ascertained that my PS3 isn't going to successfully stream

  • How can I center a frame ?

    I created a 820x480 frame and want to center it in my screen. Is there an easy option or do I have to retrieve the screen's x and y coordinates first ??? cheers, Anne

  • R705-P25 Win8

    Hi, I have a question about my laptop. Anyone knows if it will be supported for windows 8 update? According to the list of computers ready for win8, this model is not metioned http://www.csd.toshiba.com/cgi-bin/tais/support/js​p/bulletin.jsp?ct=SB&so

  • Backing Up Apps So I can Sync On A New Computer?

    I've read the FAQ and several discussion threads and it's still not totally clear to me, so I thought I'd ask other people. I apologize in advance if this question has been answered before - it could just be a really obvious answer, hence no one aski

  • Import License Check for Return Orders

    Hello, We are currently testing compliance for return orders in sales. We would like to check the import license for these orders. For this we have defined a separate legal regulation and assigned the combination country of plant (= legal unit) and c