为啥在我尝试构建此 mxml 文件时会发生此非描述性错误?

Posted

技术标签:

【中文标题】为啥在我尝试构建此 mxml 文件时会发生此非描述性错误?【英文标题】:Why does this non-descriptive error happen when I try to build this mxml file?为什么在我尝试构建此 mxml 文件时会发生此非描述性错误? 【发布时间】:2014-09-18 22:14:02 【问题描述】:

尝试构建简单的 MXML 文件时出现以下错误:

Build halted with errors (fcsh).

这是 MXML:

<?xml version="1.0" encoding="utf-8"?>
<s:Application 
    xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx">

    <s:Label id="titleLabel" x="50" y="50" fontFamily="Arial" fontWeight="bold" text="My first Flex 4 application"/>

    <fx:Script>
        <![CDATA[

            public function example() 
                speakTextInput.text = "This is an example of horrible code!";
            

        ]]>
    </fx:Script>

    <s:HGroup x="50" y="70" >
        <s:Button id="speakButton" label="Say Something!" />
        <s:TextInput id="speakTextInput"  text="" />
    </s:HGroup>

</s:Application>

【问题讨论】:

【参考方案1】:

也许你的编译器不喜欢没有返回值类型声明的函数。尝试更改为:

public function example():void

【讨论】:

就是这样!谢谢你:)

以上是关于为啥在我尝试构建此 mxml 文件时会发生此非描述性错误?的主要内容,如果未能解决你的问题,请参考以下文章

为啥在我创建新项目时会在 android studio 中出现此错误?

为啥在使用 OpenGL 核心配置文件时会崩溃?

为啥 UnrealHeaderTool 在构建 RPC 时会失败

为啥在此代码中调用虚拟方法时会出现分段错误?

为啥当我尝试将 rails 更新到 4.0.0 时会发生这种情况?

为啥在另一个线程上发生 dealloc 时尝试创建对 self 的弱引用时会崩溃?