Take a look at the FP class in flashpunk. Specifically FP.screen.scale which lets you resize your entire game by a specified factor. For example, the code below will double the size of your game screen:
FP.screen.scale = 2;
If you need to worry about the aspect ratio, you can do X and Y separately with:
FP.screen.scaleY = 2;
FP.screen.scaleX = 3;
After you go to fullscreen, you can use the code below to get the correct aspect ratio for enlarging your screen:
var scaleFactorX = stage.stageWidth / FP.screen.width;
var scaleFactorY = stage.stageHeight / FP.screen.height;
FP.screen.scaleX = scaleFactorX;
FP.screen.scaleY = scaleFactorY;