嗨,我对 actionscript 3 很陌生,我想澄清一下类的使用。我正在尝试使用来自http://siirjak.com的 AS3Commons UI 项目。但我不确定如何使用他们的一些课程。我在其中一个关键帧中对其进行格式化的方式是:
import com.AlertBox; // The location of the alertbox class
import com.AlertTutorialStep1; // The location of the example AlertTutorialStep1 class
var alertbox:AlertTutorialStep1 = new com.AlertTutorialStep1; // Creating an instance of the example class in the AlertTutorialStep1 doc
alertbox.AlertTutorialStep1(); // Trying to access the AlertTutorialStep1() function which is in the AlertTutorialStep1 class
但是我无法访问功能 AlertTutorialStep1() 并且不确定为什么会出现错误,有人可以为我提供一些见解吗?http://sibirjak.com/osflash/blog/tutorial-creating-an-alert-box-with-the-as3commons-popupmanager/