horrible tite i know.
so i think flash auto format recently removed my parenthesis for some reason. I am surprised to see this still worked.
addChild(new myClass);
I always write (),
addChild(new myClass());
i thought i needed to because i am calling the constructor function.
so i thought somehow it might not call the constructor, but that makes no sense. So there is no difference, but why does it work without the (), is the compiler just ignoring it and adding them after anyway?
i suppose if your not passing anything, you can just leave out the () ?