AIR - 抑制调试应用程序中的错误消息?
在打包的 AIR 应用程序中,我需要将一个名为 debug
的文件添加到 C:\Program Files (x86)\The App\META-INF\AIR\debug
以用于软件“正确”运行 - 我认为这是一个数据库错误,但目前我无法找到解决它的方法。
是否可以添加此调试标志,但要抑制/隐藏另一个可能但未知的错误中可能出现的任何模式错误框?
In a packaged AIR app, I need to add a file called debug
to C:\Program Files (x86)\The App\META-INF\AIR\debug
for the software to function 'correctly' - I think it is a database error but I can not find anyway to solve it at the moment.
Is it possible to add this debug flag, but to suppress/hide any modal error boxes that may appear from another possible yet unknown bug?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定我完全理解你的问题。如果您需要的是仅在调试模式下运行应用程序时发生的某些特定行为,请查看条件编译,例如 此处。
但同样,不确定我是否完全理解你的问题!
Not sure I fully understand your problem. If what you need is some specific behavior only happening when you run the app in debug mode, then take a look to conditional compilation for example here.
But again, unsure I fully understand your problem!