# Odd UIScrollbar and browsers problem

**URL:** https://forum.kirupa.com/t/odd-uiscrollbar-and-browsers-problem/320521
**Category:** flash
**Created:** [March 25, 2011, 9:52pm UTC](https://forum.kirupa.com/t/odd-uiscrollbar-and-browsers-problem/320521 "2011-03-25T21:52:54Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Dylancougar](https://avatars.discourse-cdn.com/v4/letter/d/db5fbb/32.png) [@Dylancougar](https://forum.kirupa.com/u/Dylancougar)
#### Post date: [March 25, 2011, 9:52pm UTC](https://forum.kirupa.com/t/odd-uiscrollbar-and-browsers-problem/320521/1 "2011-03-25T21:52:54Z")

</div>

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:

```auto

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);

}

```
