Hi - this is odd.
I have a .swf file, that uses a standard dynamic text box, uses the standard UI Scrollbar and a standard text file is then loaded via actionscript 3 and works fine when you test it within Flash.
It used to work well when it was tested in a browser, but as of yesterday, it has disappeared.
This has happened on a number of my sites - here is an example I have dummied up: http://www.newbreedtennis.com/profiles.swf
It neither works as a stright .swf or as an HTML document.
The code for loading the text is:
var urlLoader21:URLLoader = new URLLoader();
urlLoader21.load(new URLRequest(“joe.txt”));
urlLoader21.addEventListener(Event.COMPLETE, onComplete21)
function onComplete21(evt:Event):void
{
///////////my_txt. name of the text box
my_txt.htmlText = evt.target.data;
}
Can anybody help? I have been banging my head over this all night
Thanks in advance