我有几个适用于4.6的Adobe Flash Builder项目。
在主模板mxml中,我有这样的东西:
<?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"
xmlns:dragdrop="org.robotlegs.demos.draganddrop.*"
xmlns:view="org.robotlegs.demos.draganddrop.view.*"
xmlns:buttons="org.robotlegs.demos.draganddrop.view.controls.buttons.*"
creationComplete="this.maximize()"
showStatusBar="false"
maxWidth="1601"
maxHeight="1611">
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
s|Application {
background-alpha:"0.7";
padding: 0px;
}
</fx:Style>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
<dragdrop:DragAndDropContext contextView="{this}"/>
</fx:Declarations>
<s:Image id="background" width="100%" height="100%" smooth="true" smoothingQuality="high"
scaleMode="zoom" source="@Embed('theme/assets/MaxBackground.png')"/>
<s:BorderContainer id="layoutCanvas" width="100%" height="100%" visible="true" backgroundImage="background">
<buttons:ApplicationClose right="5" top="2" id="applicationClose" />
<buttons:ApplicationMaximize right="25" top="2" id="applicationMaximize" />
<buttons:ApplicationMinimize right="45" top="2" id="applicationMinimize" />
<buttons:Save left="25" top="2" id="saveThisStory" />
<buttons:SaveAs left="55" top="2" id="saveThisStoryAs" />
<buttons:AddPage left="85" top="2" id="addPageToStory" />
</s:BorderContainer>
</s:WindowedApplication>
以前我可以毫无问题地打开它。现在adobe flash builder只是冻结并在我的任务管理器或活动监视器中显示没有响应,如果你使用的是mac os x。
如何解决此问题?
答案 0 :(得分:0)
第一步是卸载Adobe Flash Builder 4.6
原因是您打开了此选项卡,每次尝试打开FlashBuilder 4.6时,它都会尝试打开此文件进行编辑,从而导致无响应再次发生。
第二步是重新安装Adobe Flash Builder 4.6
原因是因为step1,所以你需要重新安装。
第三步是尝试再次打开同一个项目。现在您已经重新安装,违规项目不再位于资源管理器窗口中。
如果这可以解决问题,您可以在这里停止。如果没有,请继续执行下一步。
第四步是使用另一个编辑器,即TextEdit或Notepad打开mxml。
查找违规行
<s:Image id="background" width="100%" height="100%" smooth="true" smoothingQuality="high"
scaleMode="zoom" source="@Embed('theme/assets/MaxBackground.png')"/>
删除smoothingQuality和平滑属性
<s:Image id="background" width="100%" height="100%"
scaleMode="zoom" source="@Embed('theme/assets/MaxBackground.png')"/>
保存文件
第五步,现在尝试使用Flash Builder 4.6打开项目
平滑的原因质量和平稳影响无响应的原因尚不清楚。
答案 1 :(得分:0)
我刚试过Kimsia的答案,结果就算了!!!
这很有趣,但这就是原因。我停用了同样的两个违规属性:
smooth="true"
和smoothingQuality="high"
和FB现在闪电般快。
希望有所帮助