Sniper Scope, Codes for stuff :)
if you want to make some thing follow your mouse like my sniper scope on adobe flash cs3 heres the code but convert it into a simble then press F9 then paste this.
CODE:
//For crosshair
onClipEvent(enterFrame) {
this._x =
root._xmouse;
this.y =
root.ymouse;
}
and this code is for making something walk remember to convert to symble.
onClipEvent(load)
{
speed=80;
}
onClipEvent(enterFrame)
{if(Key.isDown(Key.LEFT)){
_x-=speed;
}
if(Key.isDown(Key.RIGHT)){
_x+=speed;
}}