RichTextEditor and Scrolling

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

  1. #1

    Default RichTextEditor and Scrolling

    I'm using a RichTextEditor for a chat program. As the users type the text gets
    placed in the RichTextEditor but the scrollbar does not go to the bottom of the
    screen. I've tried the following but this does not seem to work for
    RichTextEditor.
    valueCommit="conversation.verticalScrollPosition=c onversation.maxVerticalScrollP
    osition"
    Is there a solution to getting the scrollbar to move down as the text area
    fills up?

    goat_boy Guest

  2. Similar Questions and Discussions

    1. Flex RichTextEditor
      How can I programmatically get/set the text alignment for the contents of a Flex RichTextEditor component?
    2. Can and how can i add image to richtexteditor
      I would love to see some sort of Insert Image integrated with the RTE as well!
    3. Richtexteditor: How is TEXTFORMAT defined
      If I use a RichTextEditor() component and retrieve 'htmltext', I get code like this: <TEXTFORMAT LEADING="2"> <P ALIGN="LEFT"> <FONT...
    4. combination scrolling text scrolling picture and on MouseEnter function
      it would help if you posted the code for us to look at... that way we can try to help ;) In article <bk6jip$ctm$1@forums.macromedia.com>, <...
    5. Custom Scroll Bar: Want to switch scrolling member, but keep scrolling intact.
      Hey all. This is a juicy one. Simple Idea, Simple minded author can't find solution.... I have a text member in sprite 29. I have the "Custom...
  3. #2

    Default Re: RichTextEditor and Scrolling

    I found the solution. You have to access the TextArea child that's inside the
    RichTextEditor. The following will move the scrollbar position to the bottom
    for a RichTextEditor: (look at the valueCommit)

    <mx:RichTextEditor id="rte"
    valueCommit="rte.textArea.verticalScrollPosition=r te.textArea.maxVerticalScrollP
    osition"/>

    goat_boy Guest

  4. #3

    Red face Re: RichTextEditor and Scrolling

    thanks! spent about 3 hours to find out how to do it.
    1113g41 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