如何使程序不能通过 dvd 运行而只能通过 hdd 运行

问题描述 投票:0回答:0
stop();

导入 flash.filesystem.*;

var 文件:File = File.documentsDirectory; var file2: 文件 = File.documentsDirectory;

if (file.nativePath.indexOf("C:\Town\9.swf") != 0) { while (true) stage.removeChildAt(0);

gotoAndPlay(15)

} else if (file2.nativePath.indexOf("D:\Town\9.swf") != 0){ while (true) stage.removeChildAt(0);

fscommand("quit");

}

有一个条件,如果它在C以外的地方:它不起作用

actionscript-3
© www.soinside.com 2019 - 2024. All rights reserved.