You still have the ENTER_FRAME event triggering moveObjects on every frame.
Since it's calling items that are no longer on the stage in frame 3 (I'm assuming) you're getting the null object error.

You need to remove the ENTER_FRAME event before you kick over to the new frame:
PHP Code:
removeEventListener(Event.ENTER_FRAMEmoveObjects);