Using classes and creating new variables

I went to this site, and I got this code:

import com.ahfx.Product;
var myProduct = new Product();
myProduct.setQuantity(3);
myProduct.setPrice(2.99);
myProduct.setDesc("Teddy Bear");

trace(myProduct.getDesc());
trace(myProduct.getPrice());
trace(myProduct.getQuantity());
trace(myProduct.getTotal());

i have this code

import sea.sea1.Me;

var myMe = new Me();
myMe.setQuantity(2);
myMe.setPrice(249.99);
myMe.setDescription("iPhone");

trace(myMe.getDescription);
trace(myMe.getQuantity);
trace(myMe.getPrice);

It says that it cannot be loaded… i have also put it in (en/First Run/Classes/…)
and i dont see the problem… :frowning:
I am a beginner and trying to learn how to make classes… and it doesnt work… but this is the first website that showed me probably.