how would i make it so i have a button scroll my target mc continuously? so when u press the button and hold the mouse down, the mc keeps moving up or down continuously. any help would be great. thanks!
well you could make an movieclip, and call it “control” for example and have 3 frames in it. give the last frame this action
with(_parent){
// all your scrolling actions go here
}
gotoAndPlay(2);
and have this action on the button
on (press) {
control.gotoAndPlay(3)
}
on (release) {
control.gotoAndStop(1)
}
i would like to arrange a little FLA or something but i just dont have the time to know(-:
wow thanks, i am kinda getting what ur saying. im stuck though. does anybody know a good tutorial or fla for this?
Here’s a lil simple fla I made awhile back that scrolls a movieclip. Right now its scrolling some static text, but you can place whatever you want in the movie clip. Hope it helps. =)