Flash AS3 帮助检测加载的文件

发布于 2024-07-29 18:53:50 字数 924 浏览 7 评论 0原文

我正在尝试加载外部和本地 XML 文件来读取其数据,但我真的不知道如何检测文件何时加载,我只能打开浏览器窗口, 这是我所做的 包裹 { 导入 flash.display.Sprite; 导入 flash.events.; 导入 flash.net。; 导入 flash.net.URLRequest;

public class cargadorXML extends Sprite {


    public var cuadro:Sprite = new Sprite();
    public function cargadorXML() {


        cuadro.graphics.beginFill(0xFF0000);
        cuadro.graphics.drawRoundRect(0,0,100,100,10);
        cuadro.graphics.endFill();
        cuadro.addEventListener(MouseEvent.CLICK,init);
        addChild(cuadro);

    }
    public function init(e:Event) {

        var file:FileReference;

        file = new FileReference();
        file.browse();
        file.addEventListener(Event.COMPLETE,bien);

    }
    public function bien(e:Event) {
        trace("cargado");
    }
}

没有出现“cargado”消息,而且我真的不认为 Event.COMPLETE 是正确的事件 xD 有人可以帮我吗? 谢谢

I'm trying to load an external and local XML file to read its data, but I don't really know how to detect when the file has been loaded, I'm just able to open the broser window,
here is what I have done
package {
import flash.display.Sprite;
import flash.events.;
import flash.net.
;
import flash.net.URLRequest;

public class cargadorXML extends Sprite {


    public var cuadro:Sprite = new Sprite();
    public function cargadorXML() {


        cuadro.graphics.beginFill(0xFF0000);
        cuadro.graphics.drawRoundRect(0,0,100,100,10);
        cuadro.graphics.endFill();
        cuadro.addEventListener(MouseEvent.CLICK,init);
        addChild(cuadro);

    }
    public function init(e:Event) {

        var file:FileReference;

        file = new FileReference();
        file.browse();
        file.addEventListener(Event.COMPLETE,bien);

    }
    public function bien(e:Event) {
        trace("cargado");
    }
}

}

but no "cargado" message appears, also I don't really think the Event.COMPLETE is the correct event at all xD
could some one help me here??
thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何时共饮酒 2024-08-05 18:53:50

完成,它是 Event.SELECT 而不是 Event.COMPLETE

done, it's Event.SELECT instead of Event.COMPLETE

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文