Access Inherited Property from superclass

Hi everybody,
Sorry to bother you with this thread, because I’m sure it’s pretty obvious, but I can’t see through it.
With this following code, I can’t access the visible property of the Sprite class…


public class ExtendedSprite extends Sprite {
  public function ExtendedSprite () {
    trace(this.visble);
  }
}


THanks.