发现代码在as3:
中显示html格式文本到动态文本字段var url:String = "http://edeejay.dyndns.org:8000/currentsong?sid=1";
var loadit:URLLoader = new URLLoader();
loadit.addEventListener(Event.COMPLETE, completeHandler);
loadit.load(new URLRequest(url));
function completeHandler(event:Event):void {
myText_txt.htmlText = event.target.data as String;
}
所有在本地工作正常,但上传到网络时,swf无法显示文字???
答案 0 :(得分:0)
这更可能是cross-domain问题。
听取SecurityErrorEvent.SECURITY_ERROR
和IOErrorEvent.IO_ERROR
确认。一般来说,你应该经常听他们知道是否有错误发生。