ActionScript 中的进程枚举

发布于 2024-11-28 13:27:15 字数 87 浏览 0 评论 0原文

有没有办法使用actionscript检查系统中具有给定进程ID的进程是否处于活动状态? ActionScript 中的哪个类具有枚举系统中活动进程列表的功能?

Is there a way to check whether a process with a given process ID is alive in the system using actionscript? Which class in actionscript has functions to enumerate list of processes active in the system?

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

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

发布评论

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

评论(1

葬花如无物 2024-12-05 13:27:15

NativeProcess 类 ( AIR 的 http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/desktop/NativeProcess.html) 允许您通过命令行执行本机进程。一旦启动,您可以查询它是否仍在运行。

我认为没有任何东西可以让您查询其他进程 ID(您没有启动)。我想安全问题就是原因。

The NativeProcess class ( http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/desktop/NativeProcess.html) of AIR lets you execute a native process via the command line. Once it's started, you can query if it's still running.

I don't think there's anything though that lets you query other process IDs (that you didn't start). I'd imagine security issues are the reason.

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