调试使用 NativeProcess API 调用可执行文件的 Adobe AIR 应用程序
如何找到 AIR 应用程序使用 NativeProcess API?我正在使用 Flash Builder 4。以下 c++ 生成的可执行文件
festival --tts "HelloSpeak.txt"
在 Windows 上运行良好cmd line ,但通过 NativeProcess API 调用(如示例文章中所示)不会产生所需的结果。我使用按钮单击处理程序上的参数调用该命令,但没有生成 TTS 输出。我不知道发生了什么!
How can I find the return value of a executable which has been invoked by a AIR app using the NativeProcess API? I am using Flash Builder 4. The following c++ generated executable
festival --tts "HelloSpeak.txt"
works fine on the Windows cmd line , but on invoking by the NativeProcess API like in the example article doesn't produce the desired result. I invoke the command with the arguments on a button click handler, but there is no TTS generated output. I don't have a clue of what is happening!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NativeProcess 发送退出 event 结束时,code 为 event.exitCode 参数。
NativeProcess sends exit event when finished, code is event.exitCode parameter.