How to add double stroke to text or an object?

I have illustrator 10 (MAC). Wondering the easiest way to add a double stroke to text or an object? Also, how can I move the stroke so its not necessarily on the outside of text? Was thinking more of an outline with separation between the two colors on the double stroke. Thanks

I'm not really an expert in user-land Illustrator so I'm not always up-to-speed on the terminology -- what do you mean by 'double stroke'?
Assuming you're talking about doing this in code, I *might* be able to help you on this but it's been a couple of years since I used the pre-CS text engine. I'd be more likely to be able to help you if this was CS+, but I can try.
If you're talking about doing it through the GUI as a user, I'm the last guy you want to ask :)

Similar Messages

  • Easiest way to add a double stroke to text / or object in  Illustrator 10

    New to the forum and wondered if someone can help me find a solution in adding a double stroke to text or an object? I have illustrator 10 (Mac). Thanks Also, should I be in a different forum section or is this correct?

    Go to window/appearance and add as many strokes and fills you want, and reorder as you need
    here you can see a movie on how it works, no matter the video is in AiCS3, works the same in Ai10.
    http://www.adobe.com/designcenter/video_workshop/
    look under de illustrator product "Using the appearance panel and efects"
    http://marizmendi.googlepages.com/index33

  • How to Add/Concatenate to a text field, values selected in a combo box

    I have a combo box form field that allows the user to select a value from a list and click on an Add button. The Add button should add/concatenate the vaue selected to a text field in order to create a list of values selected. I'm not sure how to do this using Javascript in Acrobat? I know I need to add the javascript to the Add button's Mouse Up action. Any help would be greatly appreciated. Thanks!

    Thanks so much - it works!
    >>> "Gilad D (try67)" <[email protected]> 9/25/2013 9:16 AM >>>
    Re: How to Add/Concatenate to a text field, values selected in a combo box created by Gilad D (try67) ( http://forums.adobe.com/people/try67 ) in JavaScript - View the full discussion ( http://forums.adobe.com/message/5712118#5712118 )
    Let's say the text field's name is "Text1", and the combo is called "Combo1". You can then use this code as the MouseUp script of the Add button:
    var f1 = this.getField("Text1");
    var f2 = this.getField("Combo1");
    if (f1.value=="") f1.value = f2.value;
    else f1.value = f1.value + ", " + f2.value;
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5712118#5712118
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5712118#5712118
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5712118#5712118. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in JavaScript by email ( mailto:[email protected].com ) or at Adobe Community ( http://forums.adobe.com/choose-container!input.jspa?contentType=1&containerType=14&contain er=3286 )
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How do i double stroke using adobe photoshop elements 10

    how do i double stroke using adobe photoshop elements 10?

    Not sure what you mean by double stroke?
    Do you mean something like two strokes, each with a different color?

  • How to add log messages in the sever/webui objects?

    Hi,
    I am new to the OA Framework.
    Can any one share any information in how to add log messages in the sever/webui objects?
    What are the beans I need to use to show in the diagnostic page?
    Can I get sample code for this log staments?
    Thanks in advance,
    Padma

    Hello. This forum is for reporting problems with the published Oracle documentation. You have a better change of getting a reply if you post your question on the Database - General forum.
    Regards,
    Diana

  • How do you attach speech to text to an object?  I need step by step instructions.

    How do I attach speech to text to an object?  I need step by step instructions.

    Captivate does not have Speech to Text feature. It has text to speech, which is basically an audio file. You can generate the audio using this feature. The audio that is generated using this feature is in the library. You can drag and drop the audio on any object.
    Sreekanth

  • How to add vertical stroke to between top menu items?

    I have a horizontal Spry menu bar. How to add a vertical stroke between menu top items?
    BUT NOT outermost left and outermost right. Only to BETWEEN top menu items.
    In html file I tried this:
      <div id="main_menu">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="#">Products</a></li>
          <li class=stroke></li>
          <li><a href="#">Services</a></li>
          <li class=stroke></li>
          <li><a href="#">News</a></li>
          <li class=stroke></li>
          <li><a href="#">Contact</a></li>
         </ul>
       </div>
    And in CSS-file I made a style:
    #MenuBar1 .stroke
    display: block;
    width: 1px;
    height: 16px;
    background-image: url(../images/gui/vertical_stroke.png);
    background-repeat: no-repeat;
    In Safari this Spry menu bar work fine. But stop working in Firefox and IE.
    Also DW4 warning me in properties panel that:
    "This menu bar is missing some important tags. Go to Code view and and make sure that each menu item contains an <a> tag."
    What is correct method to do this?

    In that case you will need to use images.
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Untitled</title>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <style>
    ul.MenuBarHorizontal a.line {    background: #EEE url(SpryMenuBarLine.gif) no-repeat 95% 50%; }
    ul.MenuBarHorizontal a.MenuBarItemSubmenu.line{    background: #EEE url(SpryMenuBarDownLine.gif) no-repeat 95% 50%; }
    </style>
    </head>
    <body>
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a class="MenuBarItemSubmenu line" href="#">Item 1</a>
        <ul>
          <li><a href="#">Item 1.1</a></li>
          <li><a href="#">Item 1.2</a></li>
          <li><a href="#">Item 1.3</a></li>
        </ul>
      </li>
      <li><a href="#" class="line">Item 2</a></li>
      <li><a class="MenuBarItemSubmenu line" href="#">Item 3</a>
        <ul>
          <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
            <ul>
              <li><a href="#">Item 3.1.1</a></li>
              <li><a href="#">Item 3.1.2</a></li>
            </ul>
          </li>
          <li><a href="#">Item 3.2</a></li>
          <li><a href="#">Item 3.3</a></li>
        </ul>
      </li>
      <li><a href="#">Item 4</a></li>
    </ul>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    The images look similar to the following
    and
    I hope this helps.
    Ben

  • How to add supercripts in a text field

    How to add superscripts symbols like copyright,trademark and registered symbols in a static text field in the Livecycle designer 8.2?

    You can copy-and-paste special characters directly into a text object from a text editor such as MS Word. Alternatively, you can insert the hex character reference into the XML source for the applicable text object instance. For example, to add a copyright symbol, go to the XML Source tab and insert the reference &#x00A9; into the XML node <value><text>Foobar&#x00A9;</text></value>.
    Steve

  • How to add music/ audio to text/ mms messages on iPhone 5?

    There is not a way to add audio/ music to text/mms messages similar to adding a picture.

    To a standard SMS text message, no there isn't. For MMS it would depend on what multimedia your carrier supports. For anything that is not storted in the Photo app (images, video files), you add them to the Message using the camera icon. For anything else, you would start in the app that contains the file, and use the Share function (if available). The Voice Memos app does this for example. Third party apps would vary in terms of having this feature and how it is accessed.

  • TouchUp: How to add an underline to text that is not underlined?

    The subject says it all, how do I use the TouchUp tool(s) to add an underline to text that is not underlined?

    There is an "underline" annotation available for the Comment & Markup toolbar.
    First, open the Comment & Markup toolbar.
    This will let you observe the addition of the Underline annotation.
    You want to access the "More Tools" dialog.
    There are various ways to get to it.
    --|  Place the mouse cursor in the tools icon 'ribbon' over in the empty space at the right.
         Right click for the context menu.  Select "More Tools".
    --| Select Tools > Customize Toolbars
    With the More Tools dialog presented, scroll down some to view the 'Comment & Markup Toolbar' choices.
    The default toolbar does not show:
    Underline Text Tool, Cross Out Text Took, Attach a File as a Comment, Record Audio Comment, and some others.
    So, select the Underline Text Tool.
    Close the dialog. The Underline Text Tool is now part of the Comment & Markup Toolbar.
    The toolbar selections, from "More Tools", is sticky.
    The Properties dialog for the Underline Text Tool permits configuration selections such as:
    – underline style of straight | squiggly
    – color
    – Opacity
    At the bottom of the tool's Properties dialog you can tick the selection "Make Properties Default".
    As with other annotations, there is a pop-up note available for entering information.
    Be well...

  • Swing : How to add Key Stroke to JOptionPane

    I want add key stroke(ctrl+K) to JOptionPane, this should work all over application, where ever JOptionPane comes.
    Help me on this.

    Darryl Burke wrote:
    You haven't bothered to reply to camickr's response to your [url http://forums.oracle.com/forums/thread.jspa?threadID=2123891]earlier question. Maybe that's why nobody seems interested in responding to this one.
    db
    Yes, I'm thinking of boycotting people who don't change their user name from the default number assigned to them. It's too hard to distinguish each user now :)
    Its amazing how many new users don't take the time to learn how to use the forum and just start asking questions.

  • How to add search help for field in ALV object

    Hello,
    In a program, we use ALV object ( container) to create a liste like : field1, field2 .. but when display we do not have search help for this . Could you please help me how to add match code in this case for field 1 and field2, We use set_table_for_first_display
    Thanks,

    Hi,
    when you define your field catalogue you can create data elements with search help in se11 and use them for field 1 and field 2.
    But maybe it is enough to use data elements belonging to a domain with a value help and to set field F$AVAILABL in the field catalogue or to fill the name of the field CHECKTABLE.
    Regards,
    Klaus

  • How to add get Day value in a Date object?

    Hi,
    I am writing a sql statement that has two date values. One I am getting it from the database. The format in the database is MM/DD/YYYY. My first question is how do I convert the format into the java date format, YYYY-MM-DD. The second question is I need to find out what the day is and add 1 to it. How do I get Day value in a Date object?
    Thanks.

    Look at "SimpleDateFormat" and "parse" in the archives.

  • How to add a fade effect to the Application object ?

    Hy,
    i want to add a fade effect to the Application object, but my code does not work, can you take a look please:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"                              
                                usePreloader="false"
                                mouseDown="stage.nativewindow.startMove()"
                                layout="absolute"
                                width="304"
                                height="527"
                                alpha="0"
                                creationComplete="init()">
            <mx:Script>
                    <![CDATA[
                            private function init():void
                                    application.setStyle("showEffect",fade)        
                    ]]>
            </mx:Script>
            <mx:Fade id="fade" duration="1000" />
    </mx:Application>
    Thanks

    Hi,
    Here is an example of how to add effect to a button: http://livedocs.adobe.com/flex/3/html/help.html?content=behaviors_06.html

  • How to check/uncheck Stroke & corner Option checkbox in object style panel?  [CS4]

    Hello,
    I'm looking for how to uncheck on the stroke and corner option in object style panel.
    Please let me know if anyone knows.
    Thanks.
    niko

    Because the red box is not an image. “Image” generally refers to any raster art, like a TIF, JPEG, PSD, or something rasterized with Object > Rasterize or Effect > Rasterize.
    If you want everything on the layer to have 25% opacity (100% opacity is fully opaque, as it likely is now) then click on the dot to the right of the layer name (the little donut next to Reflections in my screen shot), then open the Transparency panel and set the opacity to 25%.

Maybe you are looking for

  • Error in Logic Editor

    Hi, I want to create transactions using Logic editor of SAP xMII. Whenever i click on 'Link' option it gives error saying 'Exception has been occured' null. Same is case when i work on existing transacttions. Can anyone please help me in resolving th

  • Service Master for Maintenance

    Hi MM Consultants My client wants to know SAP Ability to record the reasons for the change of maintenance venor for the asset in creating service PO. for eg for an asset in AMC i choose a particular vendor for creating service PO and latter change th

  • Applying a swatch to imported illustrator file (link)

    Hi All, I'm quite new to InDesign and I just want to query the below... I've imported an illustrator file, which I have several instances of on the document, and have applied a colour swatch. InDesign is displaying the colour so that it fills the ent

  • Timeline won't display

    i can not seem to get the timeline to display as it was doing before in my motion project. i have tried everything i can think of. Why would this suddenly stop working??

  • "password" and "retype password" fields

    hi all, how do i get two textfields like password and retype password to validate against each other in javascript, the two textfields names are declared below as well as the button that will hopefully call the javascript can anyone help? <input type