trace() 未写入 flashlog.txt
我在 Mac 终端上使用 mxmlc 编译 AS 3.0 项目,然后通过在 Flash Debugger 10 中打开 Main.swf 来运行它。 现在,错误可以很好地写入 flashlog.txt,但我的跟踪语句不会:( 我在 /Library/Application Support/Macromedia 中有 mm.cfg,它包含以下几行:
ErrorReportingEnable=1
TraceOutputFileEnable=1
我缺少什么?为什么trace()没有写入flashlog.txt?
感谢您的帮助!
I'm using mxmlc on a Mac terminal to compile an AS 3.0 project and then I run it by opening the Main.swf in Flash Debugger 10.
Now, errors get written to the flashlog.txt just fine but my trace statements don't : (
I have mm.cfg in /Library/Application Support/Macromedia and it contains the following lines:
ErrorReportingEnable=1
TraceOutputFileEnable=1
What am I missing? Why is trace() not written to flashlog.txt?
Thanks for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编译器选项“-debug=true”完成这项工作。像这样:
mxmlc -use-network=false -default-background-color=#FFF00F -default-size=760,610 -debug=true Main.as
The compiler option "-debug=true" does the job. Like this:
mxmlc -use-network=false -default-background-color=#FFF00F -default-size=760,610 -debug=true Main.as