3

独自のクラスを 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>
-->
4

1 に答える 1

1

あなたが必要

import com.yournamespace.NetConn;

それ以外の

include "NetConn.as"
于 2012-11-17T19:22:44.670 に答える