Scolling Dynamic Images in text field

Hi,

I have a text field which is dynamically pulling in a text file, as well as an image using <img> tag. I have up and down arrows to scroll the contents, but when I added the image, it scrolls down to show about half of it, and then stops scrolling.

Is it possible to scroll w/ an embedded image in a dynamic textfield? Here is the code I have on the “up” scroll button:

on (press) {
this.onEnterFrame = function() {
_root.strategybox.scroll -= 1;

    };

}
on (release) {
delete this.onEnterFrame;
}

Any help???
Thanks