Flex/Adobe Air 应用程序即服务
是否可以将 Flex/Air 应用程序开发为服务? 该应用程序不需要任何 GUI,它应该作为嵌入式 Linux/Linux/Windows 中的服务运行。
Is it possible to develop flex/Air application as a service.
The application doesn't require any GUI it should run as service in embedded Linux/Linux/Windows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AIR 无法作为真正的服务运行。但它可以在用户登录(而不是系统启动)时使用
NativeApplication.nativeApplication.startAtLogin = true
启动,并且您可以将其从任务栏隐藏(请参阅这个问题),这样您就可以非常接近服务行为。AIR cannot run as a true service. But it can be started on user login (not with system start) with
NativeApplication.nativeApplication.startAtLogin = true
and you can hide it from taskbar (see this question), so you can get quite close to service behavior.