Multiline htmlText scrolls on drag selection of text

It also scroll on mouse wheel event..

var css:StyleSheet = new StyleSheet();
css.parseCSS('.red-text{font-family:"Lucida Grande";color:#ED1C24;font-size:10;font weight:bold;leading:-8;}');                 

dynamicText.styleSheet = css;
dynamicText.antiAliasType = AntiAliasType.ADVANCED;
dynamicText.embedFonts = true;
dynamicText.multiline = true;
dynamicText.wordWrap = true;
dynamicText.htmlText = "<p class= 'red-text'>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor consequat. </p>";

dynamicText.width = 450;
dynamicText.height = dynamicText.textHeight;

any fixes??

link|improve this question

67% accept rate
feedback

2 Answers

up vote 0 down vote accepted

You can disable the scroll wheel with dynamicText.mouseWheelEnabled = false. Also you should set dynamicText.height = dynamicText.textHeight + 4; because the text field has a padding of 2 pixel around the text (see docs)

link|improve this answer
feedback
field.addEventListener(Event.SCROLL, _scroll);
function _scroll(e:Event):void
{
    e.target.scrollV = 0;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.