7. Select the "Mask and Content" layer and with the "Rectangle Tool" draw a white rectangle within the black shape. Convert shape into the movie.

8. Type in the movie instance name to "text"

9. Above the "Buttons" layer create a new blank layer, call it "Control".

10. Press "Ctrl+F8" to create a new symbol. Call it "control". You will see the blank screen appear but do not worry. We will need this movie to hold an action script coding which will be used to calculate up and down the movement of our text layer.

11. Now create 2 blank layers in the "control" movie. Call them "Up" and "Down".

12. 12. Create 3 blank keyframes in the "Up" layer. Add the following action script code to the first frame of the "Up" layer:
stop();

13. Select the second frame and add action script code:
y = getProperty("_root.text.content", _y);
if (y>100) {
gotoAndStop(1);
} else {
setProperty("_root.text.content", _y, y+6);
}

14. Select the third frame and add the action script code:
gotoAndPlay(2);