我需要将自己的类导入到mxml文件中,但始终会出现无法嵌套类的错误。我不知道如何使用我的课程(例如:NetConn.as)。你能帮助我吗?

<!--language:actionscript3>
<?xml version="1.0" encoding="utf-8"?>
<s:ViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                            xmlns:s="library://ns.adobe.com/flex/spark" firstView="views.eazyRadioHomeView">
    <fx:Style source="eazyRadio.css"/>
    <fx:Script>
        <![CDATA[

            include "NetConn.as";

            import myNetConn;
            var easy=new NetConnectionEx();
        ]]>
    </fx:Script>

    <fx:Declarations>
        <!-- Platzieren Sie nichtvisuelle Elemente (z. B. Dienste, Wertobjekte) hier -->

    </fx:Declarations>
</s:ViewNavigatorApplication>
-->

最佳答案

你需要

import com.yournamespace.NetConn;

代替
include "NetConn.as"

关于class - 如何将自定义类导入Flex中的mxml文件? ( Action 3),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13432785/

10-11 07:41