动作脚本3课程& mxml文件

时间:2012-03-21 17:32:43

标签: actionscript-3 flash-builder mxml

我有一个带有getVideo函数的AS3类。我想在mxml中使用这个函数。所以我在那里创建对象并尝试调用该函数,但是我收到了这个错误:

  

调用可能未定义的方法。

如何在mxml中使用我的函数?

我的AS3:

public class InitVideoSound 
    {
        var video:Video = new Video();

        public function InitVideoSound()
        {...}

        public function getVideo():Video {
            return video;
        }

我的mxml:

<fx:Script>
        <![CDATA[           

            var ivs1 : InitVideoSound;

            public function init(){
            ivs1.getVideo();

            start.enabled = false;
            }
        ]]>
    </fx:Script>

1 个答案:

答案 0 :(得分:0)

试试这个

<fx:Script>
        <![CDATA[           

            var ivs1 : InitVideoSound = new InitVideoSound() ;

            public function init(){
            ivs1.getVideo();

            start.enabled = false;
            }
        ]]>
    </fx:Script>

确保完成必要的类导入。