导入的flash builder项目无法打开swc
我想将旧的 FB 项目导入到我的新电脑上的 flash 构建器中,但我只有文件结构。所以我使用了“导入>现有项目到工作区”。 这些文件似乎仍然完好无损,但该项目现在给我一个关于 bin 文件夹中的 swc 的错误:“无法打开 \'something'\bin\'something'.swc
我不知道如何解决这个问题,或者这到底意味着什么。有人可以帮我一下吗?
I wanted to import an older FB project into the flash builder on my new pc, but I only have the filestructure. So I used 'import>existing projects into workspace'.
The files seem to be intact still, but the project now gives me an error regarding an swc in the bin folder: 'unable to open \'something'\bin\'something'.swc
I have no idea how to solve this, or what this even means. Can somebody lend me a hand here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这指的是您忘记包含在工作区(或打开)中的旧库项目。在 Eclipse 中,当您将路径指定为
/your-library-project/some/path
时,它会自动解析您尝试引用的内容的真实路径。在这种特殊情况下,您指的是由该库项目创建的 SWC 并直接链接到它。要解决此问题,您需要找到库项目并将其导入到您的工作区中。
This would be referring to an old library project that you forgot to include in your workspace (or open). In Eclipse, when you specify a path as
/your-library-project/some/path
, it automatically resolves the real path to whatever you're trying to reference.In this particular case, you were referring to the swc created by this library project and linking to it directly. To fix this issue, you'll need to find the library project and import it into your workspace.