Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是什么导致发布错误:“fl.getDocumentDOM() has no properties”?
该错误仅在使用项目窗格中的“测试项目”按钮时发生。它不会导致发布失败,只是很烦人。
当您没有打开任何 Flash 文档时会发生这种情况。您不能在不引发错误的情况下在 flash cs3 中发布“无头”(尽管是良性的)。
我有一个友好的解决方案:
var myDocument = fl.getDocumentDom() || false; if(!myDocument){ alert("Please open at least one document"); }