Basically what I have is a dynamic text field that gets information from a text file, and a regular UIScrollbar component that connects to the text field. The information loads just fine in any browser, but it’s only scrollable in Internet Explorer. Scrolling doesn’t work in Firefox, Chrome or Safari, just Internet Explorer. Would any body know the reason why, and how I can fix this?
Here the code below that I’m using to read in the external text:
var loader:URLLoader = new URLLoader();
var myRequest:URLRequest = new URLRequest("BibleTalkTuesday.txt");
loader.load(myRequest);
loader.addEventListener(Event.COMPLETE, tb)
function tb(e:Event){
Btalk_txt.text = (loader.data);
}