//image scroller [v1.0]
Haven’t posted anything in a while been so busy with life ATM which is finally looking good right now for once …
Was making a top friends image scroller for Myspace really hate having to number my friends so I decided to make a scroller instead might even make it load in the images/friends randomly.
//image scroller [v1.0]
Make a MC (MovieClip) on your flash stage, then select it and open up the actions panel (F9) add this bit of AS (ActionScript).
onClipEvent(enterFrame){
_x = _x+2; //moves the MC two pixels
if (_x>=420){ //if MC reaches 420px goes back to original position
_x = -360;
}
}
Labels: action script, adobe, brainz, flash, image scroller, macromedia, myspace, scrolling, zombie