Ask a Question related to Macromedia Director Lingo, Design and Development.

  1. #1

    Default newline

    How can i make a newline in a sprite of a text-member with lingo?
    THX
    Wolfgang



    boergi webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. newline to <br>?
      When doing a databse query, how do yu contvert your newlines to <br>?
    2. adding newline in xml export
      I'm using ID CS on win2k and I'm wondering how to add new lines after xml elements that I'm creating. It's saving the whole export on one line. TIA
    3. Newline in XML
      Hello Is there any way to insert new line charcter in an Attribute of XML and let flash read it dinamicaly? Something like this XML-Code ...
    4. newline problem
      I just installed php 4.3 on windows xp. It seems that new lines are ignored. The following code <?php for ($i=0; $i<10; $i++){ print "test"; }...
    5. prevent newline in datagrid
      Hello Newsgroup! I have a DataGrid. In the cells of this DataGrid are strings displayed which consists of more then one word. When the collum of...
  3. #2

    Default Re: newline

    Or do it like this:

    var_text = "my piece of text" && RETURN

    (the "&&" operator concatenates strings.)

    Note: you could use "\n" as newline character, but don't because "\n" is not
    completly crossplatform, I think...

    Jean Marc.

    "boergi" <webforumsuser@macromedia.com> wrote in message
    news:bemosh$6qa$1@forums.macromedia.com...
    > How can i make a newline in a sprite of a text-member with lingo?
    > THX
    > Wolfgang
    >
    >

    Fraggy Guest

  4. #3

    Default Re: newline

    note that && concatenates string AND adds a space between the two strings
    single & concatenates strings without the space..


    hope this helps too
    gabriel


    Gabriel 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