Mega Code Archive
All arguments that have a default value must all be placed last in the order of arguments
package{
import flash.display.Sprite;
public class Main extends Sprite{
public function Main(){
}
function storeAddress(name:String, email:String, zip:String = null){
}
}