こんにちは、actionscript 3 を初めて使用するので、クラスの使用について明確にしたいと思います。http://sibirjak.comの AS3Commons UI プロジェクトを使用しようとしています。しかし、いくつかのクラスの使用方法がわかりません。キーフレームの1つでフォーマットする方法は次のとおりです。
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/