1120: access of undefined property error

Hi,

I am a flash newbie, and am getting some errors with actionscript.

I have some variables defined in my class but for some reason I am unable to access them inside my class functions.

public class sender{

public var errorcode:int;

   public static function sendObject(){ 
       ..............
       errorcode = -1; // set error 
       ..............
       }
............

}

This throws the error 1120: Access of undefined property errorcode.

Could someone help me figure out what might be wrong ?

Thx !!!