import a class: how many ways are there? swc, import, extend, base class
How many ways are there to import a class and am I getting confused
1. public class Screen extends MovieClip
This inherits all properties and methods of the MovieClip class so WHY do we still use: import flash.display.MovieClip;
Does that import something else or have a just done the job twice
2. import flash.display.MovieClip - so no need to extend (repeating myself again - see 1)
3. swc: connect to an swc
4. embed a swf with a meta tag
5. in properties panel menu - add a Class as the base class
omg - a little confusing
