How do you word wrap a TextInput Label?

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default How do you word wrap a TextInput Label?

    How do you word wrap a TextInput Label? It doesn't appear this can be done. I
    can word wrap like this:

    <mx:Text width="150" text="Third Party Settlement Service Provider Code"/>

    But, how can I put the TextInput to the right of the wrpped label?

    flatpickinJohn Guest

  2. Similar Questions and Discussions

    1. Wrap button label text?
      Is there a straightforward way yet to wrap the text on a button label? TIA, Mic
    2. Word Wrap - Two Line Label
      I am using TabNavigator and I want the Tab Labels displayed on two lines. Can anyone offer some guidence. Thank You
    3. How to make the FormItem label above the TextInput
      CODE: <mx:FormItem label="username" required="true" width="71%" direction="horizontal"> <mx:TextInput maxChars="20" textAlign="left" width="90%" ...
    4. Label height/wrap ?
      I'm having this same issue as below. I've had to repost this as Google Groups don't let you reply to posts over 30 days old. This is ridiculous, so...
    5. TextInput label position vertical top
      Hi, In mx:TextInput tag vertical alignment by defaut taking bottom. How to made the vertical align 'middle'. Thanks
  3. #2

    Default Re: How do you word wrap a TextInput Label?

    Use the TextArea object, set wordwrap to true, and editable to true.
    devnulled Guest

  4. #3

    Default Re: How do you word wrap a TextInput Label?

    I tried using a textarea object and set editable to false and wordwrap to true.
    My textinput and textarea objects are on a form. I can't see how to put the
    text area next to the textinput. I can put it above or below. How do I position
    it next to the textinput? Thanks

    flatpickinJohn Guest

  5. #4

    Default Re: How do you word wrap a TextInput Label?

    Don't use a Form. It is too inflexible. Use a canvas, for full control, or use a combination of VBox and HBox.

    Text is for multi-line display, TextArea is for multi-line input.

    Tracy
    ntsiii 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