Selection in same box

Hello,
I have a problem selecting particular text in illustrator. Whenever I use the direct selection tool to highlight text in a box containing other text, for example if I wanted to select only "good" from the statement "good work", the item "work" also gets highlighted.
Please show me how to select/highlight only the word "good".
Thanx in advance.

Suppose you have a table in an illustrator document as follows: (You may create  a real one in illustrator)
column 1
column 2
24.98     -3.5
100       +50
34.94     -3.5
456       +50
11.00     -3.5
352       +50
10.08     -3.5
786       +50
How would you go about removing all the "-3.5"s in column 1 and then the "+50"s in column 2 without deleting any other figures or lines.
Your assistance is very much appreciated.

Similar Messages

  • Calling a bean method on select of Combo box item

    Hi
    On select of Combo box item in a form, text fields in the same form should be populated
    dynamically.Is it possible to call a bean method which does this,by calling onSelect() method
    of combo box ?
    Thanks in advance,
    Sridevi

    Uff, sorry!
    I ment that you write some code for the "onSelect" event which sends a request to the server with the selected value: onSelect="self.location.href='<%= request.getRequestURI()%>?selectedVal= ' + this.selectedIndex;"

  • Re- Single click in the check box ensure to select all check boxes

    Hi All,
    I have an issue to notify the urgency of the cart to the buyer while creating the cart.For that scenario we have a check box in the Basic data of shopping cart.I added the check box in the basic data. Now the  quote check box is available for all the line items.
    The requestor can select any check box in any line items,so whenever he selects the check box- automatically all the check box should get selected , if any of the check box get deselected then imediatelely all the check box in different line items also should get deselected.

    Hi Batchu,
    Thanks for your reply, See if you add any custom field it will come one by one in the basic data section. Adding one more check box doesnot work for this case.
    Moreover the problem is change to any particular line item can be captured in DOC_CHANGE_BADI but i cannot bring the same change to all line items (ie) If 3 rd line item check box is marked then immediately rest of the line item also should get marked.
    In the case of DOC_CHECK_BADI to identify the line on which the change happens is tough.
    SO thats is the problem for me to bring the logic in the code.
    Please if any one come across similar kind of issue please give your suggestion.
    Thanks,
    Sibi

  • "Always Use Selected Format" check box in line items report

    Hi Experts,
    I have an issue in ECC 6.0.
    From the transaction code FBL1N (Vendor Line Items) I am trying to export the report to spreadsheet by selecting the option  List> Export>Spreadsheet  then I have selected "Always Use Selected Format" check box.  But if I execute the same report again I am not getting this option "Always Use Selected Format". Please let me how can we retrieve that option. Is there any possibility to get that option again either functionally or technically. I would like to know all the possible ways to get this option again.
    Please do the needful.

    Hello,
    In one my thread Mr. Frank has replied as follows. I believe he has solved this.
    Hope this may be really helpful.
    The problem with the spreadsheet download is at one point, users have selected their default file type.
    That said, SAPGUI is working as it should. (gui710)
    Question though is how do we reset the values so they get the ?Select Spreadsheet Format? popup again.
    The following steps should be performed :
    - Call transaction SE38, enter program SALV_BS_ADMIN_MAINTAIN, and press F8.
    - Follow the parameters below :
    - Select ?DELETE? on the Actions Group
    - Select ?DETAILED SELECTION? on the General Data :
    - On Client - your number
    - User : <user name>
    -Hit EXECUTE.
    -Press ENTER on the POPUP
    - If there is an entry in the report that will need to be deleted. Also, make sure that the entry you will delete (for the user) has a value of GUI_ALV_XML_VER on field ?Parameter? .
    - Select the line and hit the DELETE icon .
    - Press ?Y? to continue delete. Press ENTER on the popup.
    - Then EXIT all the way out of the program.
    NOTE : When you run program SALV_BS_ADMIN_MAINTAIN, make sure they are out of any program that they are using for download.
    Re: "Always Use Selected Format" check box in line items report
    Regards,
    Ravi
    Edited by: Ravi Sankar Venna on May 15, 2009 2:31 PM

  • Enable to select a check box in ALV while accessing it through portal

    Hi All,
    Currently I have given a link on portal to run a transaction code. The output of the program is ALV report, where user any select the check boxes.
    Now when I try to select a check box, it is not getting selected. I click on the checkbox, the tick appear and then the screen refreshes itself and the tick goes off. This is happening only when accessing it through portal. If i run the program in R/3 directly, I am able to select the check box.
    Please advice on this.
    Thanks
    Namit

    Reported to SAP for the same.

  • Picture and text in the same box for the calender?

    Is it possible to put a small picture in the box (for say May 4) and also get a short text line in the same box?
    When I'm doing it now, the picture takes up the whole box and the text goes underneath.
    Thanks

    Unfortunately that's how it works. If you have a 3rd party editor you could add the text to the picture before adding it to the calendar. Put in a feature request at http://www.apple.com/feedback/iphoto.html.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Uncheck one check box when we select other check boxes

    Hi All,
    This might be very simple question for experts. I just want to unselect one check box (this check box is to select 'ALL' and this will be selected by default) when we select any other check box (for individual categories) on same region. Can any one please suggest me how to implement this?
    Thanks in advance.
    Regards,
    Hari

    Hi Shijesh,
    Thanks for you reply.
    I'm using two items (check boxs), like P1_ALL and P1_TEST. I want to unselect P1_ALL when we select P1_TEST check box.Both the check boxes contains single value in List of values. For this I wrote script like
    <script type="text/javascript">
    function uncheckAll(pthis)
    elm = document.getElementsByName('P1_ALL');
    if(pthis.checked)
    elm.checked = false;
    </script>
    And in HTML form element attribute of P1_TEST, I have 'onclick=uncheckAll(this)'. But for some reason when I select 'P1_TEST', P1_ALL check box not getting un-selected.
    I would be grateful if you suggest what needs to correct in this one.
    Regards,
    Hari

  • Reg: ADF Select One List box..

    Hi,
    I have a view object which is associated with application module.
    I am dragging onto the form as Select one List box. In the list binding Editor , I have only one data source. When I am trying to specify the Base data source attribute and list datasource attribute , it gives an error
    "Base Data Source and List Data Source Cannot Be bound to the same view"
    and am selecting the Display attribute as "multiple"
    Please Help
    Thanks.

    Hi,
    the base data source is where the selected data is written to. The display data source is from where you get the list data.
    You need to have at least two VO for this to work. Next to the display data source there is a button you press to create an iterator binding for the list VO.
    Frank

  • Can't select an empty box

    I shop at a site that requires me to "select" an empty box beside the item I want, then click another button to add the item to the cart. Supposedly the site is compatible with Firefox 9, which is the browser I'm using on my Android tablet. (At least that's what their FAQ section implies). But when I try to shop, I am unable to "select" the empty boxes by tapping the screen - instead, nothing happens (but if I tap twice, it zooms). Please help!

    Hi,
    Open the Font Book.
    Scroll down the list until you see AppleGothic (All one word)
    Use the Validate item in the File Menu to check the Font.
    Make sure it is not Disabled and that there are not duplicates.
    It is this Font that tends to be responsible for the lack of access to the Preferences and other menu items that should be active.
    Also check the Helvetica Neue  font the same way as this is the one that displays the Messages in the Main Messages window.
    Lastly check the font Lucida Grande as this is used in the Buddy List display when there are groups as the title bars of those.
    You may need to consider any recently added Fonts and potential conflict items.
    9:39 pm      Saturday; February 21, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Multiple Portals on same box???

    Hello,
    Just looking for thoughts, SAP reccomendations on putting multiple EP7 portals on the same box. I think this is supported by SAP. Would this be done on seperate java instances?
    Basicly we want to map our portal environment to R3 Clients.
    Would something like this work?
    QA R3 Client 110 - Testing Client
    Portal: http://portalqa110testing.company.com:50000/irj/portal
    QA R3 Client 310 - Training Client
    Portal: http://portalqa310training.company.com:50010/irj/portal
    All on same box. Any suggestions, warnings, etc are appreciated.
    Thanks,
    Doug

    Hi,
    Do you mean that you want to install multiple EP servers on same OS?
    If so please dont do that, I have seen problems with windows services and also with SAP MMC.
    But if you can do server provisioning on the machine ( VMWare), then that should be fine.
    Regards,
    Praveen Gudapati

  • Can E-RECRUITING share the same box of ECC?

    I always install E-RECRUITING on a dedicated server as an ABAP application. Then connect to its backend ECC.
    Just curious, can I  install  E-RECRUITING on the same box where its backend ECC system is installed? ECC and E-RECRUITING will have
    different SIDs but co-exist in one Oracle MCOD DB.
    Further more,  can E-RECRUITING and its backend ECC belong to the same SID but on different clients?
    Thanks for help.

    Yes and yes. The first scenario is comparable to I2-A and the second one to I2-B. See the application help for details.

  • How to disbale a group of checkboxes when i select one check box WEBDYNPRO

    Hi Friends,
    Can any body help me how to disbale a group of checkboxes when i select one check box WEBDYNPRO Abap
    Also can any body tell me how to handle chain endchain type of scenario in WEBDYNPRO Abap
    Thank you..
    Sai

    Hi
    In the context tab , create 2 context attributes ca_attr1 and ca_attr2   of type WDY_BOOLEAN under a context node cn_node
    now in ur Layout , bind the ENABLE property of CheckBoxGroup UI Element with this attribute ca_attr1
    bind the ENABLE property of CheckBox UI Element with this attribute ca_attr2
    create a action for ur Checkbox , for the OnToggle property of ur checkbox
    in OnactionToggle , check if ca_attr2 is 'X' , set ca_attr2 to ' ' ( for disable)
    this can be done by code wizard , press control +f7 and use read/set context attributes , use get_attribute and set_attribute methods
    // if ca_attr2 is 'X'
    DATA lo_nd_cn_node TYPE REF TO if_wd_context_node.
        DATA lo_el_cn_node TYPE REF TO if_wd_context_element.
        DATA ls_cn_node TYPE wd_this->element_cn_node .
        DATA lv_attr  LIKE ls_city-ca_attr2.
        lo_nd_node = wd_context->get_child_node( name = wd_this->wdctx_ca_attr).
    *   get element via lead selection
        lo_el_cn_node = lo_nd_cn_node->get_element(  ).
    *   get single attribute
        lo_el_cn_node->get_attribute(
          EXPORTING
            name =  `CA_ATTR2`
          IMPORTING
            value = lv_attr ).
    // if lv_attr2 is 'X' , use set_attribute method for ca_attr1
    IF lv_Attr EQ 'X' .
    DATA lo_nd_cn_node TYPE REF TO if_wd_context_node.
        DATA lo_el_cn_node TYPE REF TO if_wd_context_element.
        DATA ls_cn_node TYPE wd_this->element_cn_node .
        DATA lv_attr  LIKE ls_city-ca_attr.
    *   navigate from <CONTEXT> to <CN_VISIBLE> via lead selection
        lo_nd_node = wd_context->get_child_node( name = wd_this->wdctx_ca_attr).
    *   get element via lead selection
        lo_el_cn_node = lo_nd_cn_node->get_element(  ).
    *   set single attribute
        lo_el_cn_node->set_attribute(
          EXPORTING
            name =  `CA_ATTR1`
            value = ' ').
    ENDIF.
    regards,
    amit

  • BW and R/3 in the same box with a single instance  ECC 5.0

    Hi anybody using this scenario of having bw and r/3 in the same box....we are planing to consider in our project.
    will be happy if anybody can provide me some help on this.
    thanks and regards
    neel

    HI Neel Kamal,
    I think its a better option to distinguish OLTP like R/3 or ECC and OLAP like BW rather on a single instance
    from the above posts
    Let us know if this holds good
    Thanks,
    Raj

  • ABAP and JAVA Stack in the same box

    Hi all,
    I have installed Java Sneak preview first and after I installed ABAP Sneak in the same box.
    Everything is working fine but I noticed a little detail.
    My jcontrol.exe service disapeared from SAP Management Console.
    I mean before installed ABAP Stack my MMC had 2 divisions in my J2E instance:
    server 1 with 2 Process msg_server.exe and enserver.exe
    server 0 with 2 Process jcontrol.exe and igswd.exe
    After installed ABAP Stack, my server 0 became part of NSP Instance and jcontrol process is not displayed anymore anywhere.
    Instead I see now msg_server.exe and disp+work.exe and igswd.exe that of course are Process of the ABAP system.
    Does anyone have a nice explanation for this?
    Regards,
    Mauricio

    Hi mauricio,
    I was installing Netweaver sp15 both Java and ABAP version on one PC. But it seems they are working.
    Can you please tell the procedures to follow, to have good installation?
    If I load java version first and then ABAP i get error at step 11.
    Did you parttition the drive in to 2 or you installed on the same partition?
    Your help will be greatly apprecieated.
    Thanks

  • How to show default value selected in combo box...

    Hi,
    I need an help...
    I have a combo box and i want to show the default value(coming from DB) selected on combo box on Page Render.
    Thanks,
    Neha

    Hi,
    Will this help?
    database default value in selectOneChoice
    Set default selected value in a SelectOneChoice
    Regards
    Vishal

Maybe you are looking for