Purge and Edit

OK, first thing we need to do is get rid of the attachMovie actions in the onEnterFrame function. The MovieClips are placed on the stage only one time in the init function, and don't ever need to be attached again:

Now edit the script that controls the x position of newStar. Instead repeated random placement, we want the x position to increment a little bit each time, so the stars will scroll across the screen (like we did with the bee).

Change the Value to newStar._x+starSpeed like you see below:

Well, if we are going to reference a variable called starSpeed, we better define it! Return to the top of the script, where we have already declared a few variables, and set starSpeed = 10 using var: