我试图在我的 init() 方法中使用一个按钮。
<?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="Test"
creationComplete="init()">
现在,当我尝试用我的按钮做某事时,我得到了提到的错误。我假设它可能还没有加载?
function init():void{
myButton.thisorthat == makes the error.
}
*编辑** 该按钮是在 MXML btw 中创建的,这并不重要,但这适用于 flex 移动应用程序。