Login

can anyone help me with my code
flash gives me an error saying -
The private attribute may be used only on class property definitions.

here is my code

myButton.addEventListener(MouseEvent.CLICK, "onMyButtonRelease");

private function onMyButtonRelease(event:Event):void{
//Run logic code here
if((userid == "me" && password == "mine") || (userid == "guest" && password == "guest") )
{
  mess = "Welcome  "+username;
  gotoAndPlay("mainYard")();
}else{
  mess = "Invalid username and password!";
}
}