Hello,
Lets say I have a VO class Bar.as to be extended from Foo.as VO class. I
get this error at variable "title" (see code below):
Overriding a function that is not marked for override.
How do I resolve this? I saw Adobe's link saying I should remove [Bindable]
from base class, I did but that did not resolve the problem. Any suggestion
is appreciated.
thank you.
**********************************
// Foo.as
package com.xyz
{
[Bindable]
public class Foo
{
public var title:String;
}
}
// Bar.as
package com.xyz
{
[Bindable]
public class Bar extends Foo
{
public var description:String;
public var title:String;
}
}