hi, this is a double question.

1. i've used this code to import txt files into flash in flash mx with no problems. now i'm using flash 8 and i am having problems with it. here it is.

System.useCodepage=true;
contact.html=true;
contact.wordWrap=true;
myLoadVar = new LoadVars ();
myLoadVar.load("contact.txt");
myLoadVar.onLoad = function (success){
if (success == true) {
contact.htmlText=myLoadVar.myText;
}
}

i don't know enough actionscript to break this down, it was given to me and the only thing i know how to edit is the name of the text file and the instance of the text box to load the text into. i saved the .txt as unicode but still no dice. i get the message "undefined" in the box when i load the swf.

what am i doing wrong.

2. i am using the UIscrollbar component with the dynamic text box and it works great when there is text that needs to be scrolled but when there is only one or two lines i only get the bar with no arrows at the top or bottom and it looks crappy. i would like to see the whole thing even if they will be inactive, how do i do this?

thanks

jeremy boyd