How to stroke text as group w/effects

So, created text -- added warp effect. What I'd normally do is just then expand -- then unite -- then stroke it. But -- I'm sure there's a way where I could keep that text and effect editable while adding a stroke to look as if I united so the stroke follows the group and not the individual letters.
Thanks so much.

As always, there are several ways to get to the desired result.
Here's how I would do it:
Type text and select all text with the Type tool.
Change the default Fll (Black) to None.
Select the text object with the Selection Tool.
In The Appearance Panel "Add New Fill"
In the Appearance Panel change the Stroke Size and Color.
Move the stroke below the fill.
Add the Warp effect. The order does not matter much, see the 2 examples below.
Regards,
Ton

Similar Messages

  • HT3529 How do I text a group of people without the numbers broadcasted to everyone

    How do I text a group of recipients without everyone seeing each others phone numbers

    The way I do it is to put my name in the To: on an e-mail and then add all the others under BCC (blind carbon copy) and that way all the people in the BCC receive the message but all they see is your name...hope this helps.

  • How to maintain TEXT ID GROUP (table TTXERN)

    Dear SAP,
    I am having a problem on how to maintain TEXT ID GROUP (table TTXERN). Where is it configured and why after upgraded to ECC6, this table doesn't cover all data availbale in table TTXER?
    Your expert advice is realy much appreciated. will give points for those who help me out this problem.
    TQ
    Regards,
    Nazrul

    You need to run the program SDTXT1AID, it will list all entries present in TTXER but missing in TTXERN.
    It is very common to come across this issue during SAP upgrade.
    You can refer to the std documentation of the program &/or Google it to find further details

  • How to create text of group in ALV ???

    Hi experts,
    I have a problem with ALV.
    I have 1 internal table :
    A0  01  A  10
    A0  01  B  20
    A0  02  A  20
    A0  02  B  30
    A1  01  A  5
    A1  02  B  10
    A3  01  A  10
    A3  02  B  20
    I want to create 2 group
    A0- Description of group A0
      01- Description of  group 01
         A  10
         B  20
      02- Description of group 02
         A   20
         B   30
    A1- Decription of  group A1
      01
         A  5
      02
         B  10
    Finally, I'll make a subtotal of group 1. And then, I'll have a total of internal table .
    When use ALV Grid , I create 2 group but I cant take text of group 1 and group 2 as layout above.
    Because layout is like ALV Tree. But I cant use ALV Tree because I need convert into excel file .
    Who can help me to solve this problem?
    Thanks a lot.

    see this example:
    REPORT ZBLOCK_ALV.
    CONSTANTS :
      c_x VALUE 'X'.
    Macro definition
    DEFINE m_fieldcat.
      ls_fieldcat-fieldname = &1.
      ls_fieldcat-ref_tabname = &2.
      ls_fieldcat-tabname = &3.
      append ls_fieldcat to lt_fieldcat.
    END-OF-DEFINITION.
    DEFINE m_sort.
      ls_sort-fieldname = &1.
      ls_sort-up        = c_x.
      append ls_sort to lt_sort.
    END-OF-DEFINITION.
    TYPE-POOLS: slis.                      " ALV Global types
    TYPES:
    1st Table
      BEGIN OF ty_kna1,
        kunnr TYPE kna1-kunnr,             " Customer number
        ernam TYPE kna1-ernam,             " Name of Person who Created
        erdat TYPE kna1-erdat,             " Creation date
        name1 TYPE kna1-name1,             " Name 1                    .
      END OF ty_kna1,
    2nd Table
      BEGIN OF ty_mara,
        matnr TYPE mara-matnr,             " Material number
        ernam TYPE mara-ernam,             " Name of Person who Created
        ersda TYPE mara-ersda,             " Creation date
        mtart TYPE mara-mtart,             " Material type
        matkl TYPE mara-matkl,             " Material group
      END OF ty_mara,
    3rd Table
      BEGIN OF ty_vbak,
        vbeln TYPE vbak-vbeln,             " Sales document
        vkorg TYPE vbak-vkorg,             " Sales organization
        vtweg TYPE vbak-vtweg,             " Distribution channel
        kunnr TYPE vbak-kunnr,             " Sold-to party
        erdat TYPE vbak-erdat,             " Creation date
      END OF ty_vbak.
    DATA:
      gs_layout TYPE slis_layout_alv,
      gt_kna1 TYPE TABLE OF ty_kna1,
      gt_mara TYPE TABLE OF ty_mara,
      gt_vbak TYPE TABLE OF ty_vbak.
    SELECTION-SCREEN :
      SKIP, BEGIN OF LINE,COMMENT 5(27) v_1 FOR FIELD p_max.    "#EC NEEDED
    PARAMETERS p_max(2) TYPE n DEFAULT '02' OBLIGATORY.
    SELECTION-SCREEN END OF LINE.
    INITIALIZATION.
      v_1 = 'Maximum of records to read'.
    START-OF-SELECTION.
    Read data
      SELECT kunnr ernam erdat name1
        FROM kna1
       UP TO p_max ROWS
        INTO TABLE gt_kna1.
      SELECT matnr ernam ersda mtart matkl
        FROM mara
       UP TO p_max ROWS
        INTO TABLE gt_mara.
      SELECT vbeln vkorg vtweg kunnr erdat
        FROM vbak
       UP TO p_max ROWS
        INTO TABLE gt_vbak.
    END-OF-SELECTION.
      PERFORM f_display_data.
          FORM USER_COMMAND                                             *
    FORM user_command USING u_ucomm     TYPE sy-ucomm
                            us_selfield TYPE slis_selfield.     "#EC CALLED
      DATA:
        ls_vbak TYPE ty_vbak.
      CASE u_ucomm.
        WHEN '&IC1'.                       " Pick
          CASE us_selfield-tabname.
            WHEN 'GT_MARA'.
            WHEN 'GT_KNA1'.
            WHEN 'GT_VBAK'.
              READ TABLE gt_vbak INDEX us_selfield-tabindex INTO ls_vbak.
              IF sy-subrc EQ 0.
                SET PARAMETER ID 'AUN' FIELD ls_vbak-vbeln.
                CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.
              ENDIF.
          ENDCASE.
      ENDCASE.
    ENDFORM.                               " USER_COMMAND
          Form  f_display_data
    FORM f_display_data.
      DATA :
        ls_fieldcat TYPE slis_fieldcat_alv,
        lt_fieldcat TYPE slis_t_fieldcat_alv, " Field catalog
        ls_sort     TYPE slis_sortinfo_alv,
        lt_sort     TYPE slis_t_sortinfo_alv, " Sort table
        lt_events   TYPE slis_t_event,
        ls_event    TYPE slis_alv_event.
      gs_layout-group_change_edit = c_x.
      gs_layout-colwidth_optimize = c_x.
      gs_layout-zebra             = c_x.
      gs_layout-detail_popup      = c_x.
      gs_layout-get_selinfos      = c_x.
    Build field catalog and sort table
      m_fieldcat  'KUNNR' 'KNA1' 'GT_KNA1'.
      m_fieldcat  'ERNAM' 'KNA1' 'GT_KNA1'.
      m_fieldcat  'ERDAT' 'KNA1' 'GT_KNA1'.
      m_fieldcat  'NAME1' 'KNA1' 'GT_KNA1'.
      m_sort  'KUNNR'.
    Build Event Table
      MOVE        'TOP_OF_PAGE'        TO ls_event-name.
      MOVE        'TOP_OF_PAGE'        TO ls_event-form.
      APPEND ls_event TO lt_events.
      MOVE        'END_OF_LIST'        TO ls_event-name.
      MOVE        'END_OF_LIST'        TO ls_event-form.
      APPEND ls_event TO lt_events.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program      = sy-cprog
          i_callback_user_command = 'USER_COMMAND'
          it_fieldcat             = lt_fieldcat
          is_layout               = gs_layout
          it_events               = lt_events
          it_sort                 = lt_sort
          i_save                  = 'A'
        TABLES
          t_outtab                = gt_kna1.
    ENDFORM.                               " F_DISPLAY_DATA
          FORM top_of_page                                              *
    FORM top_of_page.                                           "#EC CALLED
      ULINE.
      WRITE : sy-uname, sy-title(56) CENTERED, sy-datum.
      ULINE.
    ENDFORM.                               " TOP_OF_PAGE
          FORM End_of_list                                              *
    FORM end_of_list.                                           "#EC CALLED
      DATA :
        ls_fieldcat TYPE slis_fieldcat_alv,
        lt_fieldcat TYPE slis_t_fieldcat_alv, " Field catalog
        ls_sort     TYPE slis_sortinfo_alv,
        lt_sort     TYPE slis_t_sortinfo_alv, " Sort table
        lt_events   TYPE slis_t_event,
        ls_event    TYPE slis_alv_event.
    Build field catalog and sort table
      m_fieldcat 'MATNR' 'MARA' 'GT_MARA'.
      m_fieldcat 'ERNAM' 'MARA' 'GT_MARA'.
      m_fieldcat 'ERSDA' 'MARA' 'GT_MARA'.
      m_fieldcat 'MTART' 'MARA' 'GT_MARA'.
      m_fieldcat 'MATKL' 'MARA' 'GT_MARA'.
      m_sort 'MATNR'.
    Build Event Table
      MOVE 'END_OF_LIST'   TO ls_event-name.
      MOVE 'END_OF_LIST_2' TO ls_event-form.
      APPEND ls_event TO lt_events.
      gs_layout-list_append = c_x.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program = sy-cprog
          it_fieldcat        = lt_fieldcat
          is_layout          = gs_layout
          it_sort            = lt_sort
          it_events          = lt_events
          i_save             = 'A'
        TABLES
          t_outtab           = gt_mara.
    ENDFORM.                               " END_OF_LIST
          FORM End_of_list_2                                            *
    FORM end_of_list_2.                                         "#EC CALLED
      DATA :
        ls_fieldcat TYPE slis_fieldcat_alv,
        lt_fieldcat TYPE slis_t_fieldcat_alv, " Field catalog
        ls_sort     TYPE slis_sortinfo_alv,
        lt_sort     TYPE slis_t_sortinfo_alv, " Sort table
        lt_events   TYPE slis_t_event,
        ls_event    TYPE slis_alv_event.
    Build field catalog and sort table
      m_fieldcat 'VBELN' 'VBAK' 'GT_VBAK'.
      m_fieldcat 'VKORG' 'VBAK' 'GT_VBAK'.
      m_fieldcat 'VTWEG' 'VBAK' 'GT_VBAK'.
      m_fieldcat 'KUNNR' 'VBAK' 'GT_VBAK'.
      m_fieldcat 'ERDAT' 'VBAK' 'GT_VBAK'.
      m_sort 'VBELN'.
    Build Event Table
      MOVE 'TOP_OF_PAGE' TO ls_event-name.
      MOVE 'TOP_OF_PAGE' TO ls_event-form.
      APPEND ls_event TO lt_events.
      gs_layout-list_append = c_x.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program = sy-cprog
          it_fieldcat        = lt_fieldcat
          is_layout          = gs_layout
          it_sort            = lt_sort
          it_events          = lt_events
          i_save             = 'A'
        TABLES
          t_outtab           = gt_vbak.
    ENDFORM.                               " END_OF_LIST_2

  • HOW CAN I CREATE A GROUP WITH MY CONTACTS FOR TEXTING

    HOW CAN I CREATE A GROUP WITH MY CONTACTS FOR TEXTING

    Olga, this is not a default feature in iPhone. You need a 3rd party application. I have created a free one, Easy Group, for group texting and group emailing.
    http://itunes.apple.com/fr/app/easy-group/id461469079?mt=8
    Rémi
    Note: I may receive some form of compensation, financial or otherwise,from my recommendation or link.

  • How do I create a group in contacts for texting?

    How do I create a group in contacts for texting to several people?

    Create your group on your computer, and sync it on your iPhone. But you cannot use this group for texting. You need an application for this. Easy Group is a free one I have developped.
    http://itunes.apple.com/fr/app/easy-group/id461469079?mt=8
    Remi
    Note: I may receive some form of compensation, financial or otherwise,from my recommendation or link.

  • How do I set up a text message group on iphone

    How do I set up a text message group on iphone

    Go into messages, then click the icon at the top right to create a new message, then click the plus sign to add the contacts you want to text.
    Is that what your asking?

  • How do i send a group text message to a group saved in my phone without having to go to select each person individually

    how do I send a group text message to a group saved in a Motorola droid razr m without having to select each person individually

        jlabianco, we want sending group messages to be easy breezy for you! Make sure that you've set up groups for your contacts on your device by tapping People> Groups>Tap the Plus sign to start a new group>Choose the contacts that you want in that group.
    Once the group is set up in "People," you will just need to tap People>tap the Group> Tap the menu at the top right corner> Send Message. Keep us posted.
    LasinaH_VZW
    Follow us on Twitter @VZWSupport

  • HT3529 How can a send a group text to 12 people

    How can i send a group text to more than 12people and save it so i can keep as a group for future texts

    In order to group text all at once, you must go to "Settings" on your iPhone, go to "Messages" and just make sure the switch "Group Messaging" is turned "ON". Then in order to group message to 12 people, those 12 people must also have a carrier that could also support group messaging (or so I was told) or maybe those 12 people should have an iPhone too. I think this may help you just a little bit on how to text with 12 other people.

  • HT5760 how do i create a group text message

    How do I create a group for text messaging

    Send messages to a group (iMessage and MMS). Tap , then enter multiple recipients. With MMS, group messaging must also be turned on in Settings > Messages, and replies are sent only to you—they aren’t copied to the other people in the group.

  • How do I send a group text and not have everyone else get the responses

    How do I send a group text and not have everyone else get the responses?   Thx

    Whether or not everyone gets the response depends solely on the person responding. i.e. you send a group text and i am one of the reciepients. From here i have two options, reply to the group text (everyone gets my reply) or i could text just you on the side (by opeining a new window in messages with just you as the reciepient) and replying to just you. Theres nothing you can do, its up to the person replying whether or not they reply to the entire group or just you seperately.

  • HT3529 How do I send a group text, I have set up groups in my gmail account but can't figure out how to send a group text without adding them all individually

    How do I send a group text message, I have groups set up in my gmail account but can't figure out how to send a group text without adding them all individually ?

    You can use iCloud:
    Step 1. Log into www.icloud.com using your Apple ID.
    Step 2. Click on Contacts and then click the groups ribbon (the red icon with two people) which is on the left-hand page when viewing All Contacts.
    Step 3. The left page changes to a list of Groups (only those groups stored in iCloud are shown). Click the + button at the bottom to add a new group.
    Step 4. Type a name for the new group and press Enter to save it. To change it after this, double-click its entry in the groups list.
    Step 5. To add contacts to the new group, click on the All Contacts group and locate the first person to be added (you can use the search bar to find them quickly).
    Step 6. Drag their name on top of the new group and drop it to add it to that group.
    Step 7. To add more contacts, repeat steps 5 and 6, but you can add multiple contacts at once by pressing Ctrl (on a PC) or Command (on a Mac) and clicking on each contact in the list that you wish to select. Then, drag one of the highlighted names to the new group and they will all be added.
    It's possible to add names to more than one group, and you can create as many groups as you like.
    Step 8. Launch the Contacts app on your device (iPhone, iPod touch or iPad) and you should see the new group appear almost immediately - as long as you have an internet connection.
    Until Apple builds in a function to create groups directly within the Contacts app, this is the best way to do it.

  • How do i send a group text

    How do i send a group text on iphone 4s

    go to your text message and in the To type in the name of the person you want to text and repeat until you finish.

  • How can I text an entire group without individually selecting each contact.

    How can I text an entire group without individually selecting each contact.

    How can I text an entire group without individually selecting each contact.

  • Can't figure out how to enclose text in a rectangle, as I used to do in Word... any ideas?!

    Can't figure out how to enclose text in a rectangle, as I used to do in Word... any ideas?!
    thanks!
    Gary Eskow

    Pages doesn't let you separately set border offsets, Indesign is the only application I know that can do that.
    You can get the effect with margin insets inside a Text box or offsets inside a Border.
    Inside both the Textbox and Border move the margins of the Text inside to have the Text where you want it relative to the border/stroke.
    When looking for a solution there is usually more than one way to look at the problem itself.
    Peter

Maybe you are looking for

  • While Logging Clips, "I" and "O" keys not working to mark clips

    In FCP 5, I am logging clips in Capture Window in order to set up a Batch Capture I am not able to mark the clips' In and Out points using the "I" and "O" keys although I can by using the cursor to click in the Logging Tab of the Log and Capture Wind

  • HL7 Best Practice Series

    Following are some of the best Practice for HL7 Document Processing. 1. Validate the Edifecs xml document against the respective XSD in the back end application such as BPEL. This will ensure the validity of the document before sending it to BPEL. 2.

  • What version of Acrobat do I need installed...

    What version of Acrobat do I need installed to use the AcroAVDoc and CAcroPDDoc objects in .NET?  The trial does not let me install Acrobat standard, I know it works with professional and it doesn't work if nothing is installed.

  • Forwarded or Redirected message is garbled

    Some emails that I receive are readable in Mail but when they are forwarded, the message is just line after line of garbled text like this: U291bmRzIGdyZWF0IHRvIG1lDQoNCkx1bmNodGltZSBtZ... (etc. it goes on for ages) I see exactly the same when I view

  • Practical use for clickthru log

    Regarding the clickthru log (populated by the htmldb_util.count_click or Z procedure)... What is a practical use of this feature? Other than a "Huh, that many, eh? Nice" by glancing at it from the Admin pages. One thing I thought of was "self-destruc