flash builder无法打开文件

时间:2014-02-26 16:51:26

标签: flex actionscript air flash-builder mxml

我是adobe flash builder的新手,我正在制作一个移动灵活项目。 到目前为止,在我的项目中,我有一个简单的两页布局,按钮可以前进和后退。这是一个简单的问候世界。

我写了一个动作脚本,它使用手机上的相机,并希望将其附加到按钮调用,以便按下时相机打开。我已经浏览了整个互联网,但无法在Android上找到解决方案,并且非常感谢任何教程的链接。

我的按钮调用如下:

<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009" 
        xmlns:s="library://ns.adobe.com/flex/spark" title="Camera">
    <!-- The file I want to include -->
    <fx:Script source="includes/Camera.as"/>
    <!-- Declarations -->
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <!-- alignment for buttons -->
    <s:VGroup width="100%" height="100%" verticalAlign="middle" horizontalAlign="center">
        <!-- Button that will take the user to camera -->
        <s:Button label="Capture" click="button1_clickHandler(event)"/>
        <!-- Button to navigate back to the main page -->
        <s:Button label="Back" click="navigator.popView()" styleName="back" />
    </s:VGroup>
</s:View>  

这是我的错误:

  

1068:无法打开包含的文件:C:\ Users \ denis \ Adob​​e Flash Builder   4.6 \ APP3 \ SRC \视图\包括\ Camera.as。

包含是我创建的文件夹。 正如我所说,我找不到任何教程,我是新手,所以对noob问题道歉。

1 个答案:

答案 0 :(得分:2)

您在哪里创建了包含文件夹?我的猜测是你在app3目录中创建了它,而不是src\views的子目录。