I think I did this before but can't find the code.
Flash as many other graphical frameworks use the top-left corner as the coordinate origin (0,0) because it's how the underlying memory model is by convention.
But it would be really simpler for my calculations if the origin was in the center of the stage, because all the game revolves around the center and uses a lot of trigonometry, angles, etc.
Is there some built-in method like Stage::setOrigin( uint, uint );
or something like that?