Hi! Suppose I have a website that loads pages (swf). Every page has it’s own document class. Every page’s fla has an item in library that wrap the page contents and that’s exported as Content. In every document class, I addChild(new Content()), and it seems there are no problems with this.
So the question: why? In fact, I’m exporting several movieclips (each one on his different fla library) all with the same class name (Content). So for me, it’s like having several class definitions with the same name, why can I do it?
Is there any problem with doing it? Shouldn’t I use a different export class name (ex. AboutContent, ContactsContent, ProductsContent and so on…)?