I have not used Flash in some time, let alone gotten round to using Classes in flash. I need to do some work on a client's site and I am trying to follow the previous developer's code which he/she did using classes in AS2.
Am I correct in understanding that these lines of code...
import mx.transitions.*;
import com.app.*;
import com.movie.*;
class com.movie.Main extends MovieClip {
private var _contentData:Object;
private var _contentManager:ContentManager;
public var _language:String;
- imports the other classes
- extends the abilities of the movie clip called Main and then fires off everything below it.
What I am trying to grasp is what fires off the initial code and it looks like this might be it?
EDIT: It seems that the initial Main.as is fired off just after the preloader on the timeline:
import com.movie.Main;
