flash CRACKS help me!
flash CRACKS help me!
Out of context: Reply #1
- Started
- Last post
- 2 Responses
- unfittoprint0
in those type of basic functions the speed is given by a number.
ie:
function slide (){
mc._x += 2;
}what you should do is make the speed a function parameter:
function slide (speed){
mc._x += speed;
}
//usage
this.onEnterFrame=function(){
slide(2);
}