Flex 应用程序 UI 不见了,取而代之的是全白背景?

Flex application UI is gone and instead there is a completely white background?

我的 Flex 应用程序似乎消失了。当我 运行 应用程序时,它显示完全白色的背景。没有错误,它以前工作。我已经 运行 清理并回过头查看我的代码。

问题是我将应用程序中的组件 ID 设置为 "contentGroup"。即使没有抛出错误,应用程序和应用程序皮肤也会使用此 ID。

<components:ContentGroup id="contentGroup" width="100%" height="100%" />

要修复它,请使用另一个 ID:

<components:ContentGroup id="mainContentGroup" width="100%" height="100%" />