是的,很奇怪......所以在讨论了上面一点之后,我整理了一个示例项目,它可以很好地针对我正在使用的 4.6.0 SDK 编译,我可以在我的 framework.swc 中看到 LineFormattedTarget 类,当我在左侧导航器中的库:
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
creationComplete="windowedapplication1_creationCompleteHandler(event)">
<fx:Script>
<![CDATA[
import mx.core.mx_internal;
import mx.events.FlexEvent;
import mx.logging.targets.LineFormattedTarget;
protected function windowedapplication1_creationCompleteHandler(event:FlexEvent):void
{
var test:LineFormattedTarget = new LineFormattedTarget();
}
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
</s:WindowedApplication>
我会检查以确保它在 4.6 引用的库中显示 framework.swc,如果 swc 不存在,请尝试删除框架并将其重新添加到库路径中,如果失败并显示相同的结果,我会查看拉下SDK新鲜。