我有几个 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>
以前我可以毫无问题地打开它。现在,如果您使用的是 mac os x,adobe flash builder 会冻结并在我的任务管理器或活动监视器中显示没有响应。
我该如何解决这个问题?