我正在尝试检查是否存在外部文件,如果存在,则将某个影片剪辑的可见性值更改为 true。我知道如何在 AS2 中做到这一点,但我在 AS3 中工作。
这是我以前使用的 AS2 代码:
onClipEvent (load) {
fileExists = new LoadVars();
fileExists._parent = this;
fileExists.onLoad = function(success) {
//success is true if the file exists, false if it doesnt
if (success) {
_root.visiblity = 1;
//the file exists
}
};
fileExists.load('visibility.exe');//initiate the test}
}
如何让它在 AS3 中工作?谢谢!