Loading external pngs and external text with html

Hello,

I want to load external png’s through this code:

(for this code, check the mcBandPreloader in de .fla file)

var imageLoader:Loader;
var RespJpeg:String = "images/arch1Proj.jpg"

 
function loadImage(url:String):void {
// Show Preloader
preloader.visible = true;
 
// Set properties on my Loader object
imageLoader = new Loader();
imageLoader.load(new URLRequest(url));
imageLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, imageLoading);
imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
}
loadImage(MovieClip(root).alles_mc.RespJpeg);

 
function imageLoaded(e:Event):void {
// Load Image
imageArea.addChild(imageLoader);
// Hide Preloader
preloader.visible = false;
}
 
function imageLoading(e:ProgressEvent):void {
// Get current download progress
var loaded:Number = e.bytesLoaded / e.bytesTotal;
 
// Send progress info to "preloader" movie clip
preloader.SetProgress(loaded);
}

imageArea.x = 0; 
imageArea.y = 0;

But my png won’t load. I know of the png and flash publish settings issue, but my flash project is AS3 and FlashPlayer 9, so that can’t be it. Everything works fine with jpg’s.
What I’m missing here?

Then same thing for loading external text file using a dynamic textbox called text_field. (For this code check the mcAlles frame 43 code.)

//--------------loading external text and display it---------
var textRequest:URLRequest = new URLRequest("NewsUpdate.txt");
var textLoader:URLLoader = new URLLoader();
textLoader.load(textRequest);
textLoader.addEventListener(Event.COMPLETE,fileLoaded);

function fileLoaded(event:Event):void {
text_field.text = event.target.data;
text_field.wordWrap = true;
}
//------------------make buttons to scroll the loaded text-------
var scrolling:Boolean = false;
var scrollDirection:String;

scrollDown_btn.addEventListener(MouseEvent.MOUSE_DOWN,scrollTextDown);
scrollUp_btn.addEventListener(MouseEvent.MOUSE_DOWN,scrollTextUp);
stage.addEventListener(MouseEvent.MOUSE_UP,stopScroll);

function scrollTextDown(event:MouseEvent):void {
scrolling = true;
scrollDirection = "down";
text_field.scrollV +=1;
stage.addEventListener(Event.ENTER_FRAME,checkButtons);
}
function scrollTextUp(event:MouseEvent):void {
scrolling = true;
scrollDirection = "up";
text_field.scrollV -=1;
stage.addEventListener(Event.ENTER_FRAME,checkButtons);
}
function stopScroll(event:MouseEvent):void {
stage.removeEventListener(Event.ENTER_FRAME,checkButtons);
scrolling = false;
}
//---------ckecking to see if buttons are pressed-----------
function checkButtons(event:Event):void {
if (scrolling) {
if (scrollDirection =="down") {
text_field.scrollV +=1;
} else if (scrollDirection == "up") {
text_field.scrollV -=1;
}
}
}

Here the problem is that I can’t type html in my external txt file. (I did checked the html button in Dynamic Text Properties. What am I doing wrong here?

.fla can be downloaded at http://www.megaupload.com/?d=IMSQ2IZZ
Thanks!

Ken