Class syntax in Actionscript3.0

The package wrapper
With AS3 some changes have been made to the way classes are to be defined. One of the most obvious ones is that class files now have a package wrapper in them.
package com.rubenswieringa {
public class MyClass {
public function MyClass ():void {
}
}
}
Leaving [...]