Flash开发+ haxe -- 重复“发生 I/O 错误”错误
我收到弹出的小对话框,显示发生 I/O 错误
。是什么原因导致这个问题,我应该如何解决这个问题?
编辑:发生的情况是,在我运行 Flash 游戏后,FlashDevelop 将尝试连接到 Flash 调试器,但显然失败并给出上述错误。我有 Firefox 的调试独立播放器和 ActiveX 调试控件。
I'm getting small dialog boxes that pop up saying I/O Error occurred
. What causes this, and how should I fix this?
Edit: what happens is that after i run my flash game, FlashDevelop will try to connect to the Flash debugger, but apparently fail and give me the above error. I have both the debug standalone player and the ActiveX debug control for Firefox.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要使用 haxe/Flash/FlashDevelop 激活交互式调试,您必须添加 fdb 开关和网络沙箱。为此,请打开项目 ->属性->编译器选项->指令并添加以下两行:
这应该就是您所需要的。之后,您应该能够设置断点、检查对象字段和局部变量并分析您的代码。
To activate interactive debugging with haxe/Flash/FlashDevelop you have to add the fdb switch and network-sandbox. To do that open Project -> Properties -> Compiler Options -> Directives and add the following two lines:
That should be all you need. After that you should be able to set breakpoints, inspect object fields and local variables and profile your code.
我没有 haxe,但我遇到了同样的错误,为了摆脱它,我遵循了 这里的建议:
I didn't have haxe, but I had the same error and to get rid of it I followed the advice from here: