|
Ha... got it.
I was importing xml CData text, in to my text field & displayed as htmlText . No problem there. But the incoming data had links, and once the scroll pane had been scrolled, the links would no longer work.
Solution: It seems when the scrolling occurred, the text field was changed in to a sprite. To prevent this from happening, it seems, I simply needed to cash the text as a bitmap. Then the links would continue to work, scrolled or not.
content_textfield.cacheAsBitmap = true;
|