ボタンをクリックして、この txt ファイルを AS3 (Flash) にロードしています。しかし、他のボタンをクリックするとtxtが消えてしまいます。stop(); を試しました。と unloadAndStop がありますが、機能しません。何か案は?
hello_btn.addEventListener(MouseEvent.CLICK, buttonClick4)
function buttonClick4(e:MouseEvent):void
{
try{
loader_mc.unloadAndStop();
} catch(e:Error) {
}
var loader:URLLoader;
var info_text:TextField;
CSSFormattingExample();
function CSSFormattingExample():void
{
info_text = new TextField();
info_text.wordWrap = true;
info_text.x = 300;
info_text.y = 160;
info_text.width = 800;
info_text.height = 800;
addChild(info_text);
}
var url:String = "hello.txt";
var loadit:URLLoader = new URLLoader();
loadit.addEventListener(Event.COMPLETE, completeHandler);
loadit.load(new URLRequest(url));
function completeHandler(event:Event):void
{
info_text.htmlText = event.target.data as String;
}
}