我可以创建仅使用提供的 CD 运行的 AIR 应用程序吗?

发布于 2024-11-14 02:07:12 字数 126 浏览 4 评论 0原文

我正在寻找制作一个 AIR 应用程序。然而,与普通发行版不同的是,我想以 CD 的形式出售它们。我希望 AIR 应用程序只能在 CD 位于 CD 驱动器中时才能运行(我不在乎人们可以破解这个问题,这是我想要的默认行为)有谁知道这是否可能?

I'm looking to make an AIR application. However, unlike the normal distro, I want to sell these on a CD. I want the AIR app to only be able to be run when the CD is in the CD drive (I don't care that people can hack around this, its the default behavior I want) Does anyone know if this is possible?

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

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

发布评论

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

评论(1

永不分离 2024-11-21 02:07:12

您可以通过以下方式获取驱动器列表:

var drives:Array = File.getRootDirectories();

接下来,您要检查 spaceAvailable = 0 的驱动器列表是否包含 CD 上的文件。如果磁盘不在驱动器中,则驱动器不会列在阵列中。

You can get drive list with:

var drives:Array = File.getRootDirectories();

Next, you want to check ones with spaceAvailable = 0 if they contain files like on your CD. If the disk isn't in the drive, drive will not be listed in array.

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