Create multi-line point text from applescript in CS

Ask a Question related to Adobe Illustrator Macintosh, Design and Development.

  1. #1

    Default Create multi-line point text from applescript in CS

    Hey, i need to create some descriptive tags in illustrator CS using a script (to show the size of an object), and I want the tag lines to be 2-line, like:

    5"
    HIGH

    as a single point text object, but it doesn't seem to be working:



    set heightInches to (my p2i(height of b) as text) & "\"\nHIGH"
    set heightTagX to (item 1 of position of b) + (width of b) + textSize * 3
    set heightTagY to (item 2 of position of b) - ((height of b) / 2) + textSize * 3
    make new text frame with properties {name:"heightTag", kind:point text, contents:heightInches, position:{heightTagX, heightTagY}}



    that script is creating the text I want, but without the newline in it.

    any ideas?
    spike_grobstein@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Buttons with Multi-Line Text
      Hi, I've just been trying FlexBuilder and want to put a button in with an image and some text. But the text is not automatically wrapping. Is...
    2. Multi-line TextBox - Paste text with numbered list, bullet list, tab character
      Hi All, I need a server control that's exactly like a multi-line TextBox, but also allow users to paste text with numbered list, bullet list, and...
    3. multi-line text field in dataset passed to web services
      Hi everyone I'm having a problem with passing a dataset with a text field in one of the tables contaning multiple lines separated by \r\n to the...
    4. Multi-line text
      If I have a text layer with multiple lines, the spacing between them is extreme. Is there any to decrease the spacing in Elements v.2? Thanks,...
    5. restrict entry in a Multi line text box
      If they put 25,000 characters in there, you don't have to show them all on the web page. Let them store whatever they want, then when those design...
  3. #2

    Default Re: Create multi-line point text from applescript in CS

    set heightInches to (my p2i(height of b) as text) & "\"" & return & "HIGH"
    Douglas_Habben@adobeforums.com Guest

  4. #3

    Default Re: Create multi-line point text from applescript in CS

    thanks!

    I wonder why illustrator doesn't like my \n.
    spike_grobstein@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139