Hi.

Are you updating super.data in your set data function?

If you aren't, give this a try:

    public override function set data(value:Object):void
    {
        super.data = value;
        if(value == null) return;
        
        .....
    }

Reply via email to