У меня есть что-то вроде этого:
class ParentClass
{
public static const ON_SOME_EVT:String = "onSomeEvent" ;
....
}
class ChildClass extends ParentClass
{
....
}
main()
{
trace( ChildClass.ON_SOME_EVT ) ; //<< compiler error on doing this
//1119: Access of possibly undefined property ABC through a reference with static type Class.
}
Тогда как мне этого добиться. Я хочу получить доступ к константе через дочерний класс, но не родительский класс.
Спасибо.