a fairly simple problem I can’t solve. I have the following directory structure:
flash folder > Classes > Special
My fla is located in the “flash folder”. I am attempting to import a as file I have located in the folder “special”. It looks like :
package Classes.Special {
public var numbers:int = 10;
}
in the first frame of my timeline I have this code :
import Classes.Special.*;
trace(numbers);
but I’m getting the error : 1120: Access of undefined property numbers.
can someone help me out?