PDA

View Full Version : Scroll buttons for a movie clip


unwrittendevin
06-01-2003, 05:25 PM
This might be the most easy thing in thw world, but how do I script up and down scroll buttons for a movie clip? I've been looking for tutes, but everything is written for a dynamic text box, and alot of the coding I find is based to move for the lines used in the dynamic text box? any help would be greatly appreciated

Devin

pellepiano
06-01-2003, 05:42 PM
The easiest way...

On buttons......

on(release){
//Down
myMC._y+=5;
}

on(release){
//Up
myMC._y-=5;
}

CyanBlue
06-01-2003, 09:51 PM
Here is a simple sample file I have...