Это сводит меня с ума. Я просмотрел темы на эту тему и, кажется, НИЧЕГО не работает.
У меня есть FLA-файл со следующим кодом в кадре 1:
import TestClass;
var tstClass:TestClass = new TestClass;
tstClass.testMethod();
В прилагаемом файле AS у меня есть следующее:
package
{
public class TestClass
{
public function testMethod():void
{
trace("It Works!");
}
}
}
Я перепробовал все, что мог придумать, чтобы заставить это работать, но я продолжаю получать ошибку после ошибки во Flash. Я получаю следующие ошибки:
Scene 1, Layer 'Layer 1', Frame 5, Line 3 1180: Call to a possibly undefined method TestClass.
Scene 1, Layer 'Layer 1', Frame 5, Line 3 1046: Type was not found or was not a compile-time constant: TestClass.
Scene 1, Layer 'Layer 1', Frame 5, Line 1 1172: Definition TestClass could not be found.
Scene 1, Layer 'Layer 1', Frame 5, Line 1 1172: Definition TestClass could not be found.