|
|
|
Building Easy Text or Images Scrolling with Flash MX 2004
Author: Oleg Lazarenko | Email Website : www.metamorphozis.com
Advertisement
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);
15. Select the fourth frame of the "Down" layer and create a blank keyframe. Add the following action script code:
stop();

Download Source File
We hope the information helped you. If you have any questions
or comments, please don't hesitate to post them on the
Forums section
Submit your Tutorial at Click Here
|
|
|