____  _ ____ ____ ______ ____  
|___ \| |___ \___ \____  |___ \ 
  __) | | __) |__) |  / /  __) |
 |__ <| ||__ <|__ <  / /  |__ < 
 ___) | |___) |__) |/ /   ___) |
|____/|_|____/____//_/   |____/ 
      

i pwn all thats all u need to know.

Wednesday, June 27, 2007

//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: , , , , , , , ,